]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/frv/frv.c
tree-ssa-alias.c (dump_alias_info): Walk over local decls instead of referenced vars.
[thirdparty/gcc.git] / gcc / config / frv / frv.c
CommitLineData
66647d44 1/* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007,
96e45421 2 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
36a05131
BS
3 Contributed by Red Hat, Inc.
4
7ec022b2 5This file is part of GCC.
36a05131 6
7ec022b2 7GCC is free software; you can redistribute it and/or modify
36a05131 8it under the terms of the GNU General Public License as published by
2f83c7d6 9the Free Software Foundation; either version 3, or (at your option)
36a05131
BS
10any later version.
11
7ec022b2 12GCC is distributed in the hope that it will be useful,
36a05131
BS
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
2f83c7d6
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
36a05131
BS
20
21#include "config.h"
22#include "system.h"
4977bab6
ZW
23#include "coretypes.h"
24#include "tm.h"
36a05131
BS
25#include "rtl.h"
26#include "tree.h"
27#include "regs.h"
28#include "hard-reg-set.h"
36a05131
BS
29#include "insn-config.h"
30#include "conditions.h"
31#include "insn-flags.h"
32#include "output.h"
33#include "insn-attr.h"
34#include "flags.h"
35#include "recog.h"
36#include "reload.h"
37#include "expr.h"
38#include "obstack.h"
39#include "except.h"
40#include "function.h"
41#include "optabs.h"
718f9c0f 42#include "diagnostic-core.h"
36a05131
BS
43#include "basic-block.h"
44#include "tm_p.h"
45#include "ggc.h"
36a05131
BS
46#include "target.h"
47#include "target-def.h"
8cd5a4e0 48#include "targhooks.h"
6e34d3a3 49#include "langhooks.h"
6fb5fa3c 50#include "df.h"
7ee2468b 51#include "dumpfile.h"
36a05131
BS
52
53#ifndef FRV_INLINE
54#define FRV_INLINE inline
55#endif
56
c557edf4
RS
57/* The maximum number of distinct NOP patterns. There are three:
58 nop, fnop and mnop. */
59#define NUM_NOP_PATTERNS 3
60
61/* Classification of instructions and units: integer, floating-point/media,
62 branch and control. */
63enum frv_insn_group { GROUP_I, GROUP_FM, GROUP_B, GROUP_C, NUM_GROUPS };
64
65/* The DFA names of the units, in packet order. */
66static const char *const frv_unit_names[] =
67{
68 "c",
69 "i0", "f0",
70 "i1", "f1",
71 "i2", "f2",
72 "i3", "f3",
73 "b0", "b1"
74};
75
76/* The classification of each unit in frv_unit_names[]. */
77static const enum frv_insn_group frv_unit_groups[ARRAY_SIZE (frv_unit_names)] =
78{
79 GROUP_C,
80 GROUP_I, GROUP_FM,
81 GROUP_I, GROUP_FM,
82 GROUP_I, GROUP_FM,
83 GROUP_I, GROUP_FM,
84 GROUP_B, GROUP_B
85};
86
87/* Return the DFA unit code associated with the Nth unit of integer
88 or floating-point group GROUP, */
89#define NTH_UNIT(GROUP, N) frv_unit_codes[(GROUP) + (N) * 2 + 1]
90
91/* Return the number of integer or floating-point unit UNIT
92 (1 for I1, 2 for F2, etc.). */
93#define UNIT_NUMBER(UNIT) (((UNIT) - 1) / 2)
94
95/* The DFA unit number for each unit in frv_unit_names[]. */
96static int frv_unit_codes[ARRAY_SIZE (frv_unit_names)];
97
98/* FRV_TYPE_TO_UNIT[T] is the last unit in frv_unit_names[] that can issue
99 an instruction of type T. The value is ARRAY_SIZE (frv_unit_names) if
100 no instruction of type T has been seen. */
101static unsigned int frv_type_to_unit[TYPE_UNKNOWN + 1];
102
103/* An array of dummy nop INSNs, one for each type of nop that the
104 target supports. */
105static GTY(()) rtx frv_nops[NUM_NOP_PATTERNS];
106
107/* The number of nop instructions in frv_nops[]. */
108static unsigned int frv_num_nops;
109
5c5e8419
JR
110 /* The type of access. FRV_IO_UNKNOWN means the access can be either
111 a read or a write. */
112enum frv_io_type { FRV_IO_UNKNOWN, FRV_IO_READ, FRV_IO_WRITE };
113
38c28a25
AH
114/* Information about one __builtin_read or __builtin_write access, or
115 the combination of several such accesses. The most general value
116 is all-zeros (an unknown access to an unknown address). */
117struct frv_io {
5c5e8419 118 enum frv_io_type type;
38c28a25
AH
119
120 /* The constant address being accessed, or zero if not known. */
121 HOST_WIDE_INT const_address;
122
123 /* The run-time address, as used in operand 0 of the membar pattern. */
124 rtx var_address;
125};
126
c557edf4
RS
127/* Return true if instruction INSN should be packed with the following
128 instruction. */
129#define PACKING_FLAG_P(INSN) (GET_MODE (INSN) == TImode)
130
131/* Set the value of PACKING_FLAG_P(INSN). */
132#define SET_PACKING_FLAG(INSN) PUT_MODE (INSN, TImode)
133#define CLEAR_PACKING_FLAG(INSN) PUT_MODE (INSN, VOIDmode)
134
135/* Loop with REG set to each hard register in rtx X. */
136#define FOR_EACH_REGNO(REG, X) \
137 for (REG = REGNO (X); \
138 REG < REGNO (X) + HARD_REGNO_NREGS (REGNO (X), GET_MODE (X)); \
139 REG++)
140
38c28a25 141/* This structure contains machine specific function data. */
d1b38208 142struct GTY(()) machine_function
38c28a25
AH
143{
144 /* True if we have created an rtx that relies on the stack frame. */
145 int frame_needed;
146
147 /* True if this function contains at least one __builtin_{read,write}*. */
148 bool has_membar_p;
149};
150
36a05131
BS
151/* Temporary register allocation support structure. */
152typedef struct frv_tmp_reg_struct
153 {
154 HARD_REG_SET regs; /* possible registers to allocate */
155 int next_reg[N_REG_CLASSES]; /* next register to allocate per class */
156 }
157frv_tmp_reg_t;
158
c557edf4 159/* Register state information for VLIW re-packing phase. */
36a05131 160#define REGSTATE_CC_MASK 0x07 /* Mask to isolate CCn for cond exec */
c557edf4
RS
161#define REGSTATE_MODIFIED 0x08 /* reg modified in current VLIW insn */
162#define REGSTATE_IF_TRUE 0x10 /* reg modified in cond exec true */
163#define REGSTATE_IF_FALSE 0x20 /* reg modified in cond exec false */
164
36a05131
BS
165#define REGSTATE_IF_EITHER (REGSTATE_IF_TRUE | REGSTATE_IF_FALSE)
166
c557edf4 167typedef unsigned char regstate_t;
36a05131
BS
168
169/* Used in frv_frame_accessor_t to indicate the direction of a register-to-
170 memory move. */
171enum frv_stack_op
172{
173 FRV_LOAD,
174 FRV_STORE
175};
176
177/* Information required by frv_frame_access. */
178typedef struct
179{
180 /* This field is FRV_LOAD if registers are to be loaded from the stack and
181 FRV_STORE if they should be stored onto the stack. FRV_STORE implies
182 the move is being done by the prologue code while FRV_LOAD implies it
183 is being done by the epilogue. */
184 enum frv_stack_op op;
185
186 /* The base register to use when accessing the stack. This may be the
187 frame pointer, stack pointer, or a temporary. The choice of register
188 depends on which part of the frame is being accessed and how big the
189 frame is. */
190 rtx base;
191
192 /* The offset of BASE from the bottom of the current frame, in bytes. */
193 int base_offset;
194} frv_frame_accessor_t;
195
87b483a1 196/* Conditional execution support gathered together in one structure. */
36a05131
BS
197typedef struct
198 {
199 /* Linked list of insns to add if the conditional execution conversion was
200 successful. Each link points to an EXPR_LIST which points to the pattern
201 of the insn to add, and the insn to be inserted before. */
202 rtx added_insns_list;
203
204 /* Identify which registers are safe to allocate for if conversions to
205 conditional execution. We keep the last allocated register in the
206 register classes between COND_EXEC statements. This will mean we allocate
207 different registers for each different COND_EXEC group if we can. This
208 might allow the scheduler to intermix two different COND_EXEC sections. */
209 frv_tmp_reg_t tmp_reg;
210
211 /* For nested IFs, identify which CC registers are used outside of setting
212 via a compare isnsn, and using via a check insn. This will allow us to
213 know if we can rewrite the register to use a different register that will
214 be paired with the CR register controlling the nested IF-THEN blocks. */
215 HARD_REG_SET nested_cc_ok_rewrite;
216
217 /* Temporary registers allocated to hold constants during conditional
218 execution. */
219 rtx scratch_regs[FIRST_PSEUDO_REGISTER];
220
221 /* Current number of temp registers available. */
222 int cur_scratch_regs;
223
87b483a1 224 /* Number of nested conditional execution blocks. */
36a05131
BS
225 int num_nested_cond_exec;
226
227 /* Map of insns that set up constants in scratch registers. */
228 bitmap scratch_insns_bitmap;
229
87b483a1 230 /* Conditional execution test register (CC0..CC7). */
36a05131
BS
231 rtx cr_reg;
232
233 /* Conditional execution compare register that is paired with cr_reg, so that
234 nested compares can be done. The csubcc and caddcc instructions don't
235 have enough bits to specify both a CC register to be set and a CR register
236 to do the test on, so the same bit number is used for both. Needless to
839a4992 237 say, this is rather inconvenient for GCC. */
36a05131
BS
238 rtx nested_cc_reg;
239
240 /* Extra CR registers used for &&, ||. */
241 rtx extra_int_cr;
242 rtx extra_fp_cr;
243
244 /* Previous CR used in nested if, to make sure we are dealing with the same
87b483a1 245 nested if as the previous statement. */
36a05131
BS
246 rtx last_nested_if_cr;
247 }
248frv_ifcvt_t;
249
250static /* GTY(()) */ frv_ifcvt_t frv_ifcvt;
251
252/* Map register number to smallest register class. */
253enum reg_class regno_reg_class[FIRST_PSEUDO_REGISTER];
254
87b483a1 255/* Cached value of frv_stack_info. */
36a05131
BS
256static frv_stack_t *frv_stack_cache = (frv_stack_t *)0;
257
36a05131 258/* Forward references */
0b2c18fe 259
c5387660 260static void frv_option_override (void);
c6c3dba9 261static bool frv_legitimate_address_p (enum machine_mode, rtx, bool);
f2206911 262static int frv_default_flags_for_cpu (void);
3101faab 263static int frv_string_begins_with (const_tree, const char *);
34208acf 264static FRV_INLINE bool frv_small_data_reloc_p (rtx, int);
0fb30cb7
NF
265static void frv_print_operand (FILE *, rtx, int);
266static void frv_print_operand_address (FILE *, rtx);
267static bool frv_print_operand_punct_valid_p (unsigned char code);
36a05131 268static void frv_print_operand_memory_reference_reg
f2206911
KC
269 (FILE *, rtx);
270static void frv_print_operand_memory_reference (FILE *, rtx, int);
271static int frv_print_operand_jump_hint (rtx);
036ff63f 272static const char *comparison_string (enum rtx_code, rtx);
219d92a4
AS
273static rtx frv_function_value (const_tree, const_tree,
274 bool);
275static rtx frv_libcall_value (enum machine_mode,
276 const_rtx);
f2206911
KC
277static FRV_INLINE int frv_regno_ok_for_base_p (int, int);
278static rtx single_set_pattern (rtx);
279static int frv_function_contains_far_jump (void);
280static rtx frv_alloc_temp_reg (frv_tmp_reg_t *,
281 enum reg_class,
282 enum machine_mode,
283 int, int);
284static rtx frv_frame_offset_rtx (int);
285static rtx frv_frame_mem (enum machine_mode, rtx, int);
286static rtx frv_dwarf_store (rtx, int);
287static void frv_frame_insn (rtx, rtx);
288static void frv_frame_access (frv_frame_accessor_t*,
289 rtx, int);
290static void frv_frame_access_multi (frv_frame_accessor_t*,
291 frv_stack_t *, int);
292static void frv_frame_access_standard_regs (enum frv_stack_op,
293 frv_stack_t *);
294static struct machine_function *frv_init_machine_status (void);
f2206911
KC
295static rtx frv_int_to_acc (enum insn_code, int, rtx);
296static enum machine_mode frv_matching_accg_mode (enum machine_mode);
2396bce1
EC
297static rtx frv_read_argument (tree, unsigned int);
298static rtx frv_read_iacc_argument (enum machine_mode, tree, unsigned int);
f2206911
KC
299static int frv_check_constant_argument (enum insn_code, int, rtx);
300static rtx frv_legitimize_target (enum insn_code, rtx);
301static rtx frv_legitimize_argument (enum insn_code, int, rtx);
bef8809e 302static rtx frv_legitimize_tls_address (rtx, enum tls_model);
506d7b68 303static rtx frv_legitimize_address (rtx, rtx, enum machine_mode);
f2206911
KC
304static rtx frv_expand_set_builtin (enum insn_code, tree, rtx);
305static rtx frv_expand_unop_builtin (enum insn_code, tree, rtx);
306static rtx frv_expand_binop_builtin (enum insn_code, tree, rtx);
307static rtx frv_expand_cut_builtin (enum insn_code, tree, rtx);
308static rtx frv_expand_binopimm_builtin (enum insn_code, tree, rtx);
309static rtx frv_expand_voidbinop_builtin (enum insn_code, tree);
c557edf4
RS
310static rtx frv_expand_int_void2arg (enum insn_code, tree);
311static rtx frv_expand_prefetches (enum insn_code, tree);
f2206911
KC
312static rtx frv_expand_voidtriop_builtin (enum insn_code, tree);
313static rtx frv_expand_voidaccop_builtin (enum insn_code, tree);
314static rtx frv_expand_mclracc_builtin (tree);
315static rtx frv_expand_mrdacc_builtin (enum insn_code, tree);
316static rtx frv_expand_mwtacc_builtin (enum insn_code, tree);
317static rtx frv_expand_noargs_builtin (enum insn_code);
c557edf4 318static void frv_split_iacc_move (rtx, rtx);
f2206911
KC
319static rtx frv_emit_comparison (enum rtx_code, rtx, rtx);
320static int frv_clear_registers_used (rtx *, void *);
321static void frv_ifcvt_add_insn (rtx, rtx, int);
322static rtx frv_ifcvt_rewrite_mem (rtx, enum machine_mode, rtx);
323static rtx frv_ifcvt_load_value (rtx, rtx);
c557edf4
RS
324static int frv_acc_group_1 (rtx *, void *);
325static unsigned int frv_insn_unit (rtx);
326static bool frv_issues_to_branch_unit_p (rtx);
327static int frv_cond_flags (rtx);
328static bool frv_regstate_conflict_p (regstate_t, regstate_t);
329static int frv_registers_conflict_p_1 (rtx *, void *);
330static bool frv_registers_conflict_p (rtx);
7bc980e1 331static void frv_registers_update_1 (rtx, const_rtx, void *);
c557edf4
RS
332static void frv_registers_update (rtx);
333static void frv_start_packet (void);
334static void frv_start_packet_block (void);
335static void frv_finish_packet (void (*) (void));
336static bool frv_pack_insn_p (rtx);
337static void frv_add_insn_to_packet (rtx);
338static void frv_insert_nop_in_packet (rtx);
339static bool frv_for_each_packet (void (*) (void));
340static bool frv_sort_insn_group_1 (enum frv_insn_group,
341 unsigned int, unsigned int,
342 unsigned int, unsigned int,
343 state_t);
344static int frv_compare_insns (const void *, const void *);
345static void frv_sort_insn_group (enum frv_insn_group);
346static void frv_reorder_packet (void);
347static void frv_fill_unused_units (enum frv_insn_group);
348static void frv_align_label (void);
349static void frv_reorg_packet (void);
350static void frv_register_nop (rtx);
351static void frv_reorg (void);
f2206911
KC
352static void frv_pack_insns (void);
353static void frv_function_prologue (FILE *, HOST_WIDE_INT);
354static void frv_function_epilogue (FILE *, HOST_WIDE_INT);
355static bool frv_assemble_integer (rtx, unsigned, int);
356static void frv_init_builtins (void);
357static rtx frv_expand_builtin (tree, rtx, rtx, enum machine_mode, int);
358static void frv_init_libfuncs (void);
3101faab 359static bool frv_in_small_data_p (const_tree);
3961e8fe 360static void frv_asm_output_mi_thunk
f2206911 361 (FILE *, tree, HOST_WIDE_INT, HOST_WIDE_INT, tree);
d5cc9181 362static void frv_setup_incoming_varargs (cumulative_args_t,
d8c2bed3
KH
363 enum machine_mode,
364 tree, int *, int);
8ac411c7 365static rtx frv_expand_builtin_saveregs (void);
d7bd8aeb 366static void frv_expand_builtin_va_start (tree, rtx);
68f932c4
RS
367static bool frv_rtx_costs (rtx, int, int, int, int*,
368 bool);
33124e84
AS
369static int frv_register_move_cost (enum machine_mode,
370 reg_class_t, reg_class_t);
371static int frv_memory_move_cost (enum machine_mode,
372 reg_class_t, bool);
f2206911
KC
373static void frv_asm_out_constructor (rtx, int);
374static void frv_asm_out_destructor (rtx, int);
34208acf 375static bool frv_function_symbol_referenced_p (rtx);
1a627b35 376static bool frv_legitimate_constant_p (enum machine_mode, rtx);
fbbf66e7 377static bool frv_cannot_force_const_mem (enum machine_mode, rtx);
34208acf
AO
378static const char *unspec_got_name (int);
379static void frv_output_const_unspec (FILE *,
380 const struct frv_unspec *);
764678d1 381static bool frv_function_ok_for_sibcall (tree, tree);
8ac411c7 382static rtx frv_struct_value_rtx (tree, int);
586de218 383static bool frv_must_pass_in_stack (enum machine_mode mode, const_tree type);
d5cc9181 384static int frv_arg_partial_bytes (cumulative_args_t, enum machine_mode,
78a52f11 385 tree, bool);
d5cc9181 386static rtx frv_function_arg (cumulative_args_t, enum machine_mode,
88a1f47f 387 const_tree, bool);
d5cc9181 388static rtx frv_function_incoming_arg (cumulative_args_t, enum machine_mode,
88a1f47f 389 const_tree, bool);
d5cc9181 390static void frv_function_arg_advance (cumulative_args_t, enum machine_mode,
88a1f47f 391 const_tree, bool);
c2ed6cf8
NF
392static unsigned int frv_function_arg_boundary (enum machine_mode,
393 const_tree);
fdbe66f2
EB
394static void frv_output_dwarf_dtprel (FILE *, int, rtx)
395 ATTRIBUTE_UNUSED;
a87cf97e 396static reg_class_t frv_secondary_reload (bool, rtx, reg_class_t,
35f2d8ef
NC
397 enum machine_mode,
398 secondary_reload_info *);
b52b1749 399static bool frv_frame_pointer_required (void);
7b5cbb57 400static bool frv_can_eliminate (const int, const int);
5efd84c5 401static void frv_conditional_register_usage (void);
e9d5fdb2 402static void frv_trampoline_init (rtx, tree, rtx);
c28350ab 403static bool frv_class_likely_spilled_p (reg_class_t);
0b2c18fe 404\f
36a05131 405/* Initialize the GCC target structure. */
0fb30cb7
NF
406#undef TARGET_PRINT_OPERAND
407#define TARGET_PRINT_OPERAND frv_print_operand
408#undef TARGET_PRINT_OPERAND_ADDRESS
409#define TARGET_PRINT_OPERAND_ADDRESS frv_print_operand_address
410#undef TARGET_PRINT_OPERAND_PUNCT_VALID_P
411#define TARGET_PRINT_OPERAND_PUNCT_VALID_P frv_print_operand_punct_valid_p
36a05131
BS
412#undef TARGET_ASM_FUNCTION_PROLOGUE
413#define TARGET_ASM_FUNCTION_PROLOGUE frv_function_prologue
414#undef TARGET_ASM_FUNCTION_EPILOGUE
415#define TARGET_ASM_FUNCTION_EPILOGUE frv_function_epilogue
416#undef TARGET_ASM_INTEGER
417#define TARGET_ASM_INTEGER frv_assemble_integer
c5387660
JM
418#undef TARGET_OPTION_OVERRIDE
419#define TARGET_OPTION_OVERRIDE frv_option_override
14966b94
KG
420#undef TARGET_INIT_BUILTINS
421#define TARGET_INIT_BUILTINS frv_init_builtins
422#undef TARGET_EXPAND_BUILTIN
423#define TARGET_EXPAND_BUILTIN frv_expand_builtin
c15c90bb
ZW
424#undef TARGET_INIT_LIBFUNCS
425#define TARGET_INIT_LIBFUNCS frv_init_libfuncs
b3fbfc07
KG
426#undef TARGET_IN_SMALL_DATA_P
427#define TARGET_IN_SMALL_DATA_P frv_in_small_data_p
33124e84
AS
428#undef TARGET_REGISTER_MOVE_COST
429#define TARGET_REGISTER_MOVE_COST frv_register_move_cost
430#undef TARGET_MEMORY_MOVE_COST
431#define TARGET_MEMORY_MOVE_COST frv_memory_move_cost
3c50106f
RH
432#undef TARGET_RTX_COSTS
433#define TARGET_RTX_COSTS frv_rtx_costs
90a63880
RH
434#undef TARGET_ASM_CONSTRUCTOR
435#define TARGET_ASM_CONSTRUCTOR frv_asm_out_constructor
436#undef TARGET_ASM_DESTRUCTOR
437#define TARGET_ASM_DESTRUCTOR frv_asm_out_destructor
36a05131 438
c590b625
RH
439#undef TARGET_ASM_OUTPUT_MI_THUNK
440#define TARGET_ASM_OUTPUT_MI_THUNK frv_asm_output_mi_thunk
3961e8fe
RH
441#undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
442#define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall
c590b625 443
28a60850
RS
444#undef TARGET_SCHED_ISSUE_RATE
445#define TARGET_SCHED_ISSUE_RATE frv_issue_rate
ffb344c1 446
506d7b68
PB
447#undef TARGET_LEGITIMIZE_ADDRESS
448#define TARGET_LEGITIMIZE_ADDRESS frv_legitimize_address
449
764678d1
AO
450#undef TARGET_FUNCTION_OK_FOR_SIBCALL
451#define TARGET_FUNCTION_OK_FOR_SIBCALL frv_function_ok_for_sibcall
1a627b35
RS
452#undef TARGET_LEGITIMATE_CONSTANT_P
453#define TARGET_LEGITIMATE_CONSTANT_P frv_legitimate_constant_p
34208acf
AO
454#undef TARGET_CANNOT_FORCE_CONST_MEM
455#define TARGET_CANNOT_FORCE_CONST_MEM frv_cannot_force_const_mem
456
bef8809e
AH
457#undef TARGET_HAVE_TLS
458#define TARGET_HAVE_TLS HAVE_AS_TLS
459
8ac411c7
KH
460#undef TARGET_STRUCT_VALUE_RTX
461#define TARGET_STRUCT_VALUE_RTX frv_struct_value_rtx
fe984136
RH
462#undef TARGET_MUST_PASS_IN_STACK
463#define TARGET_MUST_PASS_IN_STACK frv_must_pass_in_stack
8cd5a4e0
RH
464#undef TARGET_PASS_BY_REFERENCE
465#define TARGET_PASS_BY_REFERENCE hook_pass_by_reference_must_pass_in_stack
78a52f11
RH
466#undef TARGET_ARG_PARTIAL_BYTES
467#define TARGET_ARG_PARTIAL_BYTES frv_arg_partial_bytes
88a1f47f
NF
468#undef TARGET_FUNCTION_ARG
469#define TARGET_FUNCTION_ARG frv_function_arg
470#undef TARGET_FUNCTION_INCOMING_ARG
471#define TARGET_FUNCTION_INCOMING_ARG frv_function_incoming_arg
472#undef TARGET_FUNCTION_ARG_ADVANCE
473#define TARGET_FUNCTION_ARG_ADVANCE frv_function_arg_advance
c2ed6cf8
NF
474#undef TARGET_FUNCTION_ARG_BOUNDARY
475#define TARGET_FUNCTION_ARG_BOUNDARY frv_function_arg_boundary
8ac411c7
KH
476
477#undef TARGET_EXPAND_BUILTIN_SAVEREGS
478#define TARGET_EXPAND_BUILTIN_SAVEREGS frv_expand_builtin_saveregs
d8c2bed3
KH
479#undef TARGET_SETUP_INCOMING_VARARGS
480#define TARGET_SETUP_INCOMING_VARARGS frv_setup_incoming_varargs
c557edf4
RS
481#undef TARGET_MACHINE_DEPENDENT_REORG
482#define TARGET_MACHINE_DEPENDENT_REORG frv_reorg
8ac411c7 483
d7bd8aeb
JJ
484#undef TARGET_EXPAND_BUILTIN_VA_START
485#define TARGET_EXPAND_BUILTIN_VA_START frv_expand_builtin_va_start
486
fdbe66f2
EB
487#if HAVE_AS_TLS
488#undef TARGET_ASM_OUTPUT_DWARF_DTPREL
489#define TARGET_ASM_OUTPUT_DWARF_DTPREL frv_output_dwarf_dtprel
490#endif
491
c28350ab
AS
492#undef TARGET_CLASS_LIKELY_SPILLED_P
493#define TARGET_CLASS_LIKELY_SPILLED_P frv_class_likely_spilled_p
494
35f2d8ef
NC
495#undef TARGET_SECONDARY_RELOAD
496#define TARGET_SECONDARY_RELOAD frv_secondary_reload
497
c6c3dba9
PB
498#undef TARGET_LEGITIMATE_ADDRESS_P
499#define TARGET_LEGITIMATE_ADDRESS_P frv_legitimate_address_p
500
b52b1749
AS
501#undef TARGET_FRAME_POINTER_REQUIRED
502#define TARGET_FRAME_POINTER_REQUIRED frv_frame_pointer_required
503
7b5cbb57
AS
504#undef TARGET_CAN_ELIMINATE
505#define TARGET_CAN_ELIMINATE frv_can_eliminate
506
5efd84c5
NF
507#undef TARGET_CONDITIONAL_REGISTER_USAGE
508#define TARGET_CONDITIONAL_REGISTER_USAGE frv_conditional_register_usage
509
e9d5fdb2
RH
510#undef TARGET_TRAMPOLINE_INIT
511#define TARGET_TRAMPOLINE_INIT frv_trampoline_init
512
219d92a4
AS
513#undef TARGET_FUNCTION_VALUE
514#define TARGET_FUNCTION_VALUE frv_function_value
515#undef TARGET_LIBCALL_VALUE
516#define TARGET_LIBCALL_VALUE frv_libcall_value
517
36a05131 518struct gcc_target targetm = TARGET_INITIALIZER;
bef8809e
AH
519
520#define FRV_SYMBOL_REF_TLS_P(RTX) \
521 (GET_CODE (RTX) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (RTX) != 0)
522
36a05131 523\f
764678d1
AO
524/* Any function call that satisfies the machine-independent
525 requirements is eligible on FR-V. */
526
527static bool
528frv_function_ok_for_sibcall (tree decl ATTRIBUTE_UNUSED,
529 tree exp ATTRIBUTE_UNUSED)
530{
531 return true;
532}
533
34208acf
AO
534/* Return true if SYMBOL is a small data symbol and relocation RELOC
535 can be used to access it directly in a load or store. */
36a05131 536
34208acf
AO
537static FRV_INLINE bool
538frv_small_data_reloc_p (rtx symbol, int reloc)
36a05131 539{
34208acf
AO
540 return (GET_CODE (symbol) == SYMBOL_REF
541 && SYMBOL_REF_SMALL_P (symbol)
542 && (!TARGET_FDPIC || flag_pic == 1)
543 && (reloc == R_FRV_GOTOFF12 || reloc == R_FRV_GPREL12));
544}
36a05131 545
34208acf
AO
546/* Return true if X is a valid relocation unspec. If it is, fill in UNSPEC
547 appropriately. */
36a05131 548
6d26dc3b 549bool
34208acf
AO
550frv_const_unspec_p (rtx x, struct frv_unspec *unspec)
551{
552 if (GET_CODE (x) == CONST)
553 {
554 unspec->offset = 0;
555 x = XEXP (x, 0);
556 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
557 {
558 unspec->offset += INTVAL (XEXP (x, 1));
559 x = XEXP (x, 0);
560 }
561 if (GET_CODE (x) == UNSPEC && XINT (x, 1) == UNSPEC_GOT)
562 {
563 unspec->symbol = XVECEXP (x, 0, 0);
564 unspec->reloc = INTVAL (XVECEXP (x, 0, 1));
36a05131 565
34208acf
AO
566 if (unspec->offset == 0)
567 return true;
36a05131 568
34208acf
AO
569 if (frv_small_data_reloc_p (unspec->symbol, unspec->reloc)
570 && unspec->offset > 0
fa37ed29 571 && unspec->offset < g_switch_value)
34208acf
AO
572 return true;
573 }
574 }
575 return false;
36a05131
BS
576}
577
34208acf
AO
578/* Decide whether we can force certain constants to memory. If we
579 decide we can't, the caller should be able to cope with it in
580 another way.
36a05131 581
34208acf
AO
582 We never allow constants to be forced into memory for TARGET_FDPIC.
583 This is necessary for several reasons:
36a05131 584
1a627b35 585 1. Since frv_legitimate_constant_p rejects constant pool addresses, the
34208acf
AO
586 target-independent code will try to force them into the constant
587 pool, thus leading to infinite recursion.
36a05131 588
34208acf
AO
589 2. We can never introduce new constant pool references during reload.
590 Any such reference would require use of the pseudo FDPIC register.
36a05131 591
34208acf
AO
592 3. We can't represent a constant added to a function pointer (which is
593 not the same as a pointer to a function+constant).
594
595 4. In many cases, it's more efficient to calculate the constant in-line. */
596
597static bool
fbbf66e7
RS
598frv_cannot_force_const_mem (enum machine_mode mode ATTRIBUTE_UNUSED,
599 rtx x ATTRIBUTE_UNUSED)
34208acf
AO
600{
601 return TARGET_FDPIC;
602}
36a05131
BS
603\f
604static int
f2206911 605frv_default_flags_for_cpu (void)
36a05131
BS
606{
607 switch (frv_cpu_type)
608 {
609 case FRV_CPU_GENERIC:
610 return MASK_DEFAULT_FRV;
611
c557edf4
RS
612 case FRV_CPU_FR550:
613 return MASK_DEFAULT_FR550;
614
36a05131
BS
615 case FRV_CPU_FR500:
616 case FRV_CPU_TOMCAT:
617 return MASK_DEFAULT_FR500;
618
c557edf4
RS
619 case FRV_CPU_FR450:
620 return MASK_DEFAULT_FR450;
621
622 case FRV_CPU_FR405:
36a05131
BS
623 case FRV_CPU_FR400:
624 return MASK_DEFAULT_FR400;
625
626 case FRV_CPU_FR300:
627 case FRV_CPU_SIMPLE:
628 return MASK_DEFAULT_SIMPLE;
44e91694
NS
629
630 default:
631 gcc_unreachable ();
36a05131 632 }
36a05131
BS
633}
634
c5387660 635/* Implement TARGET_OPTION_OVERRIDE. */
36a05131 636
c5387660
JM
637static void
638frv_option_override (void)
36a05131 639{
c557edf4
RS
640 int regno;
641 unsigned int i;
36a05131 642
36a05131
BS
643 target_flags |= (frv_default_flags_for_cpu () & ~target_flags_explicit);
644
645 /* -mlibrary-pic sets -fPIC and -G0 and also suppresses warnings from the
646 linker about linking pic and non-pic code. */
647 if (TARGET_LIBPIC)
648 {
649 if (!flag_pic) /* -fPIC */
650 flag_pic = 2;
651
fa37ed29 652 if (!global_options_set.x_g_switch_value) /* -G0 */
36a05131 653 {
36a05131
BS
654 g_switch_value = 0;
655 }
656 }
657
36a05131
BS
658 /* A C expression whose value is a register class containing hard
659 register REGNO. In general there is more than one such class;
660 choose a class which is "minimal", meaning that no smaller class
87b483a1 661 also contains the register. */
36a05131
BS
662
663 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
664 {
0a2aaacc 665 enum reg_class rclass;
36a05131
BS
666
667 if (GPR_P (regno))
668 {
669 int gpr_reg = regno - GPR_FIRST;
bef8809e
AH
670
671 if (gpr_reg == GR8_REG)
0a2aaacc 672 rclass = GR8_REGS;
bef8809e
AH
673
674 else if (gpr_reg == GR9_REG)
0a2aaacc 675 rclass = GR9_REGS;
bef8809e
AH
676
677 else if (gpr_reg == GR14_REG)
0a2aaacc 678 rclass = FDPIC_FPTR_REGS;
bef8809e
AH
679
680 else if (gpr_reg == FDPIC_REGNO)
0a2aaacc 681 rclass = FDPIC_REGS;
bef8809e
AH
682
683 else if ((gpr_reg & 3) == 0)
0a2aaacc 684 rclass = QUAD_REGS;
36a05131
BS
685
686 else if ((gpr_reg & 1) == 0)
0a2aaacc 687 rclass = EVEN_REGS;
36a05131
BS
688
689 else
0a2aaacc 690 rclass = GPR_REGS;
36a05131
BS
691 }
692
693 else if (FPR_P (regno))
694 {
695 int fpr_reg = regno - GPR_FIRST;
696 if ((fpr_reg & 3) == 0)
0a2aaacc 697 rclass = QUAD_FPR_REGS;
36a05131
BS
698
699 else if ((fpr_reg & 1) == 0)
0a2aaacc 700 rclass = FEVEN_REGS;
36a05131
BS
701
702 else
0a2aaacc 703 rclass = FPR_REGS;
36a05131
BS
704 }
705
706 else if (regno == LR_REGNO)
0a2aaacc 707 rclass = LR_REG;
36a05131
BS
708
709 else if (regno == LCR_REGNO)
0a2aaacc 710 rclass = LCR_REG;
36a05131
BS
711
712 else if (ICC_P (regno))
0a2aaacc 713 rclass = ICC_REGS;
36a05131
BS
714
715 else if (FCC_P (regno))
0a2aaacc 716 rclass = FCC_REGS;
36a05131
BS
717
718 else if (ICR_P (regno))
0a2aaacc 719 rclass = ICR_REGS;
36a05131
BS
720
721 else if (FCR_P (regno))
0a2aaacc 722 rclass = FCR_REGS;
36a05131
BS
723
724 else if (ACC_P (regno))
725 {
726 int r = regno - ACC_FIRST;
727 if ((r & 3) == 0)
0a2aaacc 728 rclass = QUAD_ACC_REGS;
36a05131 729 else if ((r & 1) == 0)
0a2aaacc 730 rclass = EVEN_ACC_REGS;
36a05131 731 else
0a2aaacc 732 rclass = ACC_REGS;
36a05131
BS
733 }
734
735 else if (ACCG_P (regno))
0a2aaacc 736 rclass = ACCG_REGS;
36a05131
BS
737
738 else
0a2aaacc 739 rclass = NO_REGS;
36a05131 740
0a2aaacc 741 regno_reg_class[regno] = rclass;
36a05131
BS
742 }
743
744 /* Check for small data option */
fa37ed29 745 if (!global_options_set.x_g_switch_value && !TARGET_LIBPIC)
36a05131
BS
746 g_switch_value = SDATA_DEFAULT_SIZE;
747
36a05131
BS
748 /* There is no single unaligned SI op for PIC code. Sometimes we
749 need to use ".4byte" and sometimes we need to use ".picptr".
750 See frv_assemble_integer for details. */
34208acf 751 if (flag_pic || TARGET_FDPIC)
36a05131
BS
752 targetm.asm_out.unaligned_op.si = 0;
753
34208acf
AO
754 if ((target_flags_explicit & MASK_LINKED_FP) == 0)
755 target_flags |= MASK_LINKED_FP;
756
38c28a25
AH
757 if ((target_flags_explicit & MASK_OPTIMIZE_MEMBAR) == 0)
758 target_flags |= MASK_OPTIMIZE_MEMBAR;
759
c557edf4
RS
760 for (i = 0; i < ARRAY_SIZE (frv_unit_names); i++)
761 frv_unit_codes[i] = get_cpu_unit_code (frv_unit_names[i]);
762
763 for (i = 0; i < ARRAY_SIZE (frv_type_to_unit); i++)
764 frv_type_to_unit[i] = ARRAY_SIZE (frv_unit_codes);
765
36a05131
BS
766 init_machine_status = frv_init_machine_status;
767}
768
36a05131
BS
769\f
770/* Return true if NAME (a STRING_CST node) begins with PREFIX. */
771
772static int
3101faab 773frv_string_begins_with (const_tree name, const char *prefix)
36a05131 774{
3101faab 775 const int prefix_len = strlen (prefix);
36a05131
BS
776
777 /* Remember: NAME's length includes the null terminator. */
778 return (TREE_STRING_LENGTH (name) > prefix_len
779 && strncmp (TREE_STRING_POINTER (name), prefix, prefix_len) == 0);
780}
36a05131
BS
781\f
782/* Zero or more C statements that may conditionally modify two variables
783 `fixed_regs' and `call_used_regs' (both of type `char []') after they have
784 been initialized from the two preceding macros.
785
786 This is necessary in case the fixed or call-clobbered registers depend on
787 target flags.
788
789 You need not define this macro if it has no work to do.
790
791 If the usage of an entire class of registers depends on the target flags,
792 you may indicate this to GCC by using this macro to modify `fixed_regs' and
793 `call_used_regs' to 1 for each of the registers in the classes which should
794 not be used by GCC. Also define the macro `REG_CLASS_FROM_LETTER' to return
795 `NO_REGS' if it is called with a letter for a class that shouldn't be used.
796
797 (However, if this class is not included in `GENERAL_REGS' and all of the
798 insn patterns whose constraints permit this class are controlled by target
799 switches, then GCC will automatically avoid using these registers when the
800 target switches are opposed to them.) */
801
5efd84c5 802static void
f2206911 803frv_conditional_register_usage (void)
36a05131
BS
804{
805 int i;
806
807 for (i = GPR_FIRST + NUM_GPRS; i <= GPR_LAST; i++)
808 fixed_regs[i] = call_used_regs[i] = 1;
809
810 for (i = FPR_FIRST + NUM_FPRS; i <= FPR_LAST; i++)
811 fixed_regs[i] = call_used_regs[i] = 1;
812
36a05131
BS
813 /* Reserve the registers used for conditional execution. At present, we need
814 1 ICC and 1 ICR register. */
815 fixed_regs[ICC_TEMP] = call_used_regs[ICC_TEMP] = 1;
816 fixed_regs[ICR_TEMP] = call_used_regs[ICR_TEMP] = 1;
817
818 if (TARGET_FIXED_CC)
819 {
820 fixed_regs[ICC_FIRST] = call_used_regs[ICC_FIRST] = 1;
821 fixed_regs[FCC_FIRST] = call_used_regs[FCC_FIRST] = 1;
822 fixed_regs[ICR_FIRST] = call_used_regs[ICR_FIRST] = 1;
823 fixed_regs[FCR_FIRST] = call_used_regs[FCR_FIRST] = 1;
824 }
825
34208acf
AO
826 if (TARGET_FDPIC)
827 fixed_regs[GPR_FIRST + 16] = fixed_regs[GPR_FIRST + 17] =
828 call_used_regs[GPR_FIRST + 16] = call_used_regs[GPR_FIRST + 17] = 0;
829
36a05131
BS
830#if 0
831 /* If -fpic, SDA_BASE_REG is the PIC register. */
832 if (g_switch_value == 0 && !flag_pic)
833 fixed_regs[SDA_BASE_REG] = call_used_regs[SDA_BASE_REG] = 0;
834
835 if (!flag_pic)
836 fixed_regs[PIC_REGNO] = call_used_regs[PIC_REGNO] = 0;
837#endif
838}
839
840\f
841/*
842 * Compute the stack frame layout
843 *
844 * Register setup:
845 * +---------------+-----------------------+-----------------------+
846 * |Register |type |caller-save/callee-save|
847 * +---------------+-----------------------+-----------------------+
848 * |GR0 |Zero register | - |
849 * |GR1 |Stack pointer(SP) | - |
850 * |GR2 |Frame pointer(FP) | - |
851 * |GR3 |Hidden parameter | caller save |
852 * |GR4-GR7 | - | caller save |
853 * |GR8-GR13 |Argument register | caller save |
854 * |GR14-GR15 | - | caller save |
855 * |GR16-GR31 | - | callee save |
856 * |GR32-GR47 | - | caller save |
857 * |GR48-GR63 | - | callee save |
858 * |FR0-FR15 | - | caller save |
859 * |FR16-FR31 | - | callee save |
860 * |FR32-FR47 | - | caller save |
861 * |FR48-FR63 | - | callee save |
862 * +---------------+-----------------------+-----------------------+
863 *
864 * Stack frame setup:
865 * Low
866 * SP-> |-----------------------------------|
867 * | Argument area |
868 * |-----------------------------------|
869 * | Register save area |
870 * |-----------------------------------|
871 * | Local variable save area |
872 * FP-> |-----------------------------------|
873 * | Old FP |
874 * |-----------------------------------|
875 * | Hidden parameter save area |
876 * |-----------------------------------|
877 * | Return address(LR) storage area |
878 * |-----------------------------------|
879 * | Padding for alignment |
880 * |-----------------------------------|
881 * | Register argument area |
882 * OLD SP-> |-----------------------------------|
883 * | Parameter area |
884 * |-----------------------------------|
885 * High
886 *
887 * Argument area/Parameter area:
888 *
889 * When a function is called, this area is used for argument transfer. When
890 * the argument is set up by the caller function, this area is referred to as
891 * the argument area. When the argument is referenced by the callee function,
892 * this area is referred to as the parameter area. The area is allocated when
893 * all arguments cannot be placed on the argument register at the time of
894 * argument transfer.
895 *
896 * Register save area:
897 *
898 * This is a register save area that must be guaranteed for the caller
899 * function. This area is not secured when the register save operation is not
900 * needed.
901 *
902 * Local variable save area:
903 *
904 * This is the area for local variables and temporary variables.
905 *
906 * Old FP:
907 *
908 * This area stores the FP value of the caller function.
909 *
910 * Hidden parameter save area:
911 *
912 * This area stores the start address of the return value storage
913 * area for a struct/union return function.
914 * When a struct/union is used as the return value, the caller
915 * function stores the return value storage area start address in
916 * register GR3 and passes it to the caller function.
917 * The callee function interprets the address stored in the GR3
918 * as the return value storage area start address.
919 * When register GR3 needs to be saved into memory, the callee
920 * function saves it in the hidden parameter save area. This
921 * area is not secured when the save operation is not needed.
922 *
923 * Return address(LR) storage area:
924 *
925 * This area saves the LR. The LR stores the address of a return to the caller
926 * function for the purpose of function calling.
927 *
928 * Argument register area:
929 *
930 * This area saves the argument register. This area is not secured when the
931 * save operation is not needed.
932 *
933 * Argument:
934 *
935 * Arguments, the count of which equals the count of argument registers (6
936 * words), are positioned in registers GR8 to GR13 and delivered to the callee
937 * function. When a struct/union return function is called, the return value
938 * area address is stored in register GR3. Arguments not placed in the
939 * argument registers will be stored in the stack argument area for transfer
940 * purposes. When an 8-byte type argument is to be delivered using registers,
941 * it is divided into two and placed in two registers for transfer. When
942 * argument registers must be saved to memory, the callee function secures an
943 * argument register save area in the stack. In this case, a continuous
944 * argument register save area must be established in the parameter area. The
945 * argument register save area must be allocated as needed to cover the size of
946 * the argument register to be saved. If the function has a variable count of
947 * arguments, it saves all argument registers in the argument register save
948 * area.
949 *
950 * Argument Extension Format:
951 *
952 * When an argument is to be stored in the stack, its type is converted to an
953 * extended type in accordance with the individual argument type. The argument
954 * is freed by the caller function after the return from the callee function is
955 * made.
956 *
957 * +-----------------------+---------------+------------------------+
958 * | Argument Type |Extended Type |Stack Storage Size(byte)|
959 * +-----------------------+---------------+------------------------+
960 * |char |int | 4 |
961 * |signed char |int | 4 |
962 * |unsigned char |int | 4 |
963 * |[signed] short int |int | 4 |
964 * |unsigned short int |int | 4 |
965 * |[signed] int |No extension | 4 |
966 * |unsigned int |No extension | 4 |
967 * |[signed] long int |No extension | 4 |
968 * |unsigned long int |No extension | 4 |
969 * |[signed] long long int |No extension | 8 |
970 * |unsigned long long int |No extension | 8 |
971 * |float |double | 8 |
972 * |double |No extension | 8 |
973 * |long double |No extension | 8 |
974 * |pointer |No extension | 4 |
975 * |struct/union |- | 4 (*1) |
976 * +-----------------------+---------------+------------------------+
977 *
978 * When a struct/union is to be delivered as an argument, the caller copies it
979 * to the local variable area and delivers the address of that area.
980 *
981 * Return Value:
982 *
983 * +-------------------------------+----------------------+
984 * |Return Value Type |Return Value Interface|
985 * +-------------------------------+----------------------+
986 * |void |None |
987 * |[signed|unsigned] char |GR8 |
988 * |[signed|unsigned] short int |GR8 |
989 * |[signed|unsigned] int |GR8 |
990 * |[signed|unsigned] long int |GR8 |
991 * |pointer |GR8 |
992 * |[signed|unsigned] long long int|GR8 & GR9 |
993 * |float |GR8 |
994 * |double |GR8 & GR9 |
995 * |long double |GR8 & GR9 |
996 * |struct/union |(*1) |
997 * +-------------------------------+----------------------+
998 *
999 * When a struct/union is used as the return value, the caller function stores
1000 * the start address of the return value storage area into GR3 and then passes
1001 * it to the callee function. The callee function interprets GR3 as the start
1002 * address of the return value storage area. When this address needs to be
1003 * saved in memory, the callee function secures the hidden parameter save area
1004 * and saves the address in that area.
1005 */
1006
1007frv_stack_t *
f2206911 1008frv_stack_info (void)
36a05131
BS
1009{
1010 static frv_stack_t info, zero_info;
1011 frv_stack_t *info_ptr = &info;
1012 tree fndecl = current_function_decl;
1013 int varargs_p = 0;
1014 tree cur_arg;
1015 tree next_arg;
1016 int range;
1017 int alignment;
1018 int offset;
1019
87b483a1
KH
1020 /* If we've already calculated the values and reload is complete,
1021 just return now. */
36a05131
BS
1022 if (frv_stack_cache)
1023 return frv_stack_cache;
1024
87b483a1 1025 /* Zero all fields. */
36a05131
BS
1026 info = zero_info;
1027
87b483a1 1028 /* Set up the register range information. */
36a05131
BS
1029 info_ptr->regs[STACK_REGS_GPR].name = "gpr";
1030 info_ptr->regs[STACK_REGS_GPR].first = LAST_ARG_REGNUM + 1;
1031 info_ptr->regs[STACK_REGS_GPR].last = GPR_LAST;
1032 info_ptr->regs[STACK_REGS_GPR].dword_p = TRUE;
1033
1034 info_ptr->regs[STACK_REGS_FPR].name = "fpr";
1035 info_ptr->regs[STACK_REGS_FPR].first = FPR_FIRST;
1036 info_ptr->regs[STACK_REGS_FPR].last = FPR_LAST;
1037 info_ptr->regs[STACK_REGS_FPR].dword_p = TRUE;
1038
1039 info_ptr->regs[STACK_REGS_LR].name = "lr";
1040 info_ptr->regs[STACK_REGS_LR].first = LR_REGNO;
1041 info_ptr->regs[STACK_REGS_LR].last = LR_REGNO;
1042 info_ptr->regs[STACK_REGS_LR].special_p = 1;
1043
1044 info_ptr->regs[STACK_REGS_CC].name = "cc";
1045 info_ptr->regs[STACK_REGS_CC].first = CC_FIRST;
1046 info_ptr->regs[STACK_REGS_CC].last = CC_LAST;
1047 info_ptr->regs[STACK_REGS_CC].field_p = TRUE;
1048
1049 info_ptr->regs[STACK_REGS_LCR].name = "lcr";
1050 info_ptr->regs[STACK_REGS_LCR].first = LCR_REGNO;
1051 info_ptr->regs[STACK_REGS_LCR].last = LCR_REGNO;
1052
1053 info_ptr->regs[STACK_REGS_STDARG].name = "stdarg";
1054 info_ptr->regs[STACK_REGS_STDARG].first = FIRST_ARG_REGNUM;
1055 info_ptr->regs[STACK_REGS_STDARG].last = LAST_ARG_REGNUM;
1056 info_ptr->regs[STACK_REGS_STDARG].dword_p = 1;
1057 info_ptr->regs[STACK_REGS_STDARG].special_p = 1;
1058
1059 info_ptr->regs[STACK_REGS_STRUCT].name = "struct";
8ac411c7
KH
1060 info_ptr->regs[STACK_REGS_STRUCT].first = FRV_STRUCT_VALUE_REGNUM;
1061 info_ptr->regs[STACK_REGS_STRUCT].last = FRV_STRUCT_VALUE_REGNUM;
36a05131
BS
1062 info_ptr->regs[STACK_REGS_STRUCT].special_p = 1;
1063
1064 info_ptr->regs[STACK_REGS_FP].name = "fp";
1065 info_ptr->regs[STACK_REGS_FP].first = FRAME_POINTER_REGNUM;
1066 info_ptr->regs[STACK_REGS_FP].last = FRAME_POINTER_REGNUM;
1067 info_ptr->regs[STACK_REGS_FP].special_p = 1;
1068
1069 /* Determine if this is a stdarg function. If so, allocate space to store
1070 the 6 arguments. */
1071 if (cfun->stdarg)
1072 varargs_p = 1;
1073
1074 else
1075 {
1076 /* Find the last argument, and see if it is __builtin_va_alist. */
1077 for (cur_arg = DECL_ARGUMENTS (fndecl); cur_arg != (tree)0; cur_arg = next_arg)
1078 {
910ad8de 1079 next_arg = DECL_CHAIN (cur_arg);
36a05131
BS
1080 if (next_arg == (tree)0)
1081 {
1082 if (DECL_NAME (cur_arg)
1083 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (cur_arg)), "__builtin_va_alist"))
1084 varargs_p = 1;
1085
1086 break;
1087 }
1088 }
1089 }
1090
87b483a1 1091 /* Iterate over all of the register ranges. */
36a05131
BS
1092 for (range = 0; range < STACK_REGS_MAX; range++)
1093 {
1094 frv_stack_regs_t *reg_ptr = &(info_ptr->regs[range]);
1095 int first = reg_ptr->first;
1096 int last = reg_ptr->last;
1097 int size_1word = 0;
1098 int size_2words = 0;
1099 int regno;
1100
87b483a1 1101 /* Calculate which registers need to be saved & save area size. */
36a05131
BS
1102 switch (range)
1103 {
1104 default:
1105 for (regno = first; regno <= last; regno++)
1106 {
6fb5fa3c 1107 if ((df_regs_ever_live_p (regno) && !call_used_regs[regno])
e3b5732b 1108 || (crtl->calls_eh_return
36a05131 1109 && (regno >= FIRST_EH_REGNUM && regno <= LAST_EH_REGNUM))
34208acf 1110 || (!TARGET_FDPIC && flag_pic
ad516a74 1111 && crtl->uses_pic_offset_table && regno == PIC_REGNO))
36a05131
BS
1112 {
1113 info_ptr->save_p[regno] = REG_SAVE_1WORD;
1114 size_1word += UNITS_PER_WORD;
1115 }
1116 }
1117 break;
1118
1119 /* Calculate whether we need to create a frame after everything else
1120 has been processed. */
1121 case STACK_REGS_FP:
1122 break;
1123
1124 case STACK_REGS_LR:
6fb5fa3c 1125 if (df_regs_ever_live_p (LR_REGNO)
36a05131 1126 || profile_flag
34208acf
AO
1127 /* This is set for __builtin_return_address, etc. */
1128 || cfun->machine->frame_needed
1129 || (TARGET_LINKED_FP && frame_pointer_needed)
1130 || (!TARGET_FDPIC && flag_pic
ad516a74 1131 && crtl->uses_pic_offset_table))
36a05131
BS
1132 {
1133 info_ptr->save_p[LR_REGNO] = REG_SAVE_1WORD;
1134 size_1word += UNITS_PER_WORD;
1135 }
1136 break;
1137
1138 case STACK_REGS_STDARG:
1139 if (varargs_p)
1140 {
87b483a1
KH
1141 /* If this is a stdarg function with a non varardic
1142 argument split between registers and the stack,
1143 adjust the saved registers downward. */
7dd68986 1144 last -= (ADDR_ALIGN (crtl->args.pretend_args_size, UNITS_PER_WORD)
36a05131
BS
1145 / UNITS_PER_WORD);
1146
1147 for (regno = first; regno <= last; regno++)
1148 {
1149 info_ptr->save_p[regno] = REG_SAVE_1WORD;
1150 size_1word += UNITS_PER_WORD;
1151 }
1152
1153 info_ptr->stdarg_size = size_1word;
1154 }
1155 break;
1156
1157 case STACK_REGS_STRUCT:
1158 if (cfun->returns_struct)
1159 {
8ac411c7 1160 info_ptr->save_p[FRV_STRUCT_VALUE_REGNUM] = REG_SAVE_1WORD;
36a05131
BS
1161 size_1word += UNITS_PER_WORD;
1162 }
1163 break;
1164 }
1165
1166
1167 if (size_1word)
1168 {
87b483a1 1169 /* If this is a field, it only takes one word. */
36a05131
BS
1170 if (reg_ptr->field_p)
1171 size_1word = UNITS_PER_WORD;
1172
87b483a1 1173 /* Determine which register pairs can be saved together. */
36a05131
BS
1174 else if (reg_ptr->dword_p && TARGET_DWORD)
1175 {
1176 for (regno = first; regno < last; regno += 2)
1177 {
1178 if (info_ptr->save_p[regno] && info_ptr->save_p[regno+1])
1179 {
1180 size_2words += 2 * UNITS_PER_WORD;
1181 size_1word -= 2 * UNITS_PER_WORD;
1182 info_ptr->save_p[regno] = REG_SAVE_2WORDS;
1183 info_ptr->save_p[regno+1] = REG_SAVE_NO_SAVE;
1184 }
1185 }
1186 }
1187
1188 reg_ptr->size_1word = size_1word;
1189 reg_ptr->size_2words = size_2words;
1190
1191 if (! reg_ptr->special_p)
1192 {
1193 info_ptr->regs_size_1word += size_1word;
1194 info_ptr->regs_size_2words += size_2words;
1195 }
1196 }
1197 }
1198
1199 /* Set up the sizes of each each field in the frame body, making the sizes
1200 of each be divisible by the size of a dword if dword operations might
1201 be used, or the size of a word otherwise. */
1202 alignment = (TARGET_DWORD? 2 * UNITS_PER_WORD : UNITS_PER_WORD);
1203
7dd68986 1204 info_ptr->parameter_size = ADDR_ALIGN (crtl->outgoing_args_size, alignment);
36a05131
BS
1205 info_ptr->regs_size = ADDR_ALIGN (info_ptr->regs_size_2words
1206 + info_ptr->regs_size_1word,
1207 alignment);
1208 info_ptr->vars_size = ADDR_ALIGN (get_frame_size (), alignment);
1209
7dd68986 1210 info_ptr->pretend_size = crtl->args.pretend_args_size;
36a05131
BS
1211
1212 /* Work out the size of the frame, excluding the header. Both the frame
1213 body and register parameter area will be dword-aligned. */
1214 info_ptr->total_size
1215 = (ADDR_ALIGN (info_ptr->parameter_size
1216 + info_ptr->regs_size
1217 + info_ptr->vars_size,
1218 2 * UNITS_PER_WORD)
1219 + ADDR_ALIGN (info_ptr->pretend_size
1220 + info_ptr->stdarg_size,
1221 2 * UNITS_PER_WORD));
1222
1223 /* See if we need to create a frame at all, if so add header area. */
1224 if (info_ptr->total_size > 0
34208acf 1225 || frame_pointer_needed
36a05131
BS
1226 || info_ptr->regs[STACK_REGS_LR].size_1word > 0
1227 || info_ptr->regs[STACK_REGS_STRUCT].size_1word > 0)
1228 {
1229 offset = info_ptr->parameter_size;
1230 info_ptr->header_size = 4 * UNITS_PER_WORD;
1231 info_ptr->total_size += 4 * UNITS_PER_WORD;
1232
87b483a1 1233 /* Calculate the offsets to save normal register pairs. */
36a05131
BS
1234 for (range = 0; range < STACK_REGS_MAX; range++)
1235 {
1236 frv_stack_regs_t *reg_ptr = &(info_ptr->regs[range]);
1237 if (! reg_ptr->special_p)
1238 {
1239 int first = reg_ptr->first;
1240 int last = reg_ptr->last;
1241 int regno;
1242
1243 for (regno = first; regno <= last; regno++)
1244 if (info_ptr->save_p[regno] == REG_SAVE_2WORDS
1245 && regno != FRAME_POINTER_REGNUM
1246 && (regno < FIRST_ARG_REGNUM
1247 || regno > LAST_ARG_REGNUM))
1248 {
1249 info_ptr->reg_offset[regno] = offset;
1250 offset += 2 * UNITS_PER_WORD;
1251 }
1252 }
1253 }
1254
87b483a1 1255 /* Calculate the offsets to save normal single registers. */
36a05131
BS
1256 for (range = 0; range < STACK_REGS_MAX; range++)
1257 {
1258 frv_stack_regs_t *reg_ptr = &(info_ptr->regs[range]);
1259 if (! reg_ptr->special_p)
1260 {
1261 int first = reg_ptr->first;
1262 int last = reg_ptr->last;
1263 int regno;
1264
1265 for (regno = first; regno <= last; regno++)
1266 if (info_ptr->save_p[regno] == REG_SAVE_1WORD
1267 && regno != FRAME_POINTER_REGNUM
1268 && (regno < FIRST_ARG_REGNUM
1269 || regno > LAST_ARG_REGNUM))
1270 {
1271 info_ptr->reg_offset[regno] = offset;
1272 offset += UNITS_PER_WORD;
1273 }
1274 }
1275 }
1276
1277 /* Calculate the offset to save the local variables at. */
1278 offset = ADDR_ALIGN (offset, alignment);
1279 if (info_ptr->vars_size)
1280 {
1281 info_ptr->vars_offset = offset;
1282 offset += info_ptr->vars_size;
1283 }
1284
1285 /* Align header to a dword-boundary. */
1286 offset = ADDR_ALIGN (offset, 2 * UNITS_PER_WORD);
1287
1288 /* Calculate the offsets in the fixed frame. */
1289 info_ptr->save_p[FRAME_POINTER_REGNUM] = REG_SAVE_1WORD;
1290 info_ptr->reg_offset[FRAME_POINTER_REGNUM] = offset;
1291 info_ptr->regs[STACK_REGS_FP].size_1word = UNITS_PER_WORD;
1292
1293 info_ptr->save_p[LR_REGNO] = REG_SAVE_1WORD;
1294 info_ptr->reg_offset[LR_REGNO] = offset + 2*UNITS_PER_WORD;
1295 info_ptr->regs[STACK_REGS_LR].size_1word = UNITS_PER_WORD;
1296
1297 if (cfun->returns_struct)
1298 {
8ac411c7
KH
1299 info_ptr->save_p[FRV_STRUCT_VALUE_REGNUM] = REG_SAVE_1WORD;
1300 info_ptr->reg_offset[FRV_STRUCT_VALUE_REGNUM] = offset + UNITS_PER_WORD;
36a05131
BS
1301 info_ptr->regs[STACK_REGS_STRUCT].size_1word = UNITS_PER_WORD;
1302 }
1303
1304 /* Calculate the offsets to store the arguments passed in registers
1305 for stdarg functions. The register pairs are first and the single
1306 register if any is last. The register save area starts on a
1307 dword-boundary. */
1308 if (info_ptr->stdarg_size)
1309 {
1310 int first = info_ptr->regs[STACK_REGS_STDARG].first;
1311 int last = info_ptr->regs[STACK_REGS_STDARG].last;
1312 int regno;
1313
1314 /* Skip the header. */
1315 offset += 4 * UNITS_PER_WORD;
1316 for (regno = first; regno <= last; regno++)
1317 {
1318 if (info_ptr->save_p[regno] == REG_SAVE_2WORDS)
1319 {
1320 info_ptr->reg_offset[regno] = offset;
1321 offset += 2 * UNITS_PER_WORD;
1322 }
1323 else if (info_ptr->save_p[regno] == REG_SAVE_1WORD)
1324 {
1325 info_ptr->reg_offset[regno] = offset;
1326 offset += UNITS_PER_WORD;
1327 }
1328 }
1329 }
1330 }
1331
1332 if (reload_completed)
1333 frv_stack_cache = info_ptr;
1334
1335 return info_ptr;
1336}
1337
1338\f
87b483a1 1339/* Print the information about the frv stack offsets, etc. when debugging. */
36a05131
BS
1340
1341void
f2206911 1342frv_debug_stack (frv_stack_t *info)
36a05131
BS
1343{
1344 int range;
1345
1346 if (!info)
1347 info = frv_stack_info ();
1348
1349 fprintf (stderr, "\nStack information for function %s:\n",
1350 ((current_function_decl && DECL_NAME (current_function_decl))
1351 ? IDENTIFIER_POINTER (DECL_NAME (current_function_decl))
1352 : "<unknown>"));
1353
1354 fprintf (stderr, "\ttotal_size\t= %6d\n", info->total_size);
1355 fprintf (stderr, "\tvars_size\t= %6d\n", info->vars_size);
1356 fprintf (stderr, "\tparam_size\t= %6d\n", info->parameter_size);
1357 fprintf (stderr, "\tregs_size\t= %6d, 1w = %3d, 2w = %3d\n",
1358 info->regs_size, info->regs_size_1word, info->regs_size_2words);
1359
1360 fprintf (stderr, "\theader_size\t= %6d\n", info->header_size);
1361 fprintf (stderr, "\tpretend_size\t= %6d\n", info->pretend_size);
1362 fprintf (stderr, "\tvars_offset\t= %6d\n", info->vars_offset);
1363 fprintf (stderr, "\tregs_offset\t= %6d\n", info->regs_offset);
1364
1365 for (range = 0; range < STACK_REGS_MAX; range++)
1366 {
1367 frv_stack_regs_t *regs = &(info->regs[range]);
1368 if ((regs->size_1word + regs->size_2words) > 0)
1369 {
1370 int first = regs->first;
1371 int last = regs->last;
1372 int regno;
1373
1374 fprintf (stderr, "\t%s\tsize\t= %6d, 1w = %3d, 2w = %3d, save =",
1375 regs->name, regs->size_1word + regs->size_2words,
1376 regs->size_1word, regs->size_2words);
1377
1378 for (regno = first; regno <= last; regno++)
1379 {
1380 if (info->save_p[regno] == REG_SAVE_1WORD)
1381 fprintf (stderr, " %s (%d)", reg_names[regno],
1382 info->reg_offset[regno]);
1383
1384 else if (info->save_p[regno] == REG_SAVE_2WORDS)
1385 fprintf (stderr, " %s-%s (%d)", reg_names[regno],
1386 reg_names[regno+1], info->reg_offset[regno]);
1387 }
1388
1389 fputc ('\n', stderr);
1390 }
1391 }
1392
1393 fflush (stderr);
1394}
1395
1396
1397\f
1398
c557edf4
RS
1399/* Used during final to control the packing of insns. The value is
1400 1 if the current instruction should be packed with the next one,
1401 0 if it shouldn't or -1 if packing is disabled altogether. */
36a05131
BS
1402
1403static int frv_insn_packing_flag;
1404
1405/* True if the current function contains a far jump. */
1406
1407static int
f2206911 1408frv_function_contains_far_jump (void)
36a05131
BS
1409{
1410 rtx insn = get_insns ();
1411 while (insn != NULL
1412 && !(GET_CODE (insn) == JUMP_INSN
1413 /* Ignore tablejump patterns. */
1414 && GET_CODE (PATTERN (insn)) != ADDR_VEC
1415 && GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC
1416 && get_attr_far_jump (insn) == FAR_JUMP_YES))
1417 insn = NEXT_INSN (insn);
1418 return (insn != NULL);
1419}
1420
1421/* For the FRV, this function makes sure that a function with far jumps
1422 will return correctly. It also does the VLIW packing. */
1423
1424static void
f2206911 1425frv_function_prologue (FILE *file, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
36a05131 1426{
0fad9ab9
NC
1427 rtx insn, next, last_call;
1428
36a05131
BS
1429 /* If no frame was created, check whether the function uses a call
1430 instruction to implement a far jump. If so, save the link in gr3 and
1431 replace all returns to LR with returns to GR3. GR3 is used because it
1432 is call-clobbered, because is not available to the register allocator,
1433 and because all functions that take a hidden argument pointer will have
1434 a stack frame. */
1435 if (frv_stack_info ()->total_size == 0 && frv_function_contains_far_jump ())
1436 {
1437 rtx insn;
1438
1439 /* Just to check that the above comment is true. */
6fb5fa3c 1440 gcc_assert (!df_regs_ever_live_p (GPR_FIRST + 3));
36a05131
BS
1441
1442 /* Generate the instruction that saves the link register. */
1443 fprintf (file, "\tmovsg lr,gr3\n");
1444
1445 /* Replace the LR with GR3 in *return_internal patterns. The insn
1446 will now return using jmpl @(gr3,0) rather than bralr. We cannot
1447 simply emit a different assembly directive because bralr and jmpl
1448 execute in different units. */
1449 for (insn = get_insns(); insn != NULL; insn = NEXT_INSN (insn))
1450 if (GET_CODE (insn) == JUMP_INSN)
1451 {
1452 rtx pattern = PATTERN (insn);
1453 if (GET_CODE (pattern) == PARALLEL
1454 && XVECLEN (pattern, 0) >= 2
1455 && GET_CODE (XVECEXP (pattern, 0, 0)) == RETURN
1456 && GET_CODE (XVECEXP (pattern, 0, 1)) == USE)
1457 {
1458 rtx address = XEXP (XVECEXP (pattern, 0, 1), 0);
1459 if (GET_CODE (address) == REG && REGNO (address) == LR_REGNO)
6fb5fa3c 1460 SET_REGNO (address, GPR_FIRST + 3);
36a05131
BS
1461 }
1462 }
1463 }
1464
1465 frv_pack_insns ();
c557edf4
RS
1466
1467 /* Allow the garbage collector to free the nops created by frv_reorg. */
1468 memset (frv_nops, 0, sizeof (frv_nops));
0fad9ab9
NC
1469
1470 /* Locate CALL_ARG_LOCATION notes that have been misplaced
1471 and move them back to where they should be located. */
1472 last_call = NULL_RTX;
1473 for (insn = get_insns (); insn; insn = next)
1474 {
1475 next = NEXT_INSN (insn);
1476 if (CALL_P (insn)
1477 || (INSN_P (insn) && GET_CODE (PATTERN (insn)) == SEQUENCE
1478 && CALL_P (XVECEXP (PATTERN (insn), 0, 0))))
1479 last_call = insn;
1480
1481 if (!NOTE_P (insn) || NOTE_KIND (insn) != NOTE_INSN_CALL_ARG_LOCATION)
1482 continue;
1483
1484 if (NEXT_INSN (last_call) == insn)
1485 continue;
1486
1487 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
1488 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
1489 PREV_INSN (insn) = last_call;
1490 NEXT_INSN (insn) = NEXT_INSN (last_call);
1491 PREV_INSN (NEXT_INSN (insn)) = insn;
1492 NEXT_INSN (PREV_INSN (insn)) = insn;
1493 last_call = insn;
1494 }
36a05131
BS
1495}
1496
1497\f
1498/* Return the next available temporary register in a given class. */
1499
1500static rtx
f2206911
KC
1501frv_alloc_temp_reg (
1502 frv_tmp_reg_t *info, /* which registers are available */
0a2aaacc 1503 enum reg_class rclass, /* register class desired */
f2206911
KC
1504 enum machine_mode mode, /* mode to allocate register with */
1505 int mark_as_used, /* register not available after allocation */
1506 int no_abort) /* return NULL instead of aborting */
36a05131 1507{
0a2aaacc 1508 int regno = info->next_reg[ (int)rclass ];
36a05131 1509 int orig_regno = regno;
0a2aaacc 1510 HARD_REG_SET *reg_in_class = &reg_class_contents[ (int)rclass ];
36a05131
BS
1511 int i, nr;
1512
1513 for (;;)
1514 {
1515 if (TEST_HARD_REG_BIT (*reg_in_class, regno)
1516 && TEST_HARD_REG_BIT (info->regs, regno))
1517 break;
1518
1519 if (++regno >= FIRST_PSEUDO_REGISTER)
1520 regno = 0;
1521 if (regno == orig_regno)
1522 {
44e91694
NS
1523 gcc_assert (no_abort);
1524 return NULL_RTX;
36a05131
BS
1525 }
1526 }
1527
1528 nr = HARD_REGNO_NREGS (regno, mode);
0a2aaacc 1529 info->next_reg[ (int)rclass ] = regno + nr;
36a05131
BS
1530
1531 if (mark_as_used)
1532 for (i = 0; i < nr; i++)
1533 CLEAR_HARD_REG_BIT (info->regs, regno+i);
1534
1535 return gen_rtx_REG (mode, regno);
1536}
1537
1538\f
1539/* Return an rtx with the value OFFSET, which will either be a register or a
1540 signed 12-bit integer. It can be used as the second operand in an "add"
1541 instruction, or as the index in a load or store.
1542
1543 The function returns a constant rtx if OFFSET is small enough, otherwise
1544 it loads the constant into register OFFSET_REGNO and returns that. */
1545static rtx
f2206911 1546frv_frame_offset_rtx (int offset)
36a05131
BS
1547{
1548 rtx offset_rtx = GEN_INT (offset);
2f5b1308 1549 if (IN_RANGE (offset, -2048, 2047))
36a05131
BS
1550 return offset_rtx;
1551 else
1552 {
1553 rtx reg_rtx = gen_rtx_REG (SImode, OFFSET_REGNO);
2f5b1308 1554 if (IN_RANGE (offset, -32768, 32767))
36a05131
BS
1555 emit_insn (gen_movsi (reg_rtx, offset_rtx));
1556 else
1557 {
1558 emit_insn (gen_movsi_high (reg_rtx, offset_rtx));
1559 emit_insn (gen_movsi_lo_sum (reg_rtx, offset_rtx));
1560 }
1561 return reg_rtx;
1562 }
1563}
1564
1565/* Generate (mem:MODE (plus:Pmode BASE (frv_frame_offset OFFSET)))). The
1566 prologue and epilogue uses such expressions to access the stack. */
1567static rtx
f2206911 1568frv_frame_mem (enum machine_mode mode, rtx base, int offset)
36a05131
BS
1569{
1570 return gen_rtx_MEM (mode, gen_rtx_PLUS (Pmode,
1571 base,
1572 frv_frame_offset_rtx (offset)));
1573}
1574
1575/* Generate a frame-related expression:
1576
1577 (set REG (mem (plus (sp) (const_int OFFSET)))).
1578
1579 Such expressions are used in FRAME_RELATED_EXPR notes for more complex
1580 instructions. Marking the expressions as frame-related is superfluous if
1581 the note contains just a single set. But if the note contains a PARALLEL
1582 or SEQUENCE that has several sets, each set must be individually marked
1583 as frame-related. */
1584static rtx
f2206911 1585frv_dwarf_store (rtx reg, int offset)
36a05131
BS
1586{
1587 rtx set = gen_rtx_SET (VOIDmode,
1588 gen_rtx_MEM (GET_MODE (reg),
0a81f074 1589 plus_constant (Pmode, stack_pointer_rtx,
36a05131
BS
1590 offset)),
1591 reg);
1592 RTX_FRAME_RELATED_P (set) = 1;
1593 return set;
1594}
1595
1596/* Emit a frame-related instruction whose pattern is PATTERN. The
1597 instruction is the last in a sequence that cumulatively performs the
1598 operation described by DWARF_PATTERN. The instruction is marked as
1599 frame-related and has a REG_FRAME_RELATED_EXPR note containing
1600 DWARF_PATTERN. */
1601static void
f2206911 1602frv_frame_insn (rtx pattern, rtx dwarf_pattern)
36a05131
BS
1603{
1604 rtx insn = emit_insn (pattern);
1605 RTX_FRAME_RELATED_P (insn) = 1;
1606 REG_NOTES (insn) = alloc_EXPR_LIST (REG_FRAME_RELATED_EXPR,
1607 dwarf_pattern,
1608 REG_NOTES (insn));
1609}
1610
1611/* Emit instructions that transfer REG to or from the memory location (sp +
1612 STACK_OFFSET). The register is stored in memory if ACCESSOR->OP is
1613 FRV_STORE and loaded if it is FRV_LOAD. Only the prologue uses this
1614 function to store registers and only the epilogue uses it to load them.
1615
1616 The caller sets up ACCESSOR so that BASE is equal to (sp + BASE_OFFSET).
1617 The generated instruction will use BASE as its base register. BASE may
1618 simply be the stack pointer, but if several accesses are being made to a
1619 region far away from the stack pointer, it may be more efficient to set
1620 up a temporary instead.
b16c1435 1621
36a05131
BS
1622 Store instructions will be frame-related and will be annotated with the
1623 overall effect of the store. Load instructions will be followed by a
1624 (use) to prevent later optimizations from zapping them.
1625
1626 The function takes care of the moves to and from SPRs, using TEMP_REGNO
1627 as a temporary in such cases. */
1628static void
f2206911 1629frv_frame_access (frv_frame_accessor_t *accessor, rtx reg, int stack_offset)
36a05131
BS
1630{
1631 enum machine_mode mode = GET_MODE (reg);
1632 rtx mem = frv_frame_mem (mode,
1633 accessor->base,
1634 stack_offset - accessor->base_offset);
1635
1636 if (accessor->op == FRV_LOAD)
1637 {
1638 if (SPR_P (REGNO (reg)))
1639 {
1640 rtx temp = gen_rtx_REG (mode, TEMP_REGNO);
1641 emit_insn (gen_rtx_SET (VOIDmode, temp, mem));
1642 emit_insn (gen_rtx_SET (VOIDmode, reg, temp));
1643 }
1644 else
8d8256c1
NC
1645 {
1646 /* We cannot use reg+reg addressing for DImode access. */
1647 if (mode == DImode
1648 && GET_CODE (XEXP (mem, 0)) == PLUS
1649 && GET_CODE (XEXP (XEXP (mem, 0), 0)) == REG
1650 && GET_CODE (XEXP (XEXP (mem, 0), 1)) == REG)
1651 {
1652 rtx temp = gen_rtx_REG (SImode, TEMP_REGNO);
5c5e8419
JR
1653
1654 emit_move_insn (temp,
1655 gen_rtx_PLUS (SImode, XEXP (XEXP (mem, 0), 0),
1656 XEXP (XEXP (mem, 0), 1)));
8d8256c1
NC
1657 mem = gen_rtx_MEM (DImode, temp);
1658 }
1659 emit_insn (gen_rtx_SET (VOIDmode, reg, mem));
1660 }
c41c1387 1661 emit_use (reg);
36a05131
BS
1662 }
1663 else
1664 {
1665 if (SPR_P (REGNO (reg)))
1666 {
1667 rtx temp = gen_rtx_REG (mode, TEMP_REGNO);
1668 emit_insn (gen_rtx_SET (VOIDmode, temp, reg));
1669 frv_frame_insn (gen_rtx_SET (Pmode, mem, temp),
1670 frv_dwarf_store (reg, stack_offset));
1671 }
8d8256c1 1672 else if (mode == DImode)
36a05131
BS
1673 {
1674 /* For DImode saves, the dwarf2 version needs to be a SEQUENCE
1675 with a separate save for each register. */
1676 rtx reg1 = gen_rtx_REG (SImode, REGNO (reg));
1677 rtx reg2 = gen_rtx_REG (SImode, REGNO (reg) + 1);
1678 rtx set1 = frv_dwarf_store (reg1, stack_offset);
1679 rtx set2 = frv_dwarf_store (reg2, stack_offset + 4);
8d8256c1
NC
1680
1681 /* Also we cannot use reg+reg addressing. */
1682 if (GET_CODE (XEXP (mem, 0)) == PLUS
1683 && GET_CODE (XEXP (XEXP (mem, 0), 0)) == REG
1684 && GET_CODE (XEXP (XEXP (mem, 0), 1)) == REG)
1685 {
1686 rtx temp = gen_rtx_REG (SImode, TEMP_REGNO);
5c5e8419
JR
1687 emit_move_insn (temp,
1688 gen_rtx_PLUS (SImode, XEXP (XEXP (mem, 0), 0),
1689 XEXP (XEXP (mem, 0), 1)));
8d8256c1
NC
1690 mem = gen_rtx_MEM (DImode, temp);
1691 }
1692
36a05131
BS
1693 frv_frame_insn (gen_rtx_SET (Pmode, mem, reg),
1694 gen_rtx_PARALLEL (VOIDmode,
1695 gen_rtvec (2, set1, set2)));
1696 }
1697 else
1698 frv_frame_insn (gen_rtx_SET (Pmode, mem, reg),
1699 frv_dwarf_store (reg, stack_offset));
1700 }
1701}
1702
1703/* A function that uses frv_frame_access to transfer a group of registers to
1704 or from the stack. ACCESSOR is passed directly to frv_frame_access, INFO
1705 is the stack information generated by frv_stack_info, and REG_SET is the
1706 number of the register set to transfer. */
1707static void
f2206911
KC
1708frv_frame_access_multi (frv_frame_accessor_t *accessor,
1709 frv_stack_t *info,
1710 int reg_set)
36a05131
BS
1711{
1712 frv_stack_regs_t *regs_info;
1713 int regno;
1714
1715 regs_info = &info->regs[reg_set];
1716 for (regno = regs_info->first; regno <= regs_info->last; regno++)
1717 if (info->save_p[regno])
1718 frv_frame_access (accessor,
1719 info->save_p[regno] == REG_SAVE_2WORDS
1720 ? gen_rtx_REG (DImode, regno)
1721 : gen_rtx_REG (SImode, regno),
1722 info->reg_offset[regno]);
1723}
1724
1725/* Save or restore callee-saved registers that are kept outside the frame
1726 header. The function saves the registers if OP is FRV_STORE and restores
1727 them if OP is FRV_LOAD. INFO is the stack information generated by
1728 frv_stack_info. */
1729static void
f2206911 1730frv_frame_access_standard_regs (enum frv_stack_op op, frv_stack_t *info)
36a05131
BS
1731{
1732 frv_frame_accessor_t accessor;
1733
1734 accessor.op = op;
1735 accessor.base = stack_pointer_rtx;
1736 accessor.base_offset = 0;
1737 frv_frame_access_multi (&accessor, info, STACK_REGS_GPR);
1738 frv_frame_access_multi (&accessor, info, STACK_REGS_FPR);
1739 frv_frame_access_multi (&accessor, info, STACK_REGS_LCR);
b16c1435 1740}
36a05131
BS
1741
1742
1743/* Called after register allocation to add any instructions needed for the
1744 prologue. Using a prologue insn is favored compared to putting all of the
b88cf82e
KH
1745 instructions in the TARGET_ASM_FUNCTION_PROLOGUE target hook, since
1746 it allows the scheduler to intermix instructions with the saves of
1747 the caller saved registers. In some cases, it might be necessary
1748 to emit a barrier instruction as the last insn to prevent such
1749 scheduling.
36a05131
BS
1750
1751 Also any insns generated here should have RTX_FRAME_RELATED_P(insn) = 1
1752 so that the debug info generation code can handle them properly. */
1753void
f2206911 1754frv_expand_prologue (void)
36a05131
BS
1755{
1756 frv_stack_t *info = frv_stack_info ();
1757 rtx sp = stack_pointer_rtx;
1758 rtx fp = frame_pointer_rtx;
1759 frv_frame_accessor_t accessor;
1760
1761 if (TARGET_DEBUG_STACK)
1762 frv_debug_stack (info);
1763
1764 if (info->total_size == 0)
1765 return;
1766
1767 /* We're interested in three areas of the frame here:
1768
1769 A: the register save area
1770 B: the old FP
1771 C: the header after B
1772
1773 If the frame pointer isn't used, we'll have to set up A, B and C
1774 using the stack pointer. If the frame pointer is used, we'll access
1775 them as follows:
1776
1777 A: set up using sp
1778 B: set up using sp or a temporary (see below)
1779 C: set up using fp
1780
1781 We set up B using the stack pointer if the frame is small enough.
1782 Otherwise, it's more efficient to copy the old stack pointer into a
1783 temporary and use that.
1784
1785 Note that it's important to make sure the prologue and epilogue use the
1786 same registers to access A and C, since doing otherwise will confuse
1787 the aliasing code. */
1788
1789 /* Set up ACCESSOR for accessing region B above. If the frame pointer
1790 isn't used, the same method will serve for C. */
1791 accessor.op = FRV_STORE;
1792 if (frame_pointer_needed && info->total_size > 2048)
1793 {
36a05131
BS
1794 accessor.base = gen_rtx_REG (Pmode, OLD_SP_REGNO);
1795 accessor.base_offset = info->total_size;
5c5e8419 1796 emit_insn (gen_movsi (accessor.base, sp));
36a05131
BS
1797 }
1798 else
1799 {
1800 accessor.base = stack_pointer_rtx;
1801 accessor.base_offset = 0;
1802 }
1803
1804 /* Allocate the stack space. */
1805 {
1806 rtx asm_offset = frv_frame_offset_rtx (-info->total_size);
1807 rtx dwarf_offset = GEN_INT (-info->total_size);
1808
1809 frv_frame_insn (gen_stack_adjust (sp, sp, asm_offset),
1810 gen_rtx_SET (Pmode,
1811 sp,
1812 gen_rtx_PLUS (Pmode, sp, dwarf_offset)));
1813 }
1814
1815 /* If the frame pointer is needed, store the old one at (sp + FP_OFFSET)
1816 and point the new one to that location. */
1817 if (frame_pointer_needed)
1818 {
1819 int fp_offset = info->reg_offset[FRAME_POINTER_REGNUM];
1820
1821 /* ASM_SRC and DWARF_SRC both point to the frame header. ASM_SRC is
1822 based on ACCESSOR.BASE but DWARF_SRC is always based on the stack
1823 pointer. */
0a81f074 1824 rtx asm_src = plus_constant (Pmode, accessor.base,
36a05131 1825 fp_offset - accessor.base_offset);
0a81f074 1826 rtx dwarf_src = plus_constant (Pmode, sp, fp_offset);
36a05131
BS
1827
1828 /* Store the old frame pointer at (sp + FP_OFFSET). */
1829 frv_frame_access (&accessor, fp, fp_offset);
1830
1831 /* Set up the new frame pointer. */
1832 frv_frame_insn (gen_rtx_SET (VOIDmode, fp, asm_src),
1833 gen_rtx_SET (VOIDmode, fp, dwarf_src));
1834
1835 /* Access region C from the frame pointer. */
1836 accessor.base = fp;
1837 accessor.base_offset = fp_offset;
1838 }
1839
1840 /* Set up region C. */
1841 frv_frame_access_multi (&accessor, info, STACK_REGS_STRUCT);
1842 frv_frame_access_multi (&accessor, info, STACK_REGS_LR);
1843 frv_frame_access_multi (&accessor, info, STACK_REGS_STDARG);
1844
1845 /* Set up region A. */
1846 frv_frame_access_standard_regs (FRV_STORE, info);
1847
1848 /* If this is a varargs/stdarg function, issue a blockage to prevent the
1849 scheduler from moving loads before the stores saving the registers. */
1850 if (info->stdarg_size > 0)
1851 emit_insn (gen_blockage ());
1852
87b483a1 1853 /* Set up pic register/small data register for this function. */
ad516a74 1854 if (!TARGET_FDPIC && flag_pic && crtl->uses_pic_offset_table)
36a05131
BS
1855 emit_insn (gen_pic_prologue (gen_rtx_REG (Pmode, PIC_REGNO),
1856 gen_rtx_REG (Pmode, LR_REGNO),
1857 gen_rtx_REG (SImode, OFFSET_REGNO)));
1858}
1859
1860\f
1861/* Under frv, all of the work is done via frv_expand_epilogue, but
839a4992 1862 this function provides a convenient place to do cleanup. */
36a05131
BS
1863
1864static void
f2206911
KC
1865frv_function_epilogue (FILE *file ATTRIBUTE_UNUSED,
1866 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
36a05131
BS
1867{
1868 frv_stack_cache = (frv_stack_t *)0;
1869
87b483a1 1870 /* Zap last used registers for conditional execution. */
fad205ff 1871 memset (&frv_ifcvt.tmp_reg, 0, sizeof (frv_ifcvt.tmp_reg));
36a05131 1872
87b483a1 1873 /* Release the bitmap of created insns. */
7b210806 1874 BITMAP_FREE (frv_ifcvt.scratch_insns_bitmap);
36a05131
BS
1875}
1876
1877\f
1878/* Called after register allocation to add any instructions needed for the
43aa4e05 1879 epilogue. Using an epilogue insn is favored compared to putting all of the
b88cf82e
KH
1880 instructions in the TARGET_ASM_FUNCTION_PROLOGUE target hook, since
1881 it allows the scheduler to intermix instructions with the saves of
1882 the caller saved registers. In some cases, it might be necessary
1883 to emit a barrier instruction as the last insn to prevent such
c557edf4 1884 scheduling. */
36a05131
BS
1885
1886void
764678d1 1887frv_expand_epilogue (bool emit_return)
36a05131
BS
1888{
1889 frv_stack_t *info = frv_stack_info ();
1890 rtx fp = frame_pointer_rtx;
1891 rtx sp = stack_pointer_rtx;
1892 rtx return_addr;
1893 int fp_offset;
1894
1895 fp_offset = info->reg_offset[FRAME_POINTER_REGNUM];
1896
1897 /* Restore the stack pointer to its original value if alloca or the like
1898 is used. */
416ff32e 1899 if (! crtl->sp_is_unchanging)
36a05131
BS
1900 emit_insn (gen_addsi3 (sp, fp, frv_frame_offset_rtx (-fp_offset)));
1901
1902 /* Restore the callee-saved registers that were used in this function. */
1903 frv_frame_access_standard_regs (FRV_LOAD, info);
1904
1905 /* Set RETURN_ADDR to the address we should return to. Set it to NULL if
1906 no return instruction should be emitted. */
764678d1 1907 if (info->save_p[LR_REGNO])
36a05131
BS
1908 {
1909 int lr_offset;
1910 rtx mem;
1911
1912 /* Use the same method to access the link register's slot as we did in
1913 the prologue. In other words, use the frame pointer if available,
1914 otherwise use the stack pointer.
1915
1916 LR_OFFSET is the offset of the link register's slot from the start
1917 of the frame and MEM is a memory rtx for it. */
1918 lr_offset = info->reg_offset[LR_REGNO];
1919 if (frame_pointer_needed)
1920 mem = frv_frame_mem (Pmode, fp, lr_offset - fp_offset);
1921 else
1922 mem = frv_frame_mem (Pmode, sp, lr_offset);
1923
1924 /* Load the old link register into a GPR. */
1925 return_addr = gen_rtx_REG (Pmode, TEMP_REGNO);
1926 emit_insn (gen_rtx_SET (VOIDmode, return_addr, mem));
1927 }
1928 else
1929 return_addr = gen_rtx_REG (Pmode, LR_REGNO);
1930
1931 /* Restore the old frame pointer. Emit a USE afterwards to make sure
1932 the load is preserved. */
1933 if (frame_pointer_needed)
1934 {
1935 emit_insn (gen_rtx_SET (VOIDmode, fp, gen_rtx_MEM (Pmode, fp)));
c41c1387 1936 emit_use (fp);
36a05131
BS
1937 }
1938
1939 /* Deallocate the stack frame. */
1940 if (info->total_size != 0)
1941 {
1942 rtx offset = frv_frame_offset_rtx (info->total_size);
1943 emit_insn (gen_stack_adjust (sp, sp, offset));
1944 }
1945
1946 /* If this function uses eh_return, add the final stack adjustment now. */
e3b5732b 1947 if (crtl->calls_eh_return)
36a05131
BS
1948 emit_insn (gen_stack_adjust (sp, sp, EH_RETURN_STACKADJ_RTX));
1949
764678d1 1950 if (emit_return)
36a05131 1951 emit_jump_insn (gen_epilogue_return (return_addr));
764678d1
AO
1952 else
1953 {
1954 rtx lr = return_addr;
1955
1956 if (REGNO (return_addr) != LR_REGNO)
1957 {
1958 lr = gen_rtx_REG (Pmode, LR_REGNO);
1959 emit_move_insn (lr, return_addr);
1960 }
1961
c41c1387 1962 emit_use (lr);
764678d1 1963 }
36a05131
BS
1964}
1965
1966\f
b88cf82e 1967/* Worker function for TARGET_ASM_OUTPUT_MI_THUNK. */
36a05131 1968
c590b625 1969static void
f2206911
KC
1970frv_asm_output_mi_thunk (FILE *file,
1971 tree thunk_fndecl ATTRIBUTE_UNUSED,
1972 HOST_WIDE_INT delta,
1973 HOST_WIDE_INT vcall_offset ATTRIBUTE_UNUSED,
1974 tree function)
36a05131
BS
1975{
1976 const char *name_func = XSTR (XEXP (DECL_RTL (function), 0), 0);
1977 const char *name_arg0 = reg_names[FIRST_ARG_REGNUM];
1978 const char *name_jmp = reg_names[JUMP_REGNO];
c557edf4 1979 const char *parallel = (frv_issue_rate () > 1 ? ".p" : "");
36a05131 1980
87b483a1 1981 /* Do the add using an addi if possible. */
2f5b1308 1982 if (IN_RANGE (delta, -2048, 2047))
eb0424da 1983 fprintf (file, "\taddi %s,#%d,%s\n", name_arg0, (int) delta, name_arg0);
36a05131
BS
1984 else
1985 {
4a0a75dd
KG
1986 const char *const name_add = reg_names[TEMP_REGNO];
1987 fprintf (file, "\tsethi%s #hi(" HOST_WIDE_INT_PRINT_DEC "),%s\n",
1988 parallel, delta, name_add);
1989 fprintf (file, "\tsetlo #lo(" HOST_WIDE_INT_PRINT_DEC "),%s\n",
1990 delta, name_add);
36a05131
BS
1991 fprintf (file, "\tadd %s,%s,%s\n", name_add, name_arg0, name_arg0);
1992 }
1993
34208acf
AO
1994 if (TARGET_FDPIC)
1995 {
1996 const char *name_pic = reg_names[FDPIC_REGNO];
1997 name_jmp = reg_names[FDPIC_FPTR_REGNO];
1998
1999 if (flag_pic != 1)
2000 {
2001 fprintf (file, "\tsethi%s #gotofffuncdeschi(", parallel);
2002 assemble_name (file, name_func);
2003 fprintf (file, "),%s\n", name_jmp);
2004
2005 fprintf (file, "\tsetlo #gotofffuncdesclo(");
2006 assemble_name (file, name_func);
2007 fprintf (file, "),%s\n", name_jmp);
2008
2009 fprintf (file, "\tldd @(%s,%s), %s\n", name_jmp, name_pic, name_jmp);
2010 }
2011 else
2012 {
2013 fprintf (file, "\tlddo @(%s,#gotofffuncdesc12(", name_pic);
2014 assemble_name (file, name_func);
2015 fprintf (file, "\t)), %s\n", name_jmp);
2016 }
2017 }
2018 else if (!flag_pic)
36a05131
BS
2019 {
2020 fprintf (file, "\tsethi%s #hi(", parallel);
2021 assemble_name (file, name_func);
2022 fprintf (file, "),%s\n", name_jmp);
2023
2024 fprintf (file, "\tsetlo #lo(");
2025 assemble_name (file, name_func);
2026 fprintf (file, "),%s\n", name_jmp);
2027 }
2028 else
2029 {
2030 /* Use JUMP_REGNO as a temporary PIC register. */
2031 const char *name_lr = reg_names[LR_REGNO];
2032 const char *name_gppic = name_jmp;
2033 const char *name_tmp = reg_names[TEMP_REGNO];
2034
2035 fprintf (file, "\tmovsg %s,%s\n", name_lr, name_tmp);
2036 fprintf (file, "\tcall 1f\n");
2037 fprintf (file, "1:\tmovsg %s,%s\n", name_lr, name_gppic);
2038 fprintf (file, "\tmovgs %s,%s\n", name_tmp, name_lr);
2039 fprintf (file, "\tsethi%s #gprelhi(1b),%s\n", parallel, name_tmp);
2040 fprintf (file, "\tsetlo #gprello(1b),%s\n", name_tmp);
2041 fprintf (file, "\tsub %s,%s,%s\n", name_gppic, name_tmp, name_gppic);
2042
2043 fprintf (file, "\tsethi%s #gprelhi(", parallel);
2044 assemble_name (file, name_func);
2045 fprintf (file, "),%s\n", name_tmp);
2046
2047 fprintf (file, "\tsetlo #gprello(");
2048 assemble_name (file, name_func);
2049 fprintf (file, "),%s\n", name_tmp);
2050
2051 fprintf (file, "\tadd %s,%s,%s\n", name_gppic, name_tmp, name_jmp);
2052 }
2053
87b483a1 2054 /* Jump to the function address. */
36a05131
BS
2055 fprintf (file, "\tjmpl @(%s,%s)\n", name_jmp, reg_names[GPR_FIRST+0]);
2056}
2057
2058\f
36a05131 2059
87b483a1 2060/* On frv, create a frame whenever we need to create stack. */
36a05131 2061
b52b1749 2062static bool
f2206911 2063frv_frame_pointer_required (void)
36a05131 2064{
34208acf
AO
2065 /* If we forgoing the usual linkage requirements, we only need
2066 a frame pointer if the stack pointer might change. */
2067 if (!TARGET_LINKED_FP)
416ff32e 2068 return !crtl->sp_is_unchanging;
34208acf 2069
416ff32e 2070 if (! crtl->is_leaf)
b52b1749 2071 return true;
36a05131
BS
2072
2073 if (get_frame_size () != 0)
b52b1749 2074 return true;
36a05131
BS
2075
2076 if (cfun->stdarg)
b52b1749 2077 return true;
36a05131 2078
416ff32e 2079 if (!crtl->sp_is_unchanging)
b52b1749 2080 return true;
36a05131 2081
ad516a74 2082 if (!TARGET_FDPIC && flag_pic && crtl->uses_pic_offset_table)
b52b1749 2083 return true;
36a05131
BS
2084
2085 if (profile_flag)
b52b1749 2086 return true;
36a05131
BS
2087
2088 if (cfun->machine->frame_needed)
b52b1749 2089 return true;
36a05131 2090
b52b1749 2091 return false;
36a05131
BS
2092}
2093
2094\f
7b5cbb57
AS
2095/* Worker function for TARGET_CAN_ELIMINATE. */
2096
2097bool
2098frv_can_eliminate (const int from, const int to)
2099{
2100 return (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM
2101 ? ! frame_pointer_needed
2102 : true);
2103}
2104
36a05131
BS
2105/* This macro is similar to `INITIAL_FRAME_POINTER_OFFSET'. It specifies the
2106 initial difference between the specified pair of registers. This macro must
2107 be defined if `ELIMINABLE_REGS' is defined. */
2108
2109/* See frv_stack_info for more details on the frv stack frame. */
2110
2111int
f2206911 2112frv_initial_elimination_offset (int from, int to)
36a05131
BS
2113{
2114 frv_stack_t *info = frv_stack_info ();
2115 int ret = 0;
2116
2117 if (to == STACK_POINTER_REGNUM && from == ARG_POINTER_REGNUM)
2118 ret = info->total_size - info->pretend_size;
2119
2120 else if (to == STACK_POINTER_REGNUM && from == FRAME_POINTER_REGNUM)
88d6a75f 2121 ret = info->reg_offset[FRAME_POINTER_REGNUM];
36a05131
BS
2122
2123 else if (to == FRAME_POINTER_REGNUM && from == ARG_POINTER_REGNUM)
2124 ret = (info->total_size
2125 - info->reg_offset[FRAME_POINTER_REGNUM]
2126 - info->pretend_size);
2127
2128 else
44e91694 2129 gcc_unreachable ();
36a05131
BS
2130
2131 if (TARGET_DEBUG_STACK)
2132 fprintf (stderr, "Eliminate %s to %s by adding %d\n",
2133 reg_names [from], reg_names[to], ret);
2134
2135 return ret;
2136}
2137
2138\f
d8c2bed3 2139/* Worker function for TARGET_SETUP_INCOMING_VARARGS. */
36a05131 2140
d8c2bed3 2141static void
d5cc9181 2142frv_setup_incoming_varargs (cumulative_args_t cum_v,
f2206911
KC
2143 enum machine_mode mode,
2144 tree type ATTRIBUTE_UNUSED,
2145 int *pretend_size,
2146 int second_time)
36a05131 2147{
d5cc9181
JR
2148 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
2149
36a05131
BS
2150 if (TARGET_DEBUG_ARG)
2151 fprintf (stderr,
2152 "setup_vararg: words = %2d, mode = %4s, pretend_size = %d, second_time = %d\n",
2153 *cum, GET_MODE_NAME (mode), *pretend_size, second_time);
2154}
2155
2156\f
b88cf82e 2157/* Worker function for TARGET_EXPAND_BUILTIN_SAVEREGS. */
36a05131 2158
8ac411c7 2159static rtx
f2206911 2160frv_expand_builtin_saveregs (void)
36a05131
BS
2161{
2162 int offset = UNITS_PER_WORD * FRV_NUM_ARG_REGS;
2163
2164 if (TARGET_DEBUG_ARG)
2165 fprintf (stderr, "expand_builtin_saveregs: offset from ap = %d\n",
2166 offset);
2167
f1c25d3b 2168 return gen_rtx_PLUS (Pmode, virtual_incoming_args_rtx, GEN_INT (- offset));
36a05131
BS
2169}
2170
2171\f
2172/* Expand __builtin_va_start to do the va_start macro. */
2173
d7bd8aeb 2174static void
f2206911 2175frv_expand_builtin_va_start (tree valist, rtx nextarg)
36a05131
BS
2176{
2177 tree t;
7dd68986 2178 int num = crtl->args.info - FIRST_ARG_REGNUM - FRV_NUM_ARG_REGS;
36a05131
BS
2179
2180 nextarg = gen_rtx_PLUS (Pmode, virtual_incoming_args_rtx,
2181 GEN_INT (UNITS_PER_WORD * num));
2182
2183 if (TARGET_DEBUG_ARG)
2184 {
2185 fprintf (stderr, "va_start: args_info = %d, num = %d\n",
7dd68986 2186 crtl->args.info, num);
36a05131
BS
2187
2188 debug_rtx (nextarg);
2189 }
2190
726a989a 2191 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist,
5be014d5
AP
2192 fold_convert (TREE_TYPE (valist),
2193 make_tree (sizetype, nextarg)));
36a05131
BS
2194 TREE_SIDE_EFFECTS (t) = 1;
2195
2196 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
2197}
2198
36a05131
BS
2199\f
2200/* Expand a block move operation, and return 1 if successful. Return 0
2201 if we should let the compiler generate normal code.
2202
2203 operands[0] is the destination
2204 operands[1] is the source
2205 operands[2] is the length
2206 operands[3] is the alignment */
2207
2208/* Maximum number of loads to do before doing the stores */
2209#ifndef MAX_MOVE_REG
2210#define MAX_MOVE_REG 4
2211#endif
2212
2213/* Maximum number of total loads to do. */
2214#ifndef TOTAL_MOVE_REG
2215#define TOTAL_MOVE_REG 8
2216#endif
2217
2218int
f2206911 2219frv_expand_block_move (rtx operands[])
36a05131
BS
2220{
2221 rtx orig_dest = operands[0];
2222 rtx orig_src = operands[1];
2223 rtx bytes_rtx = operands[2];
2224 rtx align_rtx = operands[3];
2225 int constp = (GET_CODE (bytes_rtx) == CONST_INT);
2226 int align;
2227 int bytes;
2228 int offset;
2229 int num_reg;
2230 int i;
2231 rtx src_reg;
2232 rtx dest_reg;
2233 rtx src_addr;
2234 rtx dest_addr;
2235 rtx src_mem;
2236 rtx dest_mem;
2237 rtx tmp_reg;
2238 rtx stores[MAX_MOVE_REG];
2239 int move_bytes;
2240 enum machine_mode mode;
2241
87b483a1 2242 /* If this is not a fixed size move, just call memcpy. */
36a05131
BS
2243 if (! constp)
2244 return FALSE;
2245
44e91694
NS
2246 /* This should be a fixed size alignment. */
2247 gcc_assert (GET_CODE (align_rtx) == CONST_INT);
36a05131
BS
2248
2249 align = INTVAL (align_rtx);
2250
2251 /* Anything to move? */
2252 bytes = INTVAL (bytes_rtx);
2253 if (bytes <= 0)
2254 return TRUE;
2255
2256 /* Don't support real large moves. */
2257 if (bytes > TOTAL_MOVE_REG*align)
2258 return FALSE;
2259
2260 /* Move the address into scratch registers. */
2261 dest_reg = copy_addr_to_reg (XEXP (orig_dest, 0));
2262 src_reg = copy_addr_to_reg (XEXP (orig_src, 0));
2263
2264 num_reg = offset = 0;
2265 for ( ; bytes > 0; (bytes -= move_bytes), (offset += move_bytes))
2266 {
87b483a1 2267 /* Calculate the correct offset for src/dest. */
36a05131
BS
2268 if (offset == 0)
2269 {
2270 src_addr = src_reg;
2271 dest_addr = dest_reg;
2272 }
2273 else
2274 {
0a81f074
RS
2275 src_addr = plus_constant (Pmode, src_reg, offset);
2276 dest_addr = plus_constant (Pmode, dest_reg, offset);
36a05131
BS
2277 }
2278
2279 /* Generate the appropriate load and store, saving the stores
2280 for later. */
2281 if (bytes >= 4 && align >= 4)
2282 mode = SImode;
2283 else if (bytes >= 2 && align >= 2)
2284 mode = HImode;
2285 else
2286 mode = QImode;
2287
2288 move_bytes = GET_MODE_SIZE (mode);
2289 tmp_reg = gen_reg_rtx (mode);
2290 src_mem = change_address (orig_src, mode, src_addr);
2291 dest_mem = change_address (orig_dest, mode, dest_addr);
2292 emit_insn (gen_rtx_SET (VOIDmode, tmp_reg, src_mem));
2293 stores[num_reg++] = gen_rtx_SET (VOIDmode, dest_mem, tmp_reg);
2294
2295 if (num_reg >= MAX_MOVE_REG)
2296 {
2297 for (i = 0; i < num_reg; i++)
2298 emit_insn (stores[i]);
2299 num_reg = 0;
2300 }
2301 }
2302
2303 for (i = 0; i < num_reg; i++)
2304 emit_insn (stores[i]);
2305
2306 return TRUE;
2307}
2308
2309\f
2310/* Expand a block clear operation, and return 1 if successful. Return 0
2311 if we should let the compiler generate normal code.
2312
2313 operands[0] is the destination
2314 operands[1] is the length
57e84f18 2315 operands[3] is the alignment */
36a05131
BS
2316
2317int
f2206911 2318frv_expand_block_clear (rtx operands[])
36a05131
BS
2319{
2320 rtx orig_dest = operands[0];
2321 rtx bytes_rtx = operands[1];
57e84f18 2322 rtx align_rtx = operands[3];
36a05131
BS
2323 int constp = (GET_CODE (bytes_rtx) == CONST_INT);
2324 int align;
2325 int bytes;
2326 int offset;
36a05131
BS
2327 rtx dest_reg;
2328 rtx dest_addr;
2329 rtx dest_mem;
2330 int clear_bytes;
2331 enum machine_mode mode;
2332
87b483a1 2333 /* If this is not a fixed size move, just call memcpy. */
36a05131
BS
2334 if (! constp)
2335 return FALSE;
2336
44e91694
NS
2337 /* This should be a fixed size alignment. */
2338 gcc_assert (GET_CODE (align_rtx) == CONST_INT);
36a05131
BS
2339
2340 align = INTVAL (align_rtx);
2341
2342 /* Anything to move? */
2343 bytes = INTVAL (bytes_rtx);
2344 if (bytes <= 0)
2345 return TRUE;
2346
2347 /* Don't support real large clears. */
2348 if (bytes > TOTAL_MOVE_REG*align)
2349 return FALSE;
2350
2351 /* Move the address into a scratch register. */
2352 dest_reg = copy_addr_to_reg (XEXP (orig_dest, 0));
2353
5c5e8419 2354 offset = 0;
36a05131
BS
2355 for ( ; bytes > 0; (bytes -= clear_bytes), (offset += clear_bytes))
2356 {
87b483a1 2357 /* Calculate the correct offset for src/dest. */
36a05131
BS
2358 dest_addr = ((offset == 0)
2359 ? dest_reg
0a81f074 2360 : plus_constant (Pmode, dest_reg, offset));
36a05131 2361
87b483a1 2362 /* Generate the appropriate store of gr0. */
36a05131
BS
2363 if (bytes >= 4 && align >= 4)
2364 mode = SImode;
2365 else if (bytes >= 2 && align >= 2)
2366 mode = HImode;
2367 else
2368 mode = QImode;
2369
2370 clear_bytes = GET_MODE_SIZE (mode);
2371 dest_mem = change_address (orig_dest, mode, dest_addr);
2372 emit_insn (gen_rtx_SET (VOIDmode, dest_mem, const0_rtx));
2373 }
2374
2375 return TRUE;
2376}
2377
2378\f
2379/* The following variable is used to output modifiers of assembler
87b483a1 2380 code of the current output insn. */
36a05131
BS
2381
2382static rtx *frv_insn_operands;
2383
2384/* The following function is used to add assembler insn code suffix .p
87b483a1 2385 if it is necessary. */
36a05131
BS
2386
2387const char *
f2206911 2388frv_asm_output_opcode (FILE *f, const char *ptr)
36a05131
BS
2389{
2390 int c;
2391
c557edf4 2392 if (frv_insn_packing_flag <= 0)
36a05131
BS
2393 return ptr;
2394
2395 for (; *ptr && *ptr != ' ' && *ptr != '\t';)
2396 {
2397 c = *ptr++;
2398 if (c == '%' && ((*ptr >= 'a' && *ptr <= 'z')
2399 || (*ptr >= 'A' && *ptr <= 'Z')))
2400 {
2401 int letter = *ptr++;
2402
2403 c = atoi (ptr);
2404 frv_print_operand (f, frv_insn_operands [c], letter);
2405 while ((c = *ptr) >= '0' && c <= '9')
2406 ptr++;
2407 }
2408 else
2409 fputc (c, f);
2410 }
2411
c557edf4 2412 fprintf (f, ".p");
36a05131
BS
2413
2414 return ptr;
2415}
2416
c557edf4
RS
2417/* Set up the packing bit for the current output insn. Note that this
2418 function is not called for asm insns. */
36a05131
BS
2419
2420void
c557edf4
RS
2421frv_final_prescan_insn (rtx insn, rtx *opvec,
2422 int noperands ATTRIBUTE_UNUSED)
36a05131 2423{
c557edf4 2424 if (INSN_P (insn))
36a05131 2425 {
c557edf4
RS
2426 if (frv_insn_packing_flag >= 0)
2427 {
2428 frv_insn_operands = opvec;
2429 frv_insn_packing_flag = PACKING_FLAG_P (insn);
2430 }
2431 else if (recog_memoized (insn) >= 0
2432 && get_attr_acc_group (insn) == ACC_GROUP_ODD)
2433 /* Packing optimizations have been disabled, but INSN can only
2434 be issued in M1. Insert an mnop in M0. */
2435 fprintf (asm_out_file, "\tmnop.p\n");
36a05131 2436 }
36a05131
BS
2437}
2438
2439
2440\f
2441/* A C expression whose value is RTL representing the address in a stack frame
2442 where the pointer to the caller's frame is stored. Assume that FRAMEADDR is
2443 an RTL expression for the address of the stack frame itself.
2444
2445 If you don't define this macro, the default is to return the value of
2446 FRAMEADDR--that is, the stack frame address is also the address of the stack
2447 word that points to the previous frame. */
2448
2449/* The default is correct, but we need to make sure the frame gets created. */
2450rtx
f2206911 2451frv_dynamic_chain_address (rtx frame)
36a05131
BS
2452{
2453 cfun->machine->frame_needed = 1;
2454 return frame;
2455}
2456
2457
2458/* A C expression whose value is RTL representing the value of the return
2459 address for the frame COUNT steps up from the current frame, after the
2460 prologue. FRAMEADDR is the frame pointer of the COUNT frame, or the frame
2461 pointer of the COUNT - 1 frame if `RETURN_ADDR_IN_PREVIOUS_FRAME' is
2462 defined.
2463
2464 The value of the expression must always be the correct address when COUNT is
2465 zero, but may be `NULL_RTX' if there is not way to determine the return
2466 address of other frames. */
2467
2468rtx
34208acf 2469frv_return_addr_rtx (int count, rtx frame)
36a05131 2470{
34208acf
AO
2471 if (count != 0)
2472 return const0_rtx;
36a05131 2473 cfun->machine->frame_needed = 1;
0a81f074 2474 return gen_rtx_MEM (Pmode, plus_constant (Pmode, frame, 8));
36a05131
BS
2475}
2476
2477/* Given a memory reference MEMREF, interpret the referenced memory as
2478 an array of MODE values, and return a reference to the element
2479 specified by INDEX. Assume that any pre-modification implicit in
2480 MEMREF has already happened.
2481
2482 MEMREF must be a legitimate operand for modes larger than SImode.
c6c3dba9 2483 frv_legitimate_address_p forbids register+register addresses, which
36a05131
BS
2484 this function cannot handle. */
2485rtx
f2206911 2486frv_index_memory (rtx memref, enum machine_mode mode, int index)
36a05131
BS
2487{
2488 rtx base = XEXP (memref, 0);
2489 if (GET_CODE (base) == PRE_MODIFY)
2490 base = XEXP (base, 0);
2491 return change_address (memref, mode,
0a81f074
RS
2492 plus_constant (Pmode, base,
2493 index * GET_MODE_SIZE (mode)));
36a05131
BS
2494}
2495
2496\f
2497/* Print a memory address as an operand to reference that memory location. */
0fb30cb7 2498static void
f2206911 2499frv_print_operand_address (FILE * stream, rtx x)
36a05131
BS
2500{
2501 if (GET_CODE (x) == MEM)
2502 x = XEXP (x, 0);
2503
2504 switch (GET_CODE (x))
2505 {
2506 case REG:
2507 fputs (reg_names [ REGNO (x)], stream);
2508 return;
2509
2510 case CONST_INT:
2511 fprintf (stream, "%ld", (long) INTVAL (x));
2512 return;
2513
2514 case SYMBOL_REF:
2515 assemble_name (stream, XSTR (x, 0));
2516 return;
2517
2518 case LABEL_REF:
2519 case CONST:
2520 output_addr_const (stream, x);
2521 return;
2522
8d8256c1
NC
2523 case PLUS:
2524 /* Poorly constructed asm statements can trigger this alternative.
2525 See gcc/testsuite/gcc.dg/asm-4.c for an example. */
2526 frv_print_operand_memory_reference (stream, x, 0);
2527 return;
2528
36a05131
BS
2529 default:
2530 break;
2531 }
2532
ab532386 2533 fatal_insn ("bad insn to frv_print_operand_address:", x);
36a05131
BS
2534}
2535
2536\f
2537static void
f2206911 2538frv_print_operand_memory_reference_reg (FILE * stream, rtx x)
36a05131
BS
2539{
2540 int regno = true_regnum (x);
2541 if (GPR_P (regno))
2542 fputs (reg_names[regno], stream);
2543 else
ab532386 2544 fatal_insn ("bad register to frv_print_operand_memory_reference_reg:", x);
36a05131
BS
2545}
2546
2547/* Print a memory reference suitable for the ld/st instructions. */
2548
2549static void
f2206911 2550frv_print_operand_memory_reference (FILE * stream, rtx x, int addr_offset)
36a05131 2551{
34208acf 2552 struct frv_unspec unspec;
36a05131
BS
2553 rtx x0 = NULL_RTX;
2554 rtx x1 = NULL_RTX;
2555
2556 switch (GET_CODE (x))
2557 {
2558 case SUBREG:
2559 case REG:
2560 x0 = x;
2561 break;
2562
2563 case PRE_MODIFY: /* (pre_modify (reg) (plus (reg) (reg))) */
2564 x0 = XEXP (x, 0);
2565 x1 = XEXP (XEXP (x, 1), 1);
2566 break;
2567
2568 case CONST_INT:
2569 x1 = x;
2570 break;
2571
2572 case PLUS:
2573 x0 = XEXP (x, 0);
2574 x1 = XEXP (x, 1);
2575 if (GET_CODE (x0) == CONST_INT)
2576 {
2577 x0 = XEXP (x, 1);
2578 x1 = XEXP (x, 0);
2579 }
2580 break;
2581
2582 default:
ab532386 2583 fatal_insn ("bad insn to frv_print_operand_memory_reference:", x);
36a05131
BS
2584 break;
2585
2586 }
2587
2588 if (addr_offset)
2589 {
2590 if (!x1)
2591 x1 = const0_rtx;
2592 else if (GET_CODE (x1) != CONST_INT)
ab532386 2593 fatal_insn ("bad insn to frv_print_operand_memory_reference:", x);
36a05131
BS
2594 }
2595
2596 fputs ("@(", stream);
2597 if (!x0)
2598 fputs (reg_names[GPR_R0], stream);
2599 else if (GET_CODE (x0) == REG || GET_CODE (x0) == SUBREG)
2600 frv_print_operand_memory_reference_reg (stream, x0);
2601 else
ab532386 2602 fatal_insn ("bad insn to frv_print_operand_memory_reference:", x);
36a05131
BS
2603
2604 fputs (",", stream);
2605 if (!x1)
2606 fputs (reg_names [GPR_R0], stream);
2607
2608 else
2609 {
2610 switch (GET_CODE (x1))
2611 {
2612 case SUBREG:
2613 case REG:
2614 frv_print_operand_memory_reference_reg (stream, x1);
2615 break;
2616
2617 case CONST_INT:
2618 fprintf (stream, "%ld", (long) (INTVAL (x1) + addr_offset));
2619 break;
2620
36a05131 2621 case CONST:
34208acf 2622 if (!frv_const_unspec_p (x1, &unspec))
ab532386 2623 fatal_insn ("bad insn to frv_print_operand_memory_reference:", x1);
34208acf 2624 frv_output_const_unspec (stream, &unspec);
36a05131
BS
2625 break;
2626
2627 default:
ab532386 2628 fatal_insn ("bad insn to frv_print_operand_memory_reference:", x);
36a05131
BS
2629 }
2630 }
2631
2632 fputs (")", stream);
2633}
2634
2635\f
2636/* Return 2 for likely branches and 0 for non-likely branches */
2637
2638#define FRV_JUMP_LIKELY 2
2639#define FRV_JUMP_NOT_LIKELY 0
2640
2641static int
f2206911 2642frv_print_operand_jump_hint (rtx insn)
36a05131
BS
2643{
2644 rtx note;
2645 rtx labelref;
2646 int ret;
2647 HOST_WIDE_INT prob = -1;
2648 enum { UNKNOWN, BACKWARD, FORWARD } jump_type = UNKNOWN;
2649
44e91694 2650 gcc_assert (GET_CODE (insn) == JUMP_INSN);
36a05131
BS
2651
2652 /* Assume any non-conditional jump is likely. */
2653 if (! any_condjump_p (insn))
2654 ret = FRV_JUMP_LIKELY;
2655
2656 else
2657 {
2658 labelref = condjump_label (insn);
2659 if (labelref)
2660 {
2661 rtx label = XEXP (labelref, 0);
2662 jump_type = (insn_current_address > INSN_ADDRESSES (INSN_UID (label))
2663 ? BACKWARD
2664 : FORWARD);
2665 }
2666
2667 note = find_reg_note (insn, REG_BR_PROB, 0);
2668 if (!note)
2669 ret = ((jump_type == BACKWARD) ? FRV_JUMP_LIKELY : FRV_JUMP_NOT_LIKELY);
2670
2671 else
2672 {
2673 prob = INTVAL (XEXP (note, 0));
2674 ret = ((prob >= (REG_BR_PROB_BASE / 2))
2675 ? FRV_JUMP_LIKELY
2676 : FRV_JUMP_NOT_LIKELY);
2677 }
2678 }
2679
2680#if 0
2681 if (TARGET_DEBUG)
2682 {
2683 char *direction;
2684
2685 switch (jump_type)
2686 {
2687 default:
2688 case UNKNOWN: direction = "unknown jump direction"; break;
2689 case BACKWARD: direction = "jump backward"; break;
2690 case FORWARD: direction = "jump forward"; break;
2691 }
2692
2693 fprintf (stderr,
2694 "%s: uid %ld, %s, probability = %ld, max prob. = %ld, hint = %d\n",
2695 IDENTIFIER_POINTER (DECL_NAME (current_function_decl)),
2696 (long)INSN_UID (insn), direction, (long)prob,
2697 (long)REG_BR_PROB_BASE, ret);
2698 }
2699#endif
2700
2701 return ret;
2702}
2703
2704\f
036ff63f
RS
2705/* Return the comparison operator to use for CODE given that the ICC
2706 register is OP0. */
2707
2708static const char *
2709comparison_string (enum rtx_code code, rtx op0)
2710{
2711 bool is_nz_p = GET_MODE (op0) == CC_NZmode;
2712 switch (code)
2713 {
2714 default: output_operand_lossage ("bad condition code");
2715 case EQ: return "eq";
2716 case NE: return "ne";
2717 case LT: return is_nz_p ? "n" : "lt";
2718 case LE: return "le";
2719 case GT: return "gt";
2720 case GE: return is_nz_p ? "p" : "ge";
2721 case LTU: return is_nz_p ? "no" : "c";
2722 case LEU: return is_nz_p ? "eq" : "ls";
2723 case GTU: return is_nz_p ? "ne" : "hi";
2724 case GEU: return is_nz_p ? "ra" : "nc";
2725 }
2726}
2727
43aa4e05 2728/* Print an operand to an assembler instruction.
36a05131
BS
2729
2730 `%' followed by a letter and a digit says to output an operand in an
0fb30cb7
NF
2731 alternate fashion. Four letters have standard, built-in meanings
2732 described below. The hook `TARGET_PRINT_OPERAND' can define
2733 additional letters with nonstandard meanings.
36a05131
BS
2734
2735 `%cDIGIT' can be used to substitute an operand that is a constant value
2736 without the syntax that normally indicates an immediate operand.
2737
2738 `%nDIGIT' is like `%cDIGIT' except that the value of the constant is negated
2739 before printing.
2740
2741 `%aDIGIT' can be used to substitute an operand as if it were a memory
2742 reference, with the actual operand treated as the address. This may be
2743 useful when outputting a "load address" instruction, because often the
2744 assembler syntax for such an instruction requires you to write the operand
2745 as if it were a memory reference.
2746
2747 `%lDIGIT' is used to substitute a `label_ref' into a jump instruction.
2748
2749 `%=' outputs a number which is unique to each instruction in the entire
2750 compilation. This is useful for making local labels to be referred to more
2751 than once in a single template that generates multiple assembler
2752 instructions.
2753
0fb30cb7
NF
2754 `%' followed by a punctuation character specifies a substitution that
2755 does not use an operand. Only one case is standard: `%%' outputs a
2756 `%' into the assembler code. Other nonstandard cases can be defined
2757 in the `TARGET_PRINT_OPERAND' hook. You must also define which
2758 punctuation characters are valid with the
2759 `TARGET_PRINT_OPERAND_PUNCT_VALID_P' hook. */
36a05131 2760
0fb30cb7 2761static void
f2206911 2762frv_print_operand (FILE * file, rtx x, int code)
36a05131 2763{
34208acf 2764 struct frv_unspec unspec;
36a05131
BS
2765 HOST_WIDE_INT value;
2766 int offset;
2767
0a2aaacc 2768 if (code != 0 && !ISALPHA (code))
36a05131
BS
2769 value = 0;
2770
2771 else if (GET_CODE (x) == CONST_INT)
2772 value = INTVAL (x);
2773
2774 else if (GET_CODE (x) == CONST_DOUBLE)
2775 {
2776 if (GET_MODE (x) == SFmode)
2777 {
2778 REAL_VALUE_TYPE rv;
2779 long l;
2780
2781 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
2782 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
2783 value = l;
2784 }
2785
2786 else if (GET_MODE (x) == VOIDmode)
2787 value = CONST_DOUBLE_LOW (x);
2788
2789 else
ab532386 2790 fatal_insn ("bad insn in frv_print_operand, bad const_double", x);
36a05131
BS
2791 }
2792
2793 else
2794 value = 0;
2795
2796 switch (code)
2797 {
2798
2799 case '.':
87b483a1 2800 /* Output r0. */
36a05131
BS
2801 fputs (reg_names[GPR_R0], file);
2802 break;
2803
2804 case '#':
2805 fprintf (file, "%d", frv_print_operand_jump_hint (current_output_insn));
2806 break;
2807
0f6e5d45 2808 case '@':
87b483a1 2809 /* Output small data area base register (gr16). */
36a05131
BS
2810 fputs (reg_names[SDA_BASE_REG], file);
2811 break;
2812
2813 case '~':
87b483a1 2814 /* Output pic register (gr17). */
36a05131
BS
2815 fputs (reg_names[PIC_REGNO], file);
2816 break;
2817
2818 case '*':
87b483a1 2819 /* Output the temporary integer CCR register. */
36a05131
BS
2820 fputs (reg_names[ICR_TEMP], file);
2821 break;
2822
2823 case '&':
87b483a1 2824 /* Output the temporary integer CC register. */
36a05131
BS
2825 fputs (reg_names[ICC_TEMP], file);
2826 break;
2827
87b483a1 2828 /* case 'a': print an address. */
36a05131
BS
2829
2830 case 'C':
87b483a1 2831 /* Print appropriate test for integer branch false operation. */
036ff63f
RS
2832 fputs (comparison_string (reverse_condition (GET_CODE (x)),
2833 XEXP (x, 0)), file);
36a05131
BS
2834 break;
2835
36a05131 2836 case 'c':
87b483a1 2837 /* Print appropriate test for integer branch true operation. */
036ff63f 2838 fputs (comparison_string (GET_CODE (x), XEXP (x, 0)), file);
36a05131
BS
2839 break;
2840
2841 case 'e':
2842 /* Print 1 for a NE and 0 for an EQ to give the final argument
2843 for a conditional instruction. */
2844 if (GET_CODE (x) == NE)
2845 fputs ("1", file);
2846
2847 else if (GET_CODE (x) == EQ)
2848 fputs ("0", file);
2849
2850 else
ab532386 2851 fatal_insn ("bad insn to frv_print_operand, 'e' modifier:", x);
36a05131
BS
2852 break;
2853
2854 case 'F':
87b483a1 2855 /* Print appropriate test for floating point branch false operation. */
36a05131
BS
2856 switch (GET_CODE (x))
2857 {
2858 default:
ab532386 2859 fatal_insn ("bad insn to frv_print_operand, 'F' modifier:", x);
36a05131
BS
2860
2861 case EQ: fputs ("ne", file); break;
2862 case NE: fputs ("eq", file); break;
2863 case LT: fputs ("uge", file); break;
2864 case LE: fputs ("ug", file); break;
2865 case GT: fputs ("ule", file); break;
2866 case GE: fputs ("ul", file); break;
2867 }
2868 break;
2869
2870 case 'f':
87b483a1 2871 /* Print appropriate test for floating point branch true operation. */
36a05131
BS
2872 switch (GET_CODE (x))
2873 {
2874 default:
ab532386 2875 fatal_insn ("bad insn to frv_print_operand, 'f' modifier:", x);
36a05131
BS
2876
2877 case EQ: fputs ("eq", file); break;
2878 case NE: fputs ("ne", file); break;
2879 case LT: fputs ("lt", file); break;
2880 case LE: fputs ("le", file); break;
2881 case GT: fputs ("gt", file); break;
2882 case GE: fputs ("ge", file); break;
2883 }
2884 break;
2885
34208acf
AO
2886 case 'g':
2887 /* Print appropriate GOT function. */
2888 if (GET_CODE (x) != CONST_INT)
ab532386 2889 fatal_insn ("bad insn to frv_print_operand, 'g' modifier:", x);
34208acf
AO
2890 fputs (unspec_got_name (INTVAL (x)), file);
2891 break;
2892
36a05131
BS
2893 case 'I':
2894 /* Print 'i' if the operand is a constant, or is a memory reference that
87b483a1 2895 adds a constant. */
36a05131
BS
2896 if (GET_CODE (x) == MEM)
2897 x = ((GET_CODE (XEXP (x, 0)) == PLUS)
2898 ? XEXP (XEXP (x, 0), 1)
2899 : XEXP (x, 0));
34208acf
AO
2900 else if (GET_CODE (x) == PLUS)
2901 x = XEXP (x, 1);
36a05131
BS
2902
2903 switch (GET_CODE (x))
2904 {
2905 default:
2906 break;
2907
2908 case CONST_INT:
2909 case SYMBOL_REF:
2910 case CONST:
2911 fputs ("i", file);
2912 break;
2913 }
2914 break;
2915
2916 case 'i':
2917 /* For jump instructions, print 'i' if the operand is a constant or
87b483a1 2918 is an expression that adds a constant. */
36a05131
BS
2919 if (GET_CODE (x) == CONST_INT)
2920 fputs ("i", file);
2921
2922 else
2923 {
2924 if (GET_CODE (x) == CONST_INT
2925 || (GET_CODE (x) == PLUS
2926 && (GET_CODE (XEXP (x, 1)) == CONST_INT
2927 || GET_CODE (XEXP (x, 0)) == CONST_INT)))
2928 fputs ("i", file);
2929 }
2930 break;
2931
2932 case 'L':
2933 /* Print the lower register of a double word register pair */
2934 if (GET_CODE (x) == REG)
2935 fputs (reg_names[ REGNO (x)+1 ], file);
2936 else
ab532386 2937 fatal_insn ("bad insn to frv_print_operand, 'L' modifier:", x);
36a05131
BS
2938 break;
2939
87b483a1 2940 /* case 'l': print a LABEL_REF. */
36a05131
BS
2941
2942 case 'M':
2943 case 'N':
2944 /* Print a memory reference for ld/st/jmp, %N prints a memory reference
2945 for the second word of double memory operations. */
2946 offset = (code == 'M') ? 0 : UNITS_PER_WORD;
2947 switch (GET_CODE (x))
2948 {
2949 default:
ab532386 2950 fatal_insn ("bad insn to frv_print_operand, 'M/N' modifier:", x);
36a05131
BS
2951
2952 case MEM:
2953 frv_print_operand_memory_reference (file, XEXP (x, 0), offset);
2954 break;
2955
2956 case REG:
2957 case SUBREG:
2958 case CONST_INT:
2959 case PLUS:
2960 case SYMBOL_REF:
2961 frv_print_operand_memory_reference (file, x, offset);
2962 break;
2963 }
2964 break;
2965
2966 case 'O':
2967 /* Print the opcode of a command. */
2968 switch (GET_CODE (x))
2969 {
2970 default:
ab532386 2971 fatal_insn ("bad insn to frv_print_operand, 'O' modifier:", x);
36a05131
BS
2972
2973 case PLUS: fputs ("add", file); break;
2974 case MINUS: fputs ("sub", file); break;
2975 case AND: fputs ("and", file); break;
2976 case IOR: fputs ("or", file); break;
2977 case XOR: fputs ("xor", file); break;
2978 case ASHIFT: fputs ("sll", file); break;
2979 case ASHIFTRT: fputs ("sra", file); break;
2980 case LSHIFTRT: fputs ("srl", file); break;
2981 }
2982 break;
2983
87b483a1 2984 /* case 'n': negate and print a constant int. */
36a05131
BS
2985
2986 case 'P':
2987 /* Print PIC label using operand as the number. */
2988 if (GET_CODE (x) != CONST_INT)
ab532386 2989 fatal_insn ("bad insn to frv_print_operand, P modifier:", x);
36a05131
BS
2990
2991 fprintf (file, ".LCF%ld", (long)INTVAL (x));
2992 break;
2993
2994 case 'U':
87b483a1 2995 /* Print 'u' if the operand is a update load/store. */
36a05131
BS
2996 if (GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
2997 fputs ("u", file);
2998 break;
2999
3000 case 'z':
87b483a1 3001 /* If value is 0, print gr0, otherwise it must be a register. */
36a05131
BS
3002 if (GET_CODE (x) == CONST_INT && INTVAL (x) == 0)
3003 fputs (reg_names[GPR_R0], file);
3004
3005 else if (GET_CODE (x) == REG)
3006 fputs (reg_names [REGNO (x)], file);
3007
3008 else
ab532386 3009 fatal_insn ("bad insn in frv_print_operand, z case", x);
36a05131
BS
3010 break;
3011
3012 case 'x':
87b483a1 3013 /* Print constant in hex. */
36a05131
BS
3014 if (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE)
3015 {
3016 fprintf (file, "%s0x%.4lx", IMMEDIATE_PREFIX, (long) value);
3017 break;
3018 }
3019
87b483a1 3020 /* Fall through. */
36a05131
BS
3021
3022 case '\0':
3023 if (GET_CODE (x) == REG)
3024 fputs (reg_names [REGNO (x)], file);
3025
3026 else if (GET_CODE (x) == CONST_INT
3027 || GET_CODE (x) == CONST_DOUBLE)
3028 fprintf (file, "%s%ld", IMMEDIATE_PREFIX, (long) value);
3029
34208acf
AO
3030 else if (frv_const_unspec_p (x, &unspec))
3031 frv_output_const_unspec (file, &unspec);
3032
36a05131
BS
3033 else if (GET_CODE (x) == MEM)
3034 frv_print_operand_address (file, XEXP (x, 0));
3035
3036 else if (CONSTANT_ADDRESS_P (x))
3037 frv_print_operand_address (file, x);
3038
3039 else
ab532386 3040 fatal_insn ("bad insn in frv_print_operand, 0 case", x);
36a05131
BS
3041
3042 break;
3043
3044 default:
3045 fatal_insn ("frv_print_operand: unknown code", x);
3046 break;
3047 }
3048
3049 return;
3050}
3051
0fb30cb7
NF
3052static bool
3053frv_print_operand_punct_valid_p (unsigned char code)
3054{
3055 return (code == '.' || code == '#' || code == '@' || code == '~'
3056 || code == '*' || code == '&');
3057}
3058
36a05131
BS
3059\f
3060/* A C statement (sans semicolon) for initializing the variable CUM for the
3061 state at the beginning of the argument list. The variable has type
3062 `CUMULATIVE_ARGS'. The value of FNTYPE is the tree node for the data type
3063 of the function which will receive the args, or 0 if the args are to a
3064 compiler support library function. The value of INDIRECT is nonzero when
3065 processing an indirect call, for example a call through a function pointer.
3066 The value of INDIRECT is zero for a call to an explicitly named function, a
3067 library function call, or when `INIT_CUMULATIVE_ARGS' is used to find
3068 arguments for the function being compiled.
3069
3070 When processing a call to a compiler support library function, LIBNAME
3071 identifies which one. It is a `symbol_ref' rtx which contains the name of
3072 the function, as a string. LIBNAME is 0 when an ordinary C function call is
3073 being processed. Thus, each time this macro is called, either LIBNAME or
3074 FNTYPE is nonzero, but never both of them at once. */
3075
3076void
f2206911
KC
3077frv_init_cumulative_args (CUMULATIVE_ARGS *cum,
3078 tree fntype,
3079 rtx libname,
3080 tree fndecl,
3081 int incoming)
36a05131
BS
3082{
3083 *cum = FIRST_ARG_REGNUM;
3084
3085 if (TARGET_DEBUG_ARG)
3086 {
3087 fprintf (stderr, "\ninit_cumulative_args:");
563a317a 3088 if (!fndecl && fntype)
36a05131
BS
3089 fputs (" indirect", stderr);
3090
3091 if (incoming)
3092 fputs (" incoming", stderr);
3093
3094 if (fntype)
3095 {
3096 tree ret_type = TREE_TYPE (fntype);
3097 fprintf (stderr, " return=%s,",
3098 tree_code_name[ (int)TREE_CODE (ret_type) ]);
3099 }
3100
3101 if (libname && GET_CODE (libname) == SYMBOL_REF)
3102 fprintf (stderr, " libname=%s", XSTR (libname, 0));
3103
3104 if (cfun->returns_struct)
3105 fprintf (stderr, " return-struct");
3106
3107 putc ('\n', stderr);
3108 }
3109}
3110
3111\f
fe984136
RH
3112/* Return true if we should pass an argument on the stack rather than
3113 in registers. */
3114
3115static bool
586de218 3116frv_must_pass_in_stack (enum machine_mode mode, const_tree type)
fe984136
RH
3117{
3118 if (mode == BLKmode)
3119 return true;
3120 if (type == NULL)
3121 return false;
3122 return AGGREGATE_TYPE_P (type);
3123}
3124
36a05131
BS
3125/* If defined, a C expression that gives the alignment boundary, in bits, of an
3126 argument with the specified mode and type. If it is not defined,
3127 `PARM_BOUNDARY' is used for all arguments. */
3128
c2ed6cf8 3129static unsigned int
f2206911 3130frv_function_arg_boundary (enum machine_mode mode ATTRIBUTE_UNUSED,
c2ed6cf8 3131 const_tree type ATTRIBUTE_UNUSED)
36a05131
BS
3132{
3133 return BITS_PER_WORD;
3134}
3135
88a1f47f 3136static rtx
d5cc9181 3137frv_function_arg_1 (cumulative_args_t cum_v, enum machine_mode mode,
88a1f47f
NF
3138 const_tree type ATTRIBUTE_UNUSED, bool named,
3139 bool incoming ATTRIBUTE_UNUSED)
36a05131 3140{
d5cc9181
JR
3141 const CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
3142
36a05131
BS
3143 enum machine_mode xmode = (mode == BLKmode) ? SImode : mode;
3144 int arg_num = *cum;
3145 rtx ret;
3146 const char *debstr;
3147
3148 /* Return a marker for use in the call instruction. */
3149 if (xmode == VOIDmode)
3150 {
3151 ret = const0_rtx;
3152 debstr = "<0>";
3153 }
3154
3155 else if (arg_num <= LAST_ARG_REGNUM)
3156 {
f1c25d3b 3157 ret = gen_rtx_REG (xmode, arg_num);
36a05131
BS
3158 debstr = reg_names[arg_num];
3159 }
3160
3161 else
3162 {
3163 ret = NULL_RTX;
3164 debstr = "memory";
3165 }
3166
3167 if (TARGET_DEBUG_ARG)
3168 fprintf (stderr,
3169 "function_arg: words = %2d, mode = %4s, named = %d, size = %3d, arg = %s\n",
3170 arg_num, GET_MODE_NAME (mode), named, GET_MODE_SIZE (mode), debstr);
3171
3172 return ret;
3173}
3174
88a1f47f 3175static rtx
d5cc9181 3176frv_function_arg (cumulative_args_t cum, enum machine_mode mode,
88a1f47f
NF
3177 const_tree type, bool named)
3178{
3179 return frv_function_arg_1 (cum, mode, type, named, false);
3180}
3181
3182static rtx
d5cc9181 3183frv_function_incoming_arg (cumulative_args_t cum, enum machine_mode mode,
88a1f47f
NF
3184 const_tree type, bool named)
3185{
3186 return frv_function_arg_1 (cum, mode, type, named, true);
3187}
3188
36a05131
BS
3189\f
3190/* A C statement (sans semicolon) to update the summarizer variable CUM to
3191 advance past an argument in the argument list. The values MODE, TYPE and
3192 NAMED describe that argument. Once this is done, the variable CUM is
3193 suitable for analyzing the *following* argument with `FUNCTION_ARG', etc.
3194
3195 This macro need not do anything if the argument in question was passed on
3196 the stack. The compiler knows how to track the amount of stack space used
3197 for arguments without any special help. */
3198
88a1f47f 3199static void
d5cc9181 3200frv_function_arg_advance (cumulative_args_t cum_v,
f2206911 3201 enum machine_mode mode,
88a1f47f
NF
3202 const_tree type ATTRIBUTE_UNUSED,
3203 bool named)
36a05131 3204{
d5cc9181
JR
3205 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
3206
36a05131
BS
3207 enum machine_mode xmode = (mode == BLKmode) ? SImode : mode;
3208 int bytes = GET_MODE_SIZE (xmode);
3209 int words = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3210 int arg_num = *cum;
3211
3212 *cum = arg_num + words;
3213
3214 if (TARGET_DEBUG_ARG)
3215 fprintf (stderr,
3216 "function_adv: words = %2d, mode = %4s, named = %d, size = %3d\n",
3217 arg_num, GET_MODE_NAME (mode), named, words * UNITS_PER_WORD);
3218}
3219
3220\f
3221/* A C expression for the number of words, at the beginning of an argument,
3222 must be put in registers. The value must be zero for arguments that are
3223 passed entirely in registers or that are entirely pushed on the stack.
3224
3225 On some machines, certain arguments must be passed partially in registers
3226 and partially in memory. On these machines, typically the first N words of
3227 arguments are passed in registers, and the rest on the stack. If a
3228 multi-word argument (a `double' or a structure) crosses that boundary, its
3229 first few words must be passed in registers and the rest must be pushed.
3230 This macro tells the compiler when this occurs, and how many of the words
3231 should go in registers.
3232
3233 `FUNCTION_ARG' for these arguments should return the first register to be
3234 used by the caller for this argument; likewise `FUNCTION_INCOMING_ARG', for
3235 the called function. */
3236
78a52f11 3237static int
d5cc9181 3238frv_arg_partial_bytes (cumulative_args_t cum, enum machine_mode mode,
78a52f11 3239 tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
36a05131 3240{
d5cc9181 3241
36a05131
BS
3242 enum machine_mode xmode = (mode == BLKmode) ? SImode : mode;
3243 int bytes = GET_MODE_SIZE (xmode);
3244 int words = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
d5cc9181 3245 int arg_num = *get_cumulative_args (cum);
36a05131
BS
3246 int ret;
3247
3248 ret = ((arg_num <= LAST_ARG_REGNUM && arg_num + words > LAST_ARG_REGNUM+1)
3249 ? LAST_ARG_REGNUM - arg_num + 1
3250 : 0);
78a52f11 3251 ret *= UNITS_PER_WORD;
36a05131
BS
3252
3253 if (TARGET_DEBUG_ARG && ret)
78a52f11 3254 fprintf (stderr, "frv_arg_partial_bytes: %d\n", ret);
36a05131
BS
3255
3256 return ret;
36a05131
BS
3257}
3258
219d92a4
AS
3259\f
3260/* Implements TARGET_FUNCTION_VALUE. */
3261
3262static rtx
3263frv_function_value (const_tree valtype,
3264 const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
3265 bool outgoing ATTRIBUTE_UNUSED)
3266{
3267 return gen_rtx_REG (TYPE_MODE (valtype), RETURN_VALUE_REGNUM);
3268}
3269
3270\f
3271/* Implements TARGET_LIBCALL_VALUE. */
3272
3273static rtx
3274frv_libcall_value (enum machine_mode mode,
3275 const_rtx fun ATTRIBUTE_UNUSED)
3276{
3277 return gen_rtx_REG (mode, RETURN_VALUE_REGNUM);
3278}
3279
3280\f
3281/* Implements FUNCTION_VALUE_REGNO_P. */
3282
3283bool
3284frv_function_value_regno_p (const unsigned int regno)
3285{
3286 return (regno == RETURN_VALUE_REGNUM);
3287}
36a05131
BS
3288\f
3289/* Return true if a register is ok to use as a base or index register. */
3290
3291static FRV_INLINE int
f2206911 3292frv_regno_ok_for_base_p (int regno, int strict_p)
36a05131
BS
3293{
3294 if (GPR_P (regno))
3295 return TRUE;
3296
3297 if (strict_p)
3298 return (reg_renumber[regno] >= 0 && GPR_P (reg_renumber[regno]));
3299
3300 if (regno == ARG_POINTER_REGNUM)
3301 return TRUE;
3302
3303 return (regno >= FIRST_PSEUDO_REGISTER);
3304}
3305
3306\f
3307/* A C compound statement with a conditional `goto LABEL;' executed if X (an
3308 RTX) is a legitimate memory address on the target machine for a memory
3309 operand of mode MODE.
3310
3311 It usually pays to define several simpler macros to serve as subroutines for
3312 this one. Otherwise it may be too complicated to understand.
3313
3314 This macro must exist in two variants: a strict variant and a non-strict
3315 one. The strict variant is used in the reload pass. It must be defined so
3316 that any pseudo-register that has not been allocated a hard register is
3317 considered a memory reference. In contexts where some kind of register is
3318 required, a pseudo-register with no hard register must be rejected.
3319
3320 The non-strict variant is used in other passes. It must be defined to
3321 accept all pseudo-registers in every context where some kind of register is
3322 required.
3323
3324 Compiler source files that want to use the strict variant of this macro
3325 define the macro `REG_OK_STRICT'. You should use an `#ifdef REG_OK_STRICT'
3326 conditional to define the strict variant in that case and the non-strict
3327 variant otherwise.
3328
36a05131
BS
3329 Normally, constant addresses which are the sum of a `symbol_ref' and an
3330 integer are stored inside a `const' RTX to mark them as constant.
3331 Therefore, there is no need to recognize such sums specifically as
3332 legitimate addresses. Normally you would simply recognize any `const' as
3333 legitimate.
3334
0fb30cb7
NF
3335 Usually `TARGET_PRINT_OPERAND_ADDRESS' is not prepared to handle
3336 constant sums that are not marked with `const'. It assumes that a
3337 naked `plus' indicates indexing. If so, then you *must* reject such
3338 naked constant sums as illegitimate addresses, so that none of them
3339 will be given to `TARGET_PRINT_OPERAND_ADDRESS'. */
36a05131
BS
3340
3341int
c6c3dba9
PB
3342frv_legitimate_address_p_1 (enum machine_mode mode,
3343 rtx x,
3344 int strict_p,
3345 int condexec_p,
3346 int allow_double_reg_p)
36a05131
BS
3347{
3348 rtx x0, x1;
3349 int ret = 0;
3350 HOST_WIDE_INT value;
3351 unsigned regno0;
3352
bef8809e
AH
3353 if (FRV_SYMBOL_REF_TLS_P (x))
3354 return 0;
3355
36a05131
BS
3356 switch (GET_CODE (x))
3357 {
3358 default:
3359 break;
3360
3361 case SUBREG:
3362 x = SUBREG_REG (x);
3363 if (GET_CODE (x) != REG)
3364 break;
3365
87b483a1 3366 /* Fall through. */
36a05131
BS
3367
3368 case REG:
3369 ret = frv_regno_ok_for_base_p (REGNO (x), strict_p);
3370 break;
3371
3372 case PRE_MODIFY:
3373 x0 = XEXP (x, 0);
3374 x1 = XEXP (x, 1);
3375 if (GET_CODE (x0) != REG
3376 || ! frv_regno_ok_for_base_p (REGNO (x0), strict_p)
3377 || GET_CODE (x1) != PLUS
3378 || ! rtx_equal_p (x0, XEXP (x1, 0))
3379 || GET_CODE (XEXP (x1, 1)) != REG
3380 || ! frv_regno_ok_for_base_p (REGNO (XEXP (x1, 1)), strict_p))
3381 break;
3382
3383 ret = 1;
3384 break;
3385
3386 case CONST_INT:
2300b9dd 3387 /* 12-bit immediate */
36a05131
BS
3388 if (condexec_p)
3389 ret = FALSE;
3390 else
3391 {
2f5b1308 3392 ret = IN_RANGE (INTVAL (x), -2048, 2047);
36a05131
BS
3393
3394 /* If we can't use load/store double operations, make sure we can
3395 address the second word. */
3396 if (ret && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
2f5b1308
JR
3397 ret = IN_RANGE (INTVAL (x) + GET_MODE_SIZE (mode) - 1,
3398 -2048, 2047);
36a05131
BS
3399 }
3400 break;
3401
3402 case PLUS:
3403 x0 = XEXP (x, 0);
3404 x1 = XEXP (x, 1);
3405
3406 if (GET_CODE (x0) == SUBREG)
3407 x0 = SUBREG_REG (x0);
3408
3409 if (GET_CODE (x0) != REG)
3410 break;
3411
3412 regno0 = REGNO (x0);
3413 if (!frv_regno_ok_for_base_p (regno0, strict_p))
3414 break;
3415
3416 switch (GET_CODE (x1))
3417 {
3418 default:
3419 break;
3420
3421 case SUBREG:
3422 x1 = SUBREG_REG (x1);
3423 if (GET_CODE (x1) != REG)
3424 break;
3425
87b483a1 3426 /* Fall through. */
36a05131
BS
3427
3428 case REG:
87b483a1
KH
3429 /* Do not allow reg+reg addressing for modes > 1 word if we
3430 can't depend on having move double instructions. */
34208acf 3431 if (!allow_double_reg_p && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
36a05131
BS
3432 ret = FALSE;
3433 else
3434 ret = frv_regno_ok_for_base_p (REGNO (x1), strict_p);
3435 break;
3436
3437 case CONST_INT:
2300b9dd 3438 /* 12-bit immediate */
36a05131
BS
3439 if (condexec_p)
3440 ret = FALSE;
3441 else
3442 {
3443 value = INTVAL (x1);
2f5b1308 3444 ret = IN_RANGE (value, -2048, 2047);
36a05131
BS
3445
3446 /* If we can't use load/store double operations, make sure we can
3447 address the second word. */
3448 if (ret && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
2f5b1308 3449 ret = IN_RANGE (value + GET_MODE_SIZE (mode) - 1, -2048, 2047);
36a05131
BS
3450 }
3451 break;
3452
36a05131 3453 case CONST:
34208acf 3454 if (!condexec_p && got12_operand (x1, VOIDmode))
36a05131
BS
3455 ret = TRUE;
3456 break;
3457
3458 }
3459 break;
3460 }
3461
3462 if (TARGET_DEBUG_ADDR)
3463 {
331d9186 3464 fprintf (stderr, "\n========== legitimate_address_p, mode = %s, result = %d, addresses are %sstrict%s\n",
36a05131
BS
3465 GET_MODE_NAME (mode), ret, (strict_p) ? "" : "not ",
3466 (condexec_p) ? ", inside conditional code" : "");
3467 debug_rtx (x);
3468 }
3469
3470 return ret;
3471}
3472
c6c3dba9
PB
3473bool
3474frv_legitimate_address_p (enum machine_mode mode, rtx x, bool strict_p)
3475{
3476 return frv_legitimate_address_p_1 (mode, x, strict_p, FALSE, FALSE);
3477}
3478
bef8809e
AH
3479/* Given an ADDR, generate code to inline the PLT. */
3480static rtx
3481gen_inlined_tls_plt (rtx addr)
3482{
fdbe66f2 3483 rtx retval, dest;
bef8809e
AH
3484 rtx picreg = get_hard_reg_initial_val (Pmode, FDPIC_REG);
3485
3486
3487 dest = gen_reg_rtx (DImode);
3488
3489 if (flag_pic == 1)
3490 {
3491 /*
3492 -fpic version:
3493
3494 lddi.p @(gr15, #gottlsdesc12(ADDR)), gr8
3495 calll #gettlsoff(ADDR)@(gr8, gr0)
3496 */
3497 emit_insn (gen_tls_lddi (dest, addr, picreg));
3498 }
3499 else
3500 {
3501 /*
3502 -fPIC version:
3503
3504 sethi.p #gottlsdeschi(ADDR), gr8
3505 setlo #gottlsdesclo(ADDR), gr8
3506 ldd #tlsdesc(ADDR)@(gr15, gr8), gr8
3507 calll #gettlsoff(ADDR)@(gr8, gr0)
3508 */
3509 rtx reguse = gen_reg_rtx (Pmode);
3510 emit_insn (gen_tlsoff_hilo (reguse, addr, GEN_INT (R_FRV_GOTTLSDESCHI)));
3511 emit_insn (gen_tls_tlsdesc_ldd (dest, picreg, reguse, addr));
3512 }
3513
3514 retval = gen_reg_rtx (Pmode);
a701780f 3515 emit_insn (gen_tls_indirect_call (retval, addr, dest, picreg));
bef8809e
AH
3516 return retval;
3517}
3518
3519/* Emit a TLSMOFF or TLSMOFF12 offset, depending on -mTLS. Returns
3520 the destination address. */
3521static rtx
3522gen_tlsmoff (rtx addr, rtx reg)
3523{
3524 rtx dest = gen_reg_rtx (Pmode);
3525
3526 if (TARGET_BIG_TLS)
3527 {
3528 /* sethi.p #tlsmoffhi(x), grA
3529 setlo #tlsmofflo(x), grA
3530 */
3531 dest = gen_reg_rtx (Pmode);
3532 emit_insn (gen_tlsoff_hilo (dest, addr,
3533 GEN_INT (R_FRV_TLSMOFFHI)));
3534 dest = gen_rtx_PLUS (Pmode, dest, reg);
3535 }
3536 else
3537 {
3538 /* addi grB, #tlsmoff12(x), grC
3539 -or-
3540 ld/st @(grB, #tlsmoff12(x)), grC
3541 */
3542 dest = gen_reg_rtx (Pmode);
3543 emit_insn (gen_symGOTOFF2reg_i (dest, addr, reg,
3544 GEN_INT (R_FRV_TLSMOFF12)));
3545 }
3546 return dest;
3547}
3548
3549/* Generate code for a TLS address. */
3550static rtx
3551frv_legitimize_tls_address (rtx addr, enum tls_model model)
3552{
3553 rtx dest, tp = gen_rtx_REG (Pmode, 29);
3554 rtx picreg = get_hard_reg_initial_val (Pmode, 15);
3555
3556 switch (model)
3557 {
3558 case TLS_MODEL_INITIAL_EXEC:
3559 if (flag_pic == 1)
3560 {
3561 /* -fpic version.
3562 ldi @(gr15, #gottlsoff12(x)), gr5
3563 */
3564 dest = gen_reg_rtx (Pmode);
3565 emit_insn (gen_tls_load_gottlsoff12 (dest, addr, picreg));
3566 dest = gen_rtx_PLUS (Pmode, tp, dest);
3567 }
3568 else
3569 {
3570 /* -fPIC or anything else.
3571
3572 sethi.p #gottlsoffhi(x), gr14
3573 setlo #gottlsofflo(x), gr14
3574 ld #tlsoff(x)@(gr15, gr14), gr9
3575 */
3576 rtx tmp = gen_reg_rtx (Pmode);
3577 dest = gen_reg_rtx (Pmode);
3578 emit_insn (gen_tlsoff_hilo (tmp, addr,
3579 GEN_INT (R_FRV_GOTTLSOFF_HI)));
3580
3581 emit_insn (gen_tls_tlsoff_ld (dest, picreg, tmp, addr));
3582 dest = gen_rtx_PLUS (Pmode, tp, dest);
3583 }
3584 break;
3585 case TLS_MODEL_LOCAL_DYNAMIC:
3586 {
3587 rtx reg, retval;
3588
3589 if (TARGET_INLINE_PLT)
3590 retval = gen_inlined_tls_plt (GEN_INT (0));
3591 else
3592 {
3593 /* call #gettlsoff(0) */
3594 retval = gen_reg_rtx (Pmode);
3595 emit_insn (gen_call_gettlsoff (retval, GEN_INT (0), picreg));
3596 }
3597
3598 reg = gen_reg_rtx (Pmode);
3599 emit_insn (gen_rtx_SET (VOIDmode, reg,
3600 gen_rtx_PLUS (Pmode,
3601 retval, tp)));
3602
3603 dest = gen_tlsmoff (addr, reg);
3604
3605 /*
3606 dest = gen_reg_rtx (Pmode);
3607 emit_insn (gen_tlsoff_hilo (dest, addr,
3608 GEN_INT (R_FRV_TLSMOFFHI)));
3609 dest = gen_rtx_PLUS (Pmode, dest, reg);
3610 */
3611 break;
3612 }
3613 case TLS_MODEL_LOCAL_EXEC:
3614 dest = gen_tlsmoff (addr, gen_rtx_REG (Pmode, 29));
3615 break;
3616 case TLS_MODEL_GLOBAL_DYNAMIC:
3617 {
3618 rtx retval;
3619
3620 if (TARGET_INLINE_PLT)
3621 retval = gen_inlined_tls_plt (addr);
3622 else
3623 {
3624 /* call #gettlsoff(x) */
3625 retval = gen_reg_rtx (Pmode);
3626 emit_insn (gen_call_gettlsoff (retval, addr, picreg));
3627 }
3628 dest = gen_rtx_PLUS (Pmode, retval, tp);
3629 break;
3630 }
3631 default:
44e91694 3632 gcc_unreachable ();
bef8809e
AH
3633 }
3634
3635 return dest;
3636}
3637
2a2e3f05 3638rtx
bef8809e 3639frv_legitimize_address (rtx x,
2a2e3f05
AH
3640 rtx oldx ATTRIBUTE_UNUSED,
3641 enum machine_mode mode ATTRIBUTE_UNUSED)
3642{
bef8809e
AH
3643 if (GET_CODE (x) == SYMBOL_REF)
3644 {
3645 enum tls_model model = SYMBOL_REF_TLS_MODEL (x);
3646 if (model != 0)
3647 return frv_legitimize_tls_address (x, model);
3648 }
3649
506d7b68 3650 return x;
2a2e3f05 3651}
36a05131 3652\f
34208acf
AO
3653/* Test whether a local function descriptor is canonical, i.e.,
3654 whether we can use FUNCDESC_GOTOFF to compute the address of the
3655 function. */
3656
3657static bool
3658frv_local_funcdesc_p (rtx fnx)
3659{
3660 tree fn;
3661 enum symbol_visibility vis;
3662 bool ret;
36a05131 3663
34208acf
AO
3664 if (! SYMBOL_REF_LOCAL_P (fnx))
3665 return FALSE;
3666
3667 fn = SYMBOL_REF_DECL (fnx);
3668
3669 if (! fn)
3670 return FALSE;
36a05131 3671
34208acf 3672 vis = DECL_VISIBILITY (fn);
36a05131 3673
34208acf
AO
3674 if (vis == VISIBILITY_PROTECTED)
3675 /* Private function descriptors for protected functions are not
3676 canonical. Temporarily change the visibility to global. */
3677 vis = VISIBILITY_DEFAULT;
3678 else if (flag_shlib)
3679 /* If we're already compiling for a shared library (that, unlike
3680 executables, can't assume that the existence of a definition
3681 implies local binding), we can skip the re-testing. */
3682 return TRUE;
36a05131 3683
34208acf 3684 ret = default_binds_local_p_1 (fn, flag_pic);
36a05131 3685
34208acf
AO
3686 DECL_VISIBILITY (fn) = vis;
3687
3688 return ret;
3689}
3690
3691/* Load the _gp symbol into DEST. SRC is supposed to be the FDPIC
3692 register. */
36a05131
BS
3693
3694rtx
34208acf
AO
3695frv_gen_GPsym2reg (rtx dest, rtx src)
3696{
3697 tree gp = get_identifier ("_gp");
3698 rtx gp_sym = gen_rtx_SYMBOL_REF (Pmode, IDENTIFIER_POINTER (gp));
36a05131 3699
34208acf
AO
3700 return gen_symGOT2reg (dest, gp_sym, src, GEN_INT (R_FRV_GOT12));
3701}
3702
3703static const char *
3704unspec_got_name (int i)
3705{
3706 switch (i)
36a05131 3707 {
34208acf
AO
3708 case R_FRV_GOT12: return "got12";
3709 case R_FRV_GOTHI: return "gothi";
3710 case R_FRV_GOTLO: return "gotlo";
3711 case R_FRV_FUNCDESC: return "funcdesc";
3712 case R_FRV_FUNCDESC_GOT12: return "gotfuncdesc12";
3713 case R_FRV_FUNCDESC_GOTHI: return "gotfuncdeschi";
3714 case R_FRV_FUNCDESC_GOTLO: return "gotfuncdesclo";
3715 case R_FRV_FUNCDESC_VALUE: return "funcdescvalue";
3716 case R_FRV_FUNCDESC_GOTOFF12: return "gotofffuncdesc12";
3717 case R_FRV_FUNCDESC_GOTOFFHI: return "gotofffuncdeschi";
3718 case R_FRV_FUNCDESC_GOTOFFLO: return "gotofffuncdesclo";
3719 case R_FRV_GOTOFF12: return "gotoff12";
3720 case R_FRV_GOTOFFHI: return "gotoffhi";
3721 case R_FRV_GOTOFFLO: return "gotofflo";
3722 case R_FRV_GPREL12: return "gprel12";
3723 case R_FRV_GPRELHI: return "gprelhi";
3724 case R_FRV_GPRELLO: return "gprello";
bef8809e
AH
3725 case R_FRV_GOTTLSOFF_HI: return "gottlsoffhi";
3726 case R_FRV_GOTTLSOFF_LO: return "gottlsofflo";
3727 case R_FRV_TLSMOFFHI: return "tlsmoffhi";
3728 case R_FRV_TLSMOFFLO: return "tlsmofflo";
3729 case R_FRV_TLSMOFF12: return "tlsmoff12";
3730 case R_FRV_TLSDESCHI: return "tlsdeschi";
3731 case R_FRV_TLSDESCLO: return "tlsdesclo";
3732 case R_FRV_GOTTLSDESCHI: return "gottlsdeschi";
3733 case R_FRV_GOTTLSDESCLO: return "gottlsdesclo";
44e91694 3734 default: gcc_unreachable ();
36a05131 3735 }
34208acf 3736}
36a05131 3737
34208acf
AO
3738/* Write the assembler syntax for UNSPEC to STREAM. Note that any offset
3739 is added inside the relocation operator. */
3740
3741static void
3742frv_output_const_unspec (FILE *stream, const struct frv_unspec *unspec)
3743{
3744 fprintf (stream, "#%s(", unspec_got_name (unspec->reloc));
0a81f074
RS
3745 output_addr_const (stream, plus_constant (Pmode, unspec->symbol,
3746 unspec->offset));
34208acf
AO
3747 fputs (")", stream);
3748}
3749
3750/* Implement FIND_BASE_TERM. See whether ORIG_X represents #gprel12(foo)
3751 or #gotoff12(foo) for some small data symbol foo. If so, return foo,
3752 otherwise return ORIG_X. */
3753
3754rtx
3755frv_find_base_term (rtx x)
3756{
3757 struct frv_unspec unspec;
3758
3759 if (frv_const_unspec_p (x, &unspec)
3760 && frv_small_data_reloc_p (unspec.symbol, unspec.reloc))
0a81f074 3761 return plus_constant (Pmode, unspec.symbol, unspec.offset);
34208acf
AO
3762
3763 return x;
36a05131
BS
3764}
3765
3766/* Return 1 if operand is a valid FRV address. CONDEXEC_P is true if
3767 the operand is used by a predicated instruction. */
3768
6d26dc3b 3769int
f2206911 3770frv_legitimate_memory_operand (rtx op, enum machine_mode mode, int condexec_p)
36a05131
BS
3771{
3772 return ((GET_MODE (op) == mode || mode == VOIDmode)
3773 && GET_CODE (op) == MEM
c6c3dba9
PB
3774 && frv_legitimate_address_p_1 (mode, XEXP (op, 0),
3775 reload_completed, condexec_p, FALSE));
34208acf
AO
3776}
3777
3778void
764678d1 3779frv_expand_fdpic_call (rtx *operands, bool ret_value, bool sibcall)
34208acf
AO
3780{
3781 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
3782 rtx picreg = get_hard_reg_initial_val (SImode, FDPIC_REG);
3783 rtx c, rvrtx=0;
3784 rtx addr;
3785
3786 if (ret_value)
3787 {
3788 rvrtx = operands[0];
3789 operands ++;
3790 }
3791
3792 addr = XEXP (operands[0], 0);
3793
3794 /* Inline PLTs if we're optimizing for speed. We'd like to inline
3795 any calls that would involve a PLT, but can't tell, since we
3796 don't know whether an extern function is going to be provided by
3797 a separate translation unit or imported from a separate module.
3798 When compiling for shared libraries, if the function has default
3799 visibility, we assume it's overridable, so we inline the PLT, but
3800 for executables, we don't really have a way to make a good
3801 decision: a function is as likely to be imported from a shared
3802 library as it is to be defined in the executable itself. We
3803 assume executables will get global functions defined locally,
3804 whereas shared libraries will have them potentially overridden,
3805 so we only inline PLTs when compiling for shared libraries.
3806
3807 In order to mark a function as local to a shared library, any
3808 non-default visibility attribute suffices. Unfortunately,
3809 there's no simple way to tag a function declaration as ``in a
3810 different module'', which we could then use to trigger PLT
3811 inlining on executables. There's -minline-plt, but it affects
3812 all external functions, so one would have to also mark function
3813 declarations available in the same module with non-default
3814 visibility, which is advantageous in itself. */
764678d1
AO
3815 if (GET_CODE (addr) == SYMBOL_REF
3816 && ((!SYMBOL_REF_LOCAL_P (addr) && TARGET_INLINE_PLT)
3817 || sibcall))
34208acf
AO
3818 {
3819 rtx x, dest;
3820 dest = gen_reg_rtx (SImode);
3821 if (flag_pic != 1)
3822 x = gen_symGOTOFF2reg_hilo (dest, addr, OUR_FDPIC_REG,
3823 GEN_INT (R_FRV_FUNCDESC_GOTOFF12));
3824 else
3825 x = gen_symGOTOFF2reg (dest, addr, OUR_FDPIC_REG,
3826 GEN_INT (R_FRV_FUNCDESC_GOTOFF12));
3827 emit_insn (x);
ad516a74 3828 crtl->uses_pic_offset_table = TRUE;
34208acf 3829 addr = dest;
2396bce1 3830 }
34208acf
AO
3831 else if (GET_CODE (addr) == SYMBOL_REF)
3832 {
3833 /* These are always either local, or handled through a local
3834 PLT. */
3835 if (ret_value)
3836 c = gen_call_value_fdpicsi (rvrtx, addr, operands[1],
3837 operands[2], picreg, lr);
3838 else
3839 c = gen_call_fdpicsi (addr, operands[1], operands[2], picreg, lr);
3840 emit_call_insn (c);
3841 return;
3842 }
3843 else if (! ldd_address_operand (addr, Pmode))
3844 addr = force_reg (Pmode, addr);
3845
3846 picreg = gen_reg_rtx (DImode);
3847 emit_insn (gen_movdi_ldd (picreg, addr));
3848
764678d1
AO
3849 if (sibcall && ret_value)
3850 c = gen_sibcall_value_fdpicdi (rvrtx, picreg, const0_rtx);
3851 else if (sibcall)
3852 c = gen_sibcall_fdpicdi (picreg, const0_rtx);
3853 else if (ret_value)
34208acf
AO
3854 c = gen_call_value_fdpicdi (rvrtx, picreg, const0_rtx, lr);
3855 else
3856 c = gen_call_fdpicdi (picreg, const0_rtx, lr);
3857 emit_call_insn (c);
36a05131 3858}
36a05131 3859\f
6d26dc3b
KH
3860/* Look for a SYMBOL_REF of a function in an rtx. We always want to
3861 process these separately from any offsets, such that we add any
3862 offsets to the function descriptor (the actual pointer), not to the
3863 function address. */
36a05131 3864
6d26dc3b
KH
3865static bool
3866frv_function_symbol_referenced_p (rtx x)
36a05131 3867{
6d26dc3b
KH
3868 const char *format;
3869 int length;
3870 int j;
36a05131 3871
6d26dc3b
KH
3872 if (GET_CODE (x) == SYMBOL_REF)
3873 return SYMBOL_REF_FUNCTION_P (x);
34208acf 3874
6d26dc3b
KH
3875 length = GET_RTX_LENGTH (GET_CODE (x));
3876 format = GET_RTX_FORMAT (GET_CODE (x));
36a05131 3877
6d26dc3b 3878 for (j = 0; j < length; ++j)
36a05131 3879 {
6d26dc3b
KH
3880 switch (format[j])
3881 {
3882 case 'e':
3883 if (frv_function_symbol_referenced_p (XEXP (x, j)))
3884 return TRUE;
3885 break;
36a05131 3886
6d26dc3b
KH
3887 case 'V':
3888 case 'E':
3889 if (XVEC (x, j) != 0)
3890 {
3891 int k;
3892 for (k = 0; k < XVECLEN (x, j); ++k)
3893 if (frv_function_symbol_referenced_p (XVECEXP (x, j, k)))
3894 return TRUE;
3895 }
3896 break;
36a05131 3897
6d26dc3b
KH
3898 default:
3899 /* Nothing to do. */
3900 break;
3901 }
36a05131
BS
3902 }
3903
36a05131
BS
3904 return FALSE;
3905}
3906
6d26dc3b
KH
3907/* Return true if the memory operand is one that can be conditionally
3908 executed. */
36a05131 3909
f2206911 3910int
6d26dc3b 3911condexec_memory_operand (rtx op, enum machine_mode mode)
36a05131 3912{
6d26dc3b
KH
3913 enum machine_mode op_mode = GET_MODE (op);
3914 rtx addr;
36a05131 3915
6d26dc3b 3916 if (mode != VOIDmode && op_mode != mode)
36a05131
BS
3917 return FALSE;
3918
6d26dc3b 3919 switch (op_mode)
36a05131
BS
3920 {
3921 default:
6d26dc3b 3922 return FALSE;
36a05131 3923
6d26dc3b
KH
3924 case QImode:
3925 case HImode:
3926 case SImode:
3927 case SFmode:
36a05131
BS
3928 break;
3929 }
3930
6d26dc3b 3931 if (GET_CODE (op) != MEM)
36a05131
BS
3932 return FALSE;
3933
6d26dc3b 3934 addr = XEXP (op, 0);
c6c3dba9 3935 return frv_legitimate_address_p_1 (mode, addr, reload_completed, TRUE, FALSE);
36a05131 3936}
36a05131
BS
3937\f
3938/* Return true if the bare return instruction can be used outside of the
3939 epilog code. For frv, we only do it if there was no stack allocation. */
3940
3941int
f2206911 3942direct_return_p (void)
36a05131
BS
3943{
3944 frv_stack_t *info;
3945
3946 if (!reload_completed)
3947 return FALSE;
3948
3949 info = frv_stack_info ();
3950 return (info->total_size == 0);
3951}
3952
3953\f
2a2e3f05
AH
3954void
3955frv_emit_move (enum machine_mode mode, rtx dest, rtx src)
3956{
bef8809e
AH
3957 if (GET_CODE (src) == SYMBOL_REF)
3958 {
3959 enum tls_model model = SYMBOL_REF_TLS_MODEL (src);
3960 if (model != 0)
3961 src = frv_legitimize_tls_address (src, model);
3962 }
3963
2a2e3f05
AH
3964 switch (mode)
3965 {
3966 case SImode:
3967 if (frv_emit_movsi (dest, src))
3968 return;
3969 break;
3970
3971 case QImode:
3972 case HImode:
3973 case DImode:
3974 case SFmode:
3975 case DFmode:
3976 if (!reload_in_progress
3977 && !reload_completed
3978 && !register_operand (dest, mode)
3979 && !reg_or_0_operand (src, mode))
3980 src = copy_to_mode_reg (mode, src);
3981 break;
3982
3983 default:
44e91694 3984 gcc_unreachable ();
2a2e3f05
AH
3985 }
3986
3987 emit_insn (gen_rtx_SET (VOIDmode, dest, src));
3988}
3989
36a05131
BS
3990/* Emit code to handle a MOVSI, adding in the small data register or pic
3991 register if needed to load up addresses. Return TRUE if the appropriate
3992 instructions are emitted. */
3993
3994int
f2206911 3995frv_emit_movsi (rtx dest, rtx src)
36a05131
BS
3996{
3997 int base_regno = -1;
34208acf
AO
3998 int unspec = 0;
3999 rtx sym = src;
4000 struct frv_unspec old_unspec;
36a05131
BS
4001
4002 if (!reload_in_progress
4003 && !reload_completed
4004 && !register_operand (dest, SImode)
4005 && (!reg_or_0_operand (src, SImode)
4006 /* Virtual registers will almost always be replaced by an
4007 add instruction, so expose this to CSE by copying to
87b483a1 4008 an intermediate register. */
36a05131 4009 || (GET_CODE (src) == REG
2f5b1308
JR
4010 && IN_RANGE (REGNO (src),
4011 FIRST_VIRTUAL_REGISTER,
4012 LAST_VIRTUAL_POINTER_REGISTER))))
36a05131
BS
4013 {
4014 emit_insn (gen_rtx_SET (VOIDmode, dest, copy_to_mode_reg (SImode, src)));
4015 return TRUE;
4016 }
4017
4018 /* Explicitly add in the PIC or small data register if needed. */
4019 switch (GET_CODE (src))
4020 {
4021 default:
4022 break;
4023
4024 case LABEL_REF:
34208acf
AO
4025 handle_label:
4026 if (TARGET_FDPIC)
4027 {
4028 /* Using GPREL12, we use a single GOT entry for all symbols
4029 in read-only sections, but trade sequences such as:
4030
4031 sethi #gothi(label), gr#
4032 setlo #gotlo(label), gr#
4033 ld @(gr15,gr#), gr#
4034
4035 for
4036
4037 ld @(gr15,#got12(_gp)), gr#
4038 sethi #gprelhi(label), gr##
4039 setlo #gprello(label), gr##
4040 add gr#, gr##, gr##
4041
4042 We may often be able to share gr# for multiple
4043 computations of GPREL addresses, and we may often fold
4044 the final add into the pair of registers of a load or
4045 store instruction, so it's often profitable. Even when
4046 optimizing for size, we're trading a GOT entry for an
4047 additional instruction, which trades GOT space
4048 (read-write) for code size (read-only, shareable), as
4049 long as the symbol is not used in more than two different
4050 locations.
2396bce1 4051
34208acf
AO
4052 With -fpie/-fpic, we'd be trading a single load for a
4053 sequence of 4 instructions, because the offset of the
4ee31f1e 4054 label can't be assumed to be addressable with 12 bits, so
34208acf
AO
4055 we don't do this. */
4056 if (TARGET_GPREL_RO)
4057 unspec = R_FRV_GPREL12;
4058 else
4059 unspec = R_FRV_GOT12;
4060 }
4061 else if (flag_pic)
36a05131
BS
4062 base_regno = PIC_REGNO;
4063
4064 break;
4065
4066 case CONST:
34208acf
AO
4067 if (frv_const_unspec_p (src, &old_unspec))
4068 break;
36a05131 4069
34208acf
AO
4070 if (TARGET_FDPIC && frv_function_symbol_referenced_p (XEXP (src, 0)))
4071 {
4072 handle_whatever:
4073 src = force_reg (GET_MODE (XEXP (src, 0)), XEXP (src, 0));
4074 emit_move_insn (dest, src);
4075 return TRUE;
4076 }
4077 else
4078 {
4079 sym = XEXP (sym, 0);
4080 if (GET_CODE (sym) == PLUS
4081 && GET_CODE (XEXP (sym, 0)) == SYMBOL_REF
4082 && GET_CODE (XEXP (sym, 1)) == CONST_INT)
4083 sym = XEXP (sym, 0);
4084 if (GET_CODE (sym) == SYMBOL_REF)
4085 goto handle_sym;
4086 else if (GET_CODE (sym) == LABEL_REF)
4087 goto handle_label;
4088 else
4089 goto handle_whatever;
4090 }
36a05131
BS
4091 break;
4092
4093 case SYMBOL_REF:
34208acf
AO
4094 handle_sym:
4095 if (TARGET_FDPIC)
4096 {
bef8809e
AH
4097 enum tls_model model = SYMBOL_REF_TLS_MODEL (sym);
4098
4099 if (model != 0)
4100 {
4101 src = frv_legitimize_tls_address (src, model);
4102 emit_move_insn (dest, src);
4103 return TRUE;
4104 }
4105
34208acf
AO
4106 if (SYMBOL_REF_FUNCTION_P (sym))
4107 {
4108 if (frv_local_funcdesc_p (sym))
4109 unspec = R_FRV_FUNCDESC_GOTOFF12;
4110 else
4111 unspec = R_FRV_FUNCDESC_GOT12;
4112 }
4113 else
4114 {
4115 if (CONSTANT_POOL_ADDRESS_P (sym))
4116 switch (GET_CODE (get_pool_constant (sym)))
4117 {
4118 case CONST:
4119 case SYMBOL_REF:
4120 case LABEL_REF:
4121 if (flag_pic)
4122 {
4123 unspec = R_FRV_GOTOFF12;
4124 break;
4125 }
4126 /* Fall through. */
4127 default:
4128 if (TARGET_GPREL_RO)
4129 unspec = R_FRV_GPREL12;
4130 else
4131 unspec = R_FRV_GOT12;
4132 break;
4133 }
4134 else if (SYMBOL_REF_LOCAL_P (sym)
4135 && !SYMBOL_REF_EXTERNAL_P (sym)
4136 && SYMBOL_REF_DECL (sym)
4137 && (!DECL_P (SYMBOL_REF_DECL (sym))
4138 || !DECL_COMMON (SYMBOL_REF_DECL (sym))))
4139 {
4140 tree decl = SYMBOL_REF_DECL (sym);
4141 tree init = TREE_CODE (decl) == VAR_DECL
4142 ? DECL_INITIAL (decl)
4143 : TREE_CODE (decl) == CONSTRUCTOR
4144 ? decl : 0;
4145 int reloc = 0;
4146 bool named_section, readonly;
4147
4148 if (init && init != error_mark_node)
4149 reloc = compute_reloc_for_constant (init);
2396bce1 4150
34208acf
AO
4151 named_section = TREE_CODE (decl) == VAR_DECL
4152 && lookup_attribute ("section", DECL_ATTRIBUTES (decl));
4153 readonly = decl_readonly_section (decl, reloc);
2396bce1 4154
34208acf
AO
4155 if (named_section)
4156 unspec = R_FRV_GOT12;
4157 else if (!readonly)
4158 unspec = R_FRV_GOTOFF12;
4159 else if (readonly && TARGET_GPREL_RO)
4160 unspec = R_FRV_GPREL12;
4161 else
4162 unspec = R_FRV_GOT12;
4163 }
4164 else
4165 unspec = R_FRV_GOT12;
4166 }
4167 }
4168
4169 else if (SYMBOL_REF_SMALL_P (sym))
36a05131
BS
4170 base_regno = SDA_BASE_REG;
4171
4172 else if (flag_pic)
4173 base_regno = PIC_REGNO;
4174
4175 break;
4176 }
4177
4178 if (base_regno >= 0)
4179 {
34208acf
AO
4180 if (GET_CODE (sym) == SYMBOL_REF && SYMBOL_REF_SMALL_P (sym))
4181 emit_insn (gen_symGOTOFF2reg (dest, src,
4182 gen_rtx_REG (Pmode, base_regno),
4183 GEN_INT (R_FRV_GPREL12)));
4184 else
4185 emit_insn (gen_symGOTOFF2reg_hilo (dest, src,
4186 gen_rtx_REG (Pmode, base_regno),
4187 GEN_INT (R_FRV_GPREL12)));
36a05131 4188 if (base_regno == PIC_REGNO)
ad516a74 4189 crtl->uses_pic_offset_table = TRUE;
34208acf
AO
4190 return TRUE;
4191 }
36a05131 4192
34208acf
AO
4193 if (unspec)
4194 {
4195 rtx x;
4196
4197 /* Since OUR_FDPIC_REG is a pseudo register, we can't safely introduce
4198 new uses of it once reload has begun. */
44e91694 4199 gcc_assert (!reload_in_progress && !reload_completed);
34208acf
AO
4200
4201 switch (unspec)
4202 {
4203 case R_FRV_GOTOFF12:
4204 if (!frv_small_data_reloc_p (sym, unspec))
4205 x = gen_symGOTOFF2reg_hilo (dest, src, OUR_FDPIC_REG,
4206 GEN_INT (unspec));
4207 else
4208 x = gen_symGOTOFF2reg (dest, src, OUR_FDPIC_REG, GEN_INT (unspec));
4209 break;
4210 case R_FRV_GPREL12:
4211 if (!frv_small_data_reloc_p (sym, unspec))
4212 x = gen_symGPREL2reg_hilo (dest, src, OUR_FDPIC_REG,
4213 GEN_INT (unspec));
4214 else
4215 x = gen_symGPREL2reg (dest, src, OUR_FDPIC_REG, GEN_INT (unspec));
4216 break;
4217 case R_FRV_FUNCDESC_GOTOFF12:
4218 if (flag_pic != 1)
4219 x = gen_symGOTOFF2reg_hilo (dest, src, OUR_FDPIC_REG,
4220 GEN_INT (unspec));
4221 else
4222 x = gen_symGOTOFF2reg (dest, src, OUR_FDPIC_REG, GEN_INT (unspec));
4223 break;
4224 default:
4225 if (flag_pic != 1)
4226 x = gen_symGOT2reg_hilo (dest, src, OUR_FDPIC_REG,
4227 GEN_INT (unspec));
4228 else
4229 x = gen_symGOT2reg (dest, src, OUR_FDPIC_REG, GEN_INT (unspec));
4230 break;
4231 }
4232 emit_insn (x);
ad516a74 4233 crtl->uses_pic_offset_table = TRUE;
36a05131
BS
4234 return TRUE;
4235 }
4236
34208acf 4237
36a05131
BS
4238 return FALSE;
4239}
4240
4241\f
4242/* Return a string to output a single word move. */
4243
4244const char *
f2206911 4245output_move_single (rtx operands[], rtx insn)
36a05131
BS
4246{
4247 rtx dest = operands[0];
4248 rtx src = operands[1];
4249
4250 if (GET_CODE (dest) == REG)
4251 {
4252 int dest_regno = REGNO (dest);
4253 enum machine_mode mode = GET_MODE (dest);
4254
4255 if (GPR_P (dest_regno))
4256 {
4257 if (GET_CODE (src) == REG)
4258 {
4259 /* gpr <- some sort of register */
4260 int src_regno = REGNO (src);
4261
4262 if (GPR_P (src_regno))
4263 return "mov %1, %0";
4264
4265 else if (FPR_P (src_regno))
4266 return "movfg %1, %0";
4267
4268 else if (SPR_P (src_regno))
4269 return "movsg %1, %0";
4270 }
4271
4272 else if (GET_CODE (src) == MEM)
4273 {
4274 /* gpr <- memory */
4275 switch (mode)
4276 {
4277 default:
4278 break;
4279
4280 case QImode:
4281 return "ldsb%I1%U1 %M1,%0";
4282
4283 case HImode:
4284 return "ldsh%I1%U1 %M1,%0";
4285
4286 case SImode:
4287 case SFmode:
4288 return "ld%I1%U1 %M1, %0";
4289 }
4290 }
4291
4292 else if (GET_CODE (src) == CONST_INT
4293 || GET_CODE (src) == CONST_DOUBLE)
4294 {
4295 /* gpr <- integer/floating constant */
4296 HOST_WIDE_INT value;
4297
4298 if (GET_CODE (src) == CONST_INT)
4299 value = INTVAL (src);
4300
4301 else if (mode == SFmode)
4302 {
4303 REAL_VALUE_TYPE rv;
4304 long l;
4305
4306 REAL_VALUE_FROM_CONST_DOUBLE (rv, src);
4307 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
4308 value = l;
4309 }
4310
4311 else
4312 value = CONST_DOUBLE_LOW (src);
4313
2f5b1308 4314 if (IN_RANGE (value, -32768, 32767))
36a05131
BS
4315 return "setlos %1, %0";
4316
4317 return "#";
4318 }
4319
4320 else if (GET_CODE (src) == SYMBOL_REF
4321 || GET_CODE (src) == LABEL_REF
4322 || GET_CODE (src) == CONST)
4323 {
36a05131
BS
4324 return "#";
4325 }
4326 }
4327
4328 else if (FPR_P (dest_regno))
4329 {
4330 if (GET_CODE (src) == REG)
4331 {
4332 /* fpr <- some sort of register */
4333 int src_regno = REGNO (src);
4334
4335 if (GPR_P (src_regno))
4336 return "movgf %1, %0";
4337
4338 else if (FPR_P (src_regno))
4339 {
4340 if (TARGET_HARD_FLOAT)
4341 return "fmovs %1, %0";
4342 else
4343 return "mor %1, %1, %0";
4344 }
4345 }
4346
4347 else if (GET_CODE (src) == MEM)
4348 {
4349 /* fpr <- memory */
4350 switch (mode)
4351 {
4352 default:
4353 break;
4354
4355 case QImode:
4356 return "ldbf%I1%U1 %M1,%0";
4357
4358 case HImode:
4359 return "ldhf%I1%U1 %M1,%0";
4360
4361 case SImode:
4362 case SFmode:
4363 return "ldf%I1%U1 %M1, %0";
4364 }
4365 }
4366
4367 else if (ZERO_P (src))
4368 return "movgf %., %0";
4369 }
4370
4371 else if (SPR_P (dest_regno))
4372 {
4373 if (GET_CODE (src) == REG)
4374 {
4375 /* spr <- some sort of register */
4376 int src_regno = REGNO (src);
4377
4378 if (GPR_P (src_regno))
4379 return "movgs %1, %0";
4380 }
c557edf4
RS
4381 else if (ZERO_P (src))
4382 return "movgs %., %0";
36a05131
BS
4383 }
4384 }
4385
4386 else if (GET_CODE (dest) == MEM)
4387 {
4388 if (GET_CODE (src) == REG)
4389 {
4390 int src_regno = REGNO (src);
4391 enum machine_mode mode = GET_MODE (dest);
4392
4393 if (GPR_P (src_regno))
4394 {
4395 switch (mode)
4396 {
4397 default:
4398 break;
4399
4400 case QImode:
4401 return "stb%I0%U0 %1, %M0";
4402
4403 case HImode:
4404 return "sth%I0%U0 %1, %M0";
4405
4406 case SImode:
4407 case SFmode:
4408 return "st%I0%U0 %1, %M0";
4409 }
4410 }
4411
4412 else if (FPR_P (src_regno))
4413 {
4414 switch (mode)
4415 {
4416 default:
4417 break;
4418
4419 case QImode:
4420 return "stbf%I0%U0 %1, %M0";
4421
4422 case HImode:
4423 return "sthf%I0%U0 %1, %M0";
4424
4425 case SImode:
4426 case SFmode:
4427 return "stf%I0%U0 %1, %M0";
4428 }
4429 }
4430 }
4431
4432 else if (ZERO_P (src))
4433 {
4434 switch (GET_MODE (dest))
4435 {
4436 default:
4437 break;
4438
4439 case QImode:
4440 return "stb%I0%U0 %., %M0";
4441
4442 case HImode:
4443 return "sth%I0%U0 %., %M0";
4444
4445 case SImode:
4446 case SFmode:
4447 return "st%I0%U0 %., %M0";
4448 }
4449 }
4450 }
4451
ab532386 4452 fatal_insn ("bad output_move_single operand", insn);
36a05131
BS
4453 return "";
4454}
4455
4456\f
4457/* Return a string to output a double word move. */
4458
4459const char *
f2206911 4460output_move_double (rtx operands[], rtx insn)
36a05131
BS
4461{
4462 rtx dest = operands[0];
4463 rtx src = operands[1];
4464 enum machine_mode mode = GET_MODE (dest);
4465
4466 if (GET_CODE (dest) == REG)
4467 {
4468 int dest_regno = REGNO (dest);
4469
4470 if (GPR_P (dest_regno))
4471 {
4472 if (GET_CODE (src) == REG)
4473 {
4474 /* gpr <- some sort of register */
4475 int src_regno = REGNO (src);
4476
4477 if (GPR_P (src_regno))
4478 return "#";
4479
4480 else if (FPR_P (src_regno))
4481 {
4482 if (((dest_regno - GPR_FIRST) & 1) == 0
4483 && ((src_regno - FPR_FIRST) & 1) == 0)
4484 return "movfgd %1, %0";
4485
4486 return "#";
4487 }
4488 }
4489
4490 else if (GET_CODE (src) == MEM)
4491 {
4492 /* gpr <- memory */
4493 if (dbl_memory_one_insn_operand (src, mode))
4494 return "ldd%I1%U1 %M1, %0";
4495
4496 return "#";
4497 }
4498
4499 else if (GET_CODE (src) == CONST_INT
4500 || GET_CODE (src) == CONST_DOUBLE)
4501 return "#";
4502 }
4503
4504 else if (FPR_P (dest_regno))
4505 {
4506 if (GET_CODE (src) == REG)
4507 {
4508 /* fpr <- some sort of register */
4509 int src_regno = REGNO (src);
4510
4511 if (GPR_P (src_regno))
4512 {
4513 if (((dest_regno - FPR_FIRST) & 1) == 0
4514 && ((src_regno - GPR_FIRST) & 1) == 0)
4515 return "movgfd %1, %0";
4516
4517 return "#";
4518 }
4519
4520 else if (FPR_P (src_regno))
4521 {
4522 if (TARGET_DOUBLE
4523 && ((dest_regno - FPR_FIRST) & 1) == 0
4524 && ((src_regno - FPR_FIRST) & 1) == 0)
4525 return "fmovd %1, %0";
4526
4527 return "#";
4528 }
4529 }
4530
4531 else if (GET_CODE (src) == MEM)
4532 {
4533 /* fpr <- memory */
4534 if (dbl_memory_one_insn_operand (src, mode))
4535 return "lddf%I1%U1 %M1, %0";
4536
4537 return "#";
4538 }
4539
4540 else if (ZERO_P (src))
4541 return "#";
4542 }
4543 }
4544
4545 else if (GET_CODE (dest) == MEM)
4546 {
4547 if (GET_CODE (src) == REG)
4548 {
4549 int src_regno = REGNO (src);
4550
4551 if (GPR_P (src_regno))
4552 {
4553 if (((src_regno - GPR_FIRST) & 1) == 0
4554 && dbl_memory_one_insn_operand (dest, mode))
4555 return "std%I0%U0 %1, %M0";
4556
4557 return "#";
4558 }
4559
4560 if (FPR_P (src_regno))
4561 {
4562 if (((src_regno - FPR_FIRST) & 1) == 0
4563 && dbl_memory_one_insn_operand (dest, mode))
4564 return "stdf%I0%U0 %1, %M0";
4565
4566 return "#";
4567 }
4568 }
4569
4570 else if (ZERO_P (src))
4571 {
4572 if (dbl_memory_one_insn_operand (dest, mode))
4573 return "std%I0%U0 %., %M0";
4574
4575 return "#";
4576 }
4577 }
4578
ab532386 4579 fatal_insn ("bad output_move_double operand", insn);
36a05131
BS
4580 return "";
4581}
4582
4583\f
4584/* Return a string to output a single word conditional move.
4585 Operand0 -- EQ/NE of ccr register and 0
4586 Operand1 -- CCR register
4587 Operand2 -- destination
4588 Operand3 -- source */
4589
4590const char *
f2206911 4591output_condmove_single (rtx operands[], rtx insn)
36a05131
BS
4592{
4593 rtx dest = operands[2];
4594 rtx src = operands[3];
4595
4596 if (GET_CODE (dest) == REG)
4597 {
4598 int dest_regno = REGNO (dest);
4599 enum machine_mode mode = GET_MODE (dest);
4600
4601 if (GPR_P (dest_regno))
4602 {
4603 if (GET_CODE (src) == REG)
4604 {
4605 /* gpr <- some sort of register */
4606 int src_regno = REGNO (src);
4607
4608 if (GPR_P (src_regno))
4609 return "cmov %z3, %2, %1, %e0";
4610
4611 else if (FPR_P (src_regno))
4612 return "cmovfg %3, %2, %1, %e0";
4613 }
4614
4615 else if (GET_CODE (src) == MEM)
4616 {
4617 /* gpr <- memory */
4618 switch (mode)
4619 {
4620 default:
4621 break;
4622
4623 case QImode:
4624 return "cldsb%I3%U3 %M3, %2, %1, %e0";
4625
4626 case HImode:
4627 return "cldsh%I3%U3 %M3, %2, %1, %e0";
4628
4629 case SImode:
4630 case SFmode:
4631 return "cld%I3%U3 %M3, %2, %1, %e0";
4632 }
4633 }
4634
4635 else if (ZERO_P (src))
4636 return "cmov %., %2, %1, %e0";
4637 }
4638
4639 else if (FPR_P (dest_regno))
4640 {
4641 if (GET_CODE (src) == REG)
4642 {
4643 /* fpr <- some sort of register */
4644 int src_regno = REGNO (src);
4645
4646 if (GPR_P (src_regno))
4647 return "cmovgf %3, %2, %1, %e0";
4648
4649 else if (FPR_P (src_regno))
4650 {
4651 if (TARGET_HARD_FLOAT)
4652 return "cfmovs %3,%2,%1,%e0";
4653 else
4654 return "cmor %3, %3, %2, %1, %e0";
4655 }
4656 }
4657
4658 else if (GET_CODE (src) == MEM)
4659 {
4660 /* fpr <- memory */
4661 if (mode == SImode || mode == SFmode)
4662 return "cldf%I3%U3 %M3, %2, %1, %e0";
4663 }
4664
4665 else if (ZERO_P (src))
4666 return "cmovgf %., %2, %1, %e0";
4667 }
4668 }
4669
4670 else if (GET_CODE (dest) == MEM)
4671 {
4672 if (GET_CODE (src) == REG)
4673 {
4674 int src_regno = REGNO (src);
4675 enum machine_mode mode = GET_MODE (dest);
4676
4677 if (GPR_P (src_regno))
4678 {
4679 switch (mode)
4680 {
4681 default:
4682 break;
4683
4684 case QImode:
4685 return "cstb%I2%U2 %3, %M2, %1, %e0";
4686
4687 case HImode:
4688 return "csth%I2%U2 %3, %M2, %1, %e0";
4689
4690 case SImode:
4691 case SFmode:
4692 return "cst%I2%U2 %3, %M2, %1, %e0";
4693 }
4694 }
4695
4696 else if (FPR_P (src_regno) && (mode == SImode || mode == SFmode))
4697 return "cstf%I2%U2 %3, %M2, %1, %e0";
4698 }
4699
4700 else if (ZERO_P (src))
4701 {
4702 enum machine_mode mode = GET_MODE (dest);
4703 switch (mode)
4704 {
4705 default:
4706 break;
4707
4708 case QImode:
4709 return "cstb%I2%U2 %., %M2, %1, %e0";
4710
4711 case HImode:
4712 return "csth%I2%U2 %., %M2, %1, %e0";
4713
4714 case SImode:
4715 case SFmode:
4716 return "cst%I2%U2 %., %M2, %1, %e0";
4717 }
4718 }
4719 }
4720
ab532386 4721 fatal_insn ("bad output_condmove_single operand", insn);
36a05131
BS
4722 return "";
4723}
4724
4725\f
4726/* Emit the appropriate code to do a comparison, returning the register the
4727 comparison was done it. */
4728
4729static rtx
f2206911 4730frv_emit_comparison (enum rtx_code test, rtx op0, rtx op1)
36a05131
BS
4731{
4732 enum machine_mode cc_mode;
4733 rtx cc_reg;
4734
87b483a1 4735 /* Floating point doesn't have comparison against a constant. */
36a05131
BS
4736 if (GET_MODE (op0) == CC_FPmode && GET_CODE (op1) != REG)
4737 op1 = force_reg (GET_MODE (op0), op1);
4738
4739 /* Possibly disable using anything but a fixed register in order to work
4740 around cse moving comparisons past function calls. */
4741 cc_mode = SELECT_CC_MODE (test, op0, op1);
4742 cc_reg = ((TARGET_ALLOC_CC)
4743 ? gen_reg_rtx (cc_mode)
4744 : gen_rtx_REG (cc_mode,
4745 (cc_mode == CC_FPmode) ? FCC_FIRST : ICC_FIRST));
4746
4747 emit_insn (gen_rtx_SET (VOIDmode, cc_reg,
4748 gen_rtx_COMPARE (cc_mode, op0, op1)));
4749
4750 return cc_reg;
4751}
4752
4753\f
f90b7a5a 4754/* Emit code for a conditional branch.
36a05131
BS
4755 XXX: I originally wanted to add a clobber of a CCR register to use in
4756 conditional execution, but that confuses the rest of the compiler. */
4757
4758int
f90b7a5a 4759frv_emit_cond_branch (rtx operands[])
36a05131
BS
4760{
4761 rtx test_rtx;
4762 rtx label_ref;
4763 rtx if_else;
f90b7a5a
PB
4764 enum rtx_code test = GET_CODE (operands[0]);
4765 rtx cc_reg = frv_emit_comparison (test, operands[1], operands[2]);
36a05131
BS
4766 enum machine_mode cc_mode = GET_MODE (cc_reg);
4767
4768 /* Branches generate:
4769 (set (pc)
4770 (if_then_else (<test>, <cc_reg>, (const_int 0))
4771 (label_ref <branch_label>)
4772 (pc))) */
f90b7a5a 4773 label_ref = gen_rtx_LABEL_REF (VOIDmode, operands[3]);
1c563bed 4774 test_rtx = gen_rtx_fmt_ee (test, cc_mode, cc_reg, const0_rtx);
36a05131
BS
4775 if_else = gen_rtx_IF_THEN_ELSE (cc_mode, test_rtx, label_ref, pc_rtx);
4776 emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx, if_else));
4777 return TRUE;
4778}
4779
4780\f
f90b7a5a 4781/* Emit code to set a gpr to 1/0 based on a comparison. */
36a05131
BS
4782
4783int
f90b7a5a 4784frv_emit_scc (rtx operands[])
36a05131
BS
4785{
4786 rtx set;
4787 rtx test_rtx;
4788 rtx clobber;
4789 rtx cr_reg;
f90b7a5a
PB
4790 enum rtx_code test = GET_CODE (operands[1]);
4791 rtx cc_reg = frv_emit_comparison (test, operands[2], operands[3]);
36a05131
BS
4792
4793 /* SCC instructions generate:
4794 (parallel [(set <target> (<test>, <cc_reg>, (const_int 0))
4795 (clobber (<ccr_reg>))]) */
4796 test_rtx = gen_rtx_fmt_ee (test, SImode, cc_reg, const0_rtx);
f90b7a5a 4797 set = gen_rtx_SET (VOIDmode, operands[0], test_rtx);
36a05131
BS
4798
4799 cr_reg = ((TARGET_ALLOC_CC)
4800 ? gen_reg_rtx (CC_CCRmode)
4801 : gen_rtx_REG (CC_CCRmode,
4802 ((GET_MODE (cc_reg) == CC_FPmode)
4803 ? FCR_FIRST
4804 : ICR_FIRST)));
4805
4806 clobber = gen_rtx_CLOBBER (VOIDmode, cr_reg);
4807 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set, clobber)));
4808 return TRUE;
4809}
4810
4811\f
4812/* Split a SCC instruction into component parts, returning a SEQUENCE to hold
839a4992 4813 the separate insns. */
36a05131
BS
4814
4815rtx
f2206911 4816frv_split_scc (rtx dest, rtx test, rtx cc_reg, rtx cr_reg, HOST_WIDE_INT value)
36a05131
BS
4817{
4818 rtx ret;
4819
4820 start_sequence ();
4821
4822 /* Set the appropriate CCR bit. */
4823 emit_insn (gen_rtx_SET (VOIDmode,
4824 cr_reg,
4825 gen_rtx_fmt_ee (GET_CODE (test),
4826 GET_MODE (cr_reg),
4827 cc_reg,
4828 const0_rtx)));
4829
4830 /* Move the value into the destination. */
4831 emit_move_insn (dest, GEN_INT (value));
4832
4833 /* Move 0 into the destination if the test failed */
4834 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
4835 gen_rtx_EQ (GET_MODE (cr_reg),
4836 cr_reg,
4837 const0_rtx),
4838 gen_rtx_SET (VOIDmode, dest, const0_rtx)));
4839
4840 /* Finish up, return sequence. */
4841 ret = get_insns ();
4842 end_sequence ();
4843 return ret;
4844}
4845
4846\f
4847/* Emit the code for a conditional move, return TRUE if we could do the
4848 move. */
4849
4850int
f2206911 4851frv_emit_cond_move (rtx dest, rtx test_rtx, rtx src1, rtx src2)
36a05131
BS
4852{
4853 rtx set;
4854 rtx clobber_cc;
4855 rtx test2;
4856 rtx cr_reg;
4857 rtx if_rtx;
4858 enum rtx_code test = GET_CODE (test_rtx);
f90b7a5a
PB
4859 rtx cc_reg = frv_emit_comparison (test,
4860 XEXP (test_rtx, 0), XEXP (test_rtx, 1));
36a05131
BS
4861 enum machine_mode cc_mode = GET_MODE (cc_reg);
4862
4863 /* Conditional move instructions generate:
4864 (parallel [(set <target>
4865 (if_then_else (<test> <cc_reg> (const_int 0))
4866 <src1>
4867 <src2>))
4868 (clobber (<ccr_reg>))]) */
4869
4870 /* Handle various cases of conditional move involving two constants. */
4871 if (GET_CODE (src1) == CONST_INT && GET_CODE (src2) == CONST_INT)
4872 {
4873 HOST_WIDE_INT value1 = INTVAL (src1);
4874 HOST_WIDE_INT value2 = INTVAL (src2);
4875
87b483a1 4876 /* Having 0 as one of the constants can be done by loading the other
36a05131
BS
4877 constant, and optionally moving in gr0. */
4878 if (value1 == 0 || value2 == 0)
4879 ;
4880
4881 /* If the first value is within an addi range and also the difference
4882 between the two fits in an addi's range, load up the difference, then
4883 conditionally move in 0, and then unconditionally add the first
4884 value. */
2f5b1308
JR
4885 else if (IN_RANGE (value1, -2048, 2047)
4886 && IN_RANGE (value2 - value1, -2048, 2047))
36a05131
BS
4887 ;
4888
4889 /* If neither condition holds, just force the constant into a
4890 register. */
4891 else
4892 {
4893 src1 = force_reg (GET_MODE (dest), src1);
4894 src2 = force_reg (GET_MODE (dest), src2);
4895 }
4896 }
4897
4898 /* If one value is a register, insure the other value is either 0 or a
4899 register. */
4900 else
4901 {
4902 if (GET_CODE (src1) == CONST_INT && INTVAL (src1) != 0)
4903 src1 = force_reg (GET_MODE (dest), src1);
4904
4905 if (GET_CODE (src2) == CONST_INT && INTVAL (src2) != 0)
4906 src2 = force_reg (GET_MODE (dest), src2);
4907 }
4908
4909 test2 = gen_rtx_fmt_ee (test, cc_mode, cc_reg, const0_rtx);
4910 if_rtx = gen_rtx_IF_THEN_ELSE (GET_MODE (dest), test2, src1, src2);
4911
4912 set = gen_rtx_SET (VOIDmode, dest, if_rtx);
4913
4914 cr_reg = ((TARGET_ALLOC_CC)
4915 ? gen_reg_rtx (CC_CCRmode)
4916 : gen_rtx_REG (CC_CCRmode,
4917 (cc_mode == CC_FPmode) ? FCR_FIRST : ICR_FIRST));
4918
4919 clobber_cc = gen_rtx_CLOBBER (VOIDmode, cr_reg);
4920 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set, clobber_cc)));
4921 return TRUE;
4922}
4923
4924\f
839a4992 4925/* Split a conditional move into constituent parts, returning a SEQUENCE
36a05131
BS
4926 containing all of the insns. */
4927
4928rtx
f2206911 4929frv_split_cond_move (rtx operands[])
36a05131
BS
4930{
4931 rtx dest = operands[0];
4932 rtx test = operands[1];
4933 rtx cc_reg = operands[2];
4934 rtx src1 = operands[3];
4935 rtx src2 = operands[4];
4936 rtx cr_reg = operands[5];
4937 rtx ret;
4938 enum machine_mode cr_mode = GET_MODE (cr_reg);
4939
4940 start_sequence ();
4941
4942 /* Set the appropriate CCR bit. */
4943 emit_insn (gen_rtx_SET (VOIDmode,
4944 cr_reg,
4945 gen_rtx_fmt_ee (GET_CODE (test),
4946 GET_MODE (cr_reg),
4947 cc_reg,
4948 const0_rtx)));
4949
4950 /* Handle various cases of conditional move involving two constants. */
4951 if (GET_CODE (src1) == CONST_INT && GET_CODE (src2) == CONST_INT)
4952 {
4953 HOST_WIDE_INT value1 = INTVAL (src1);
4954 HOST_WIDE_INT value2 = INTVAL (src2);
4955
87b483a1 4956 /* Having 0 as one of the constants can be done by loading the other
36a05131
BS
4957 constant, and optionally moving in gr0. */
4958 if (value1 == 0)
4959 {
4960 emit_move_insn (dest, src2);
4961 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
4962 gen_rtx_NE (cr_mode, cr_reg,
4963 const0_rtx),
4964 gen_rtx_SET (VOIDmode, dest, src1)));
4965 }
4966
4967 else if (value2 == 0)
4968 {
4969 emit_move_insn (dest, src1);
4970 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
4971 gen_rtx_EQ (cr_mode, cr_reg,
4972 const0_rtx),
4973 gen_rtx_SET (VOIDmode, dest, src2)));
4974 }
4975
4976 /* If the first value is within an addi range and also the difference
4977 between the two fits in an addi's range, load up the difference, then
4978 conditionally move in 0, and then unconditionally add the first
4979 value. */
2f5b1308
JR
4980 else if (IN_RANGE (value1, -2048, 2047)
4981 && IN_RANGE (value2 - value1, -2048, 2047))
36a05131
BS
4982 {
4983 rtx dest_si = ((GET_MODE (dest) == SImode)
4984 ? dest
4985 : gen_rtx_SUBREG (SImode, dest, 0));
4986
4987 emit_move_insn (dest_si, GEN_INT (value2 - value1));
4988 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
4989 gen_rtx_NE (cr_mode, cr_reg,
4990 const0_rtx),
4991 gen_rtx_SET (VOIDmode, dest_si,
4992 const0_rtx)));
4993 emit_insn (gen_addsi3 (dest_si, dest_si, src1));
4994 }
4995
4996 else
44e91694 4997 gcc_unreachable ();
36a05131
BS
4998 }
4999 else
5000 {
5001 /* Emit the conditional move for the test being true if needed. */
5002 if (! rtx_equal_p (dest, src1))
5003 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5004 gen_rtx_NE (cr_mode, cr_reg, const0_rtx),
5005 gen_rtx_SET (VOIDmode, dest, src1)));
5006
5007 /* Emit the conditional move for the test being false if needed. */
5008 if (! rtx_equal_p (dest, src2))
5009 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5010 gen_rtx_EQ (cr_mode, cr_reg, const0_rtx),
5011 gen_rtx_SET (VOIDmode, dest, src2)));
5012 }
5013
5014 /* Finish up, return sequence. */
5015 ret = get_insns ();
5016 end_sequence ();
5017 return ret;
5018}
5019
5020\f
5021/* Split (set DEST SOURCE), where DEST is a double register and SOURCE is a
5022 memory location that is not known to be dword-aligned. */
5023void
f2206911 5024frv_split_double_load (rtx dest, rtx source)
36a05131
BS
5025{
5026 int regno = REGNO (dest);
5027 rtx dest1 = gen_highpart (SImode, dest);
5028 rtx dest2 = gen_lowpart (SImode, dest);
5029 rtx address = XEXP (source, 0);
5030
5031 /* If the address is pre-modified, load the lower-numbered register
5032 first, then load the other register using an integer offset from
5033 the modified base register. This order should always be safe,
5034 since the pre-modification cannot affect the same registers as the
5035 load does.
5036
5037 The situation for other loads is more complicated. Loading one
5038 of the registers could affect the value of ADDRESS, so we must
5039 be careful which order we do them in. */
5040 if (GET_CODE (address) == PRE_MODIFY
5041 || ! refers_to_regno_p (regno, regno + 1, address, NULL))
5042 {
5043 /* It is safe to load the lower-numbered register first. */
5044 emit_move_insn (dest1, change_address (source, SImode, NULL));
5045 emit_move_insn (dest2, frv_index_memory (source, SImode, 1));
5046 }
5047 else
5048 {
5049 /* ADDRESS is not pre-modified and the address depends on the
5050 lower-numbered register. Load the higher-numbered register
5051 first. */
5052 emit_move_insn (dest2, frv_index_memory (source, SImode, 1));
5053 emit_move_insn (dest1, change_address (source, SImode, NULL));
5054 }
5055}
5056
5057/* Split (set DEST SOURCE), where DEST refers to a dword memory location
5058 and SOURCE is either a double register or the constant zero. */
5059void
f2206911 5060frv_split_double_store (rtx dest, rtx source)
36a05131
BS
5061{
5062 rtx dest1 = change_address (dest, SImode, NULL);
5063 rtx dest2 = frv_index_memory (dest, SImode, 1);
5064 if (ZERO_P (source))
5065 {
5066 emit_move_insn (dest1, CONST0_RTX (SImode));
5067 emit_move_insn (dest2, CONST0_RTX (SImode));
5068 }
5069 else
5070 {
5071 emit_move_insn (dest1, gen_highpart (SImode, source));
5072 emit_move_insn (dest2, gen_lowpart (SImode, source));
5073 }
5074}
5075
5076\f
5077/* Split a min/max operation returning a SEQUENCE containing all of the
5078 insns. */
5079
5080rtx
f2206911 5081frv_split_minmax (rtx operands[])
36a05131
BS
5082{
5083 rtx dest = operands[0];
5084 rtx minmax = operands[1];
5085 rtx src1 = operands[2];
5086 rtx src2 = operands[3];
5087 rtx cc_reg = operands[4];
5088 rtx cr_reg = operands[5];
5089 rtx ret;
5090 enum rtx_code test_code;
5091 enum machine_mode cr_mode = GET_MODE (cr_reg);
5092
5093 start_sequence ();
5094
87b483a1 5095 /* Figure out which test to use. */
36a05131
BS
5096 switch (GET_CODE (minmax))
5097 {
5098 default:
44e91694 5099 gcc_unreachable ();
36a05131
BS
5100
5101 case SMIN: test_code = LT; break;
5102 case SMAX: test_code = GT; break;
5103 case UMIN: test_code = LTU; break;
5104 case UMAX: test_code = GTU; break;
5105 }
5106
5107 /* Issue the compare instruction. */
5108 emit_insn (gen_rtx_SET (VOIDmode,
5109 cc_reg,
5110 gen_rtx_COMPARE (GET_MODE (cc_reg),
5111 src1, src2)));
5112
5113 /* Set the appropriate CCR bit. */
5114 emit_insn (gen_rtx_SET (VOIDmode,
5115 cr_reg,
5116 gen_rtx_fmt_ee (test_code,
5117 GET_MODE (cr_reg),
5118 cc_reg,
5119 const0_rtx)));
5120
9cd10576 5121 /* If are taking the min/max of a nonzero constant, load that first, and
36a05131
BS
5122 then do a conditional move of the other value. */
5123 if (GET_CODE (src2) == CONST_INT && INTVAL (src2) != 0)
5124 {
44e91694 5125 gcc_assert (!rtx_equal_p (dest, src1));
36a05131
BS
5126
5127 emit_move_insn (dest, src2);
5128 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5129 gen_rtx_NE (cr_mode, cr_reg, const0_rtx),
5130 gen_rtx_SET (VOIDmode, dest, src1)));
5131 }
5132
5133 /* Otherwise, do each half of the move. */
5134 else
5135 {
5136 /* Emit the conditional move for the test being true if needed. */
5137 if (! rtx_equal_p (dest, src1))
5138 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5139 gen_rtx_NE (cr_mode, cr_reg, const0_rtx),
5140 gen_rtx_SET (VOIDmode, dest, src1)));
5141
5142 /* Emit the conditional move for the test being false if needed. */
5143 if (! rtx_equal_p (dest, src2))
5144 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5145 gen_rtx_EQ (cr_mode, cr_reg, const0_rtx),
5146 gen_rtx_SET (VOIDmode, dest, src2)));
5147 }
5148
5149 /* Finish up, return sequence. */
5150 ret = get_insns ();
5151 end_sequence ();
5152 return ret;
5153}
5154
5155\f
5156/* Split an integer abs operation returning a SEQUENCE containing all of the
5157 insns. */
5158
5159rtx
f2206911 5160frv_split_abs (rtx operands[])
36a05131
BS
5161{
5162 rtx dest = operands[0];
5163 rtx src = operands[1];
5164 rtx cc_reg = operands[2];
5165 rtx cr_reg = operands[3];
5166 rtx ret;
5167
5168 start_sequence ();
5169
5170 /* Issue the compare < 0 instruction. */
5171 emit_insn (gen_rtx_SET (VOIDmode,
5172 cc_reg,
5173 gen_rtx_COMPARE (CCmode, src, const0_rtx)));
5174
5175 /* Set the appropriate CCR bit. */
5176 emit_insn (gen_rtx_SET (VOIDmode,
5177 cr_reg,
5178 gen_rtx_fmt_ee (LT, CC_CCRmode, cc_reg, const0_rtx)));
5179
87b483a1 5180 /* Emit the conditional negate if the value is negative. */
36a05131
BS
5181 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5182 gen_rtx_NE (CC_CCRmode, cr_reg, const0_rtx),
5183 gen_negsi2 (dest, src)));
5184
5185 /* Emit the conditional move for the test being false if needed. */
5186 if (! rtx_equal_p (dest, src))
5187 emit_insn (gen_rtx_COND_EXEC (VOIDmode,
5188 gen_rtx_EQ (CC_CCRmode, cr_reg, const0_rtx),
5189 gen_rtx_SET (VOIDmode, dest, src)));
5190
5191 /* Finish up, return sequence. */
5192 ret = get_insns ();
5193 end_sequence ();
5194 return ret;
5195}
5196
5197\f
5198/* An internal function called by for_each_rtx to clear in a hard_reg set each
5199 register used in an insn. */
5200
5201static int
f2206911 5202frv_clear_registers_used (rtx *ptr, void *data)
36a05131
BS
5203{
5204 if (GET_CODE (*ptr) == REG)
5205 {
5206 int regno = REGNO (*ptr);
5207 HARD_REG_SET *p_regs = (HARD_REG_SET *)data;
5208
5209 if (regno < FIRST_PSEUDO_REGISTER)
5210 {
5211 int reg_max = regno + HARD_REGNO_NREGS (regno, GET_MODE (*ptr));
5212
5213 while (regno < reg_max)
5214 {
5215 CLEAR_HARD_REG_BIT (*p_regs, regno);
5216 regno++;
5217 }
5218 }
5219 }
5220
5221 return 0;
5222}
5223
5224\f
67a0732f
SB
5225/* Initialize machine-specific if-conversion data.
5226 On the FR-V, we don't have any extra fields per se, but it is useful hook to
36a05131
BS
5227 initialize the static storage. */
5228void
67a0732f 5229frv_ifcvt_machdep_init (ce_if_block_t *ce_info ATTRIBUTE_UNUSED)
36a05131
BS
5230{
5231 frv_ifcvt.added_insns_list = NULL_RTX;
5232 frv_ifcvt.cur_scratch_regs = 0;
5233 frv_ifcvt.num_nested_cond_exec = 0;
5234 frv_ifcvt.cr_reg = NULL_RTX;
5235 frv_ifcvt.nested_cc_reg = NULL_RTX;
5236 frv_ifcvt.extra_int_cr = NULL_RTX;
5237 frv_ifcvt.extra_fp_cr = NULL_RTX;
5238 frv_ifcvt.last_nested_if_cr = NULL_RTX;
5239}
5240
5241\f
1ae58c30 5242/* Internal function to add a potential insn to the list of insns to be inserted
36a05131
BS
5243 if the conditional execution conversion is successful. */
5244
5245static void
f2206911 5246frv_ifcvt_add_insn (rtx pattern, rtx insn, int before_p)
36a05131
BS
5247{
5248 rtx link = alloc_EXPR_LIST (VOIDmode, pattern, insn);
5249
87b483a1 5250 link->jump = before_p; /* Mark to add this before or after insn. */
36a05131
BS
5251 frv_ifcvt.added_insns_list = alloc_EXPR_LIST (VOIDmode, link,
5252 frv_ifcvt.added_insns_list);
5253
5254 if (TARGET_DEBUG_COND_EXEC)
5255 {
5256 fprintf (stderr,
5257 "\n:::::::::: frv_ifcvt_add_insn: add the following %s insn %d:\n",
5258 (before_p) ? "before" : "after",
5259 (int)INSN_UID (insn));
5260
5261 debug_rtx (pattern);
5262 }
5263}
5264
5265\f
5266/* A C expression to modify the code described by the conditional if
5267 information CE_INFO, possibly updating the tests in TRUE_EXPR, and
5268 FALSE_EXPR for converting if-then and if-then-else code to conditional
5269 instructions. Set either TRUE_EXPR or FALSE_EXPR to a null pointer if the
5270 tests cannot be converted. */
5271
5272void
f2206911 5273frv_ifcvt_modify_tests (ce_if_block_t *ce_info, rtx *p_true, rtx *p_false)
36a05131
BS
5274{
5275 basic_block test_bb = ce_info->test_bb; /* test basic block */
5276 basic_block then_bb = ce_info->then_bb; /* THEN */
5277 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
5278 basic_block join_bb = ce_info->join_bb; /* join block or NULL */
5279 rtx true_expr = *p_true;
5280 rtx cr;
5281 rtx cc;
5282 rtx nested_cc;
5283 enum machine_mode mode = GET_MODE (true_expr);
5284 int j;
5285 basic_block *bb;
5286 int num_bb;
5287 frv_tmp_reg_t *tmp_reg = &frv_ifcvt.tmp_reg;
5288 rtx check_insn;
5289 rtx sub_cond_exec_reg;
5290 enum rtx_code code;
5291 enum rtx_code code_true;
5292 enum rtx_code code_false;
5293 enum reg_class cc_class;
5294 enum reg_class cr_class;
5295 int cc_first;
5296 int cc_last;
a2041967 5297 reg_set_iterator rsi;
36a05131
BS
5298
5299 /* Make sure we are only dealing with hard registers. Also honor the
5300 -mno-cond-exec switch, and -mno-nested-cond-exec switches if
5301 applicable. */
0b2c18fe
RS
5302 if (!reload_completed || !TARGET_COND_EXEC
5303 || (!TARGET_NESTED_CE && ce_info->pass > 1))
36a05131
BS
5304 goto fail;
5305
5306 /* Figure out which registers we can allocate for our own purposes. Only
5307 consider registers that are not preserved across function calls and are
5308 not fixed. However, allow the ICC/ICR temporary registers to be allocated
87b483a1 5309 if we did not need to use them in reloading other registers. */
fad205ff 5310 memset (&tmp_reg->regs, 0, sizeof (tmp_reg->regs));
36a05131
BS
5311 COPY_HARD_REG_SET (tmp_reg->regs, call_used_reg_set);
5312 AND_COMPL_HARD_REG_SET (tmp_reg->regs, fixed_reg_set);
5313 SET_HARD_REG_BIT (tmp_reg->regs, ICC_TEMP);
5314 SET_HARD_REG_BIT (tmp_reg->regs, ICR_TEMP);
5315
5316 /* If this is a nested IF, we need to discover whether the CC registers that
5317 are set/used inside of the block are used anywhere else. If not, we can
5318 change them to be the CC register that is paired with the CR register that
5319 controls the outermost IF block. */
5320 if (ce_info->pass > 1)
5321 {
5322 CLEAR_HARD_REG_SET (frv_ifcvt.nested_cc_ok_rewrite);
5323 for (j = CC_FIRST; j <= CC_LAST; j++)
5324 if (TEST_HARD_REG_BIT (tmp_reg->regs, j))
5325 {
eedd7243 5326 if (REGNO_REG_SET_P (df_get_live_in (then_bb), j))
36a05131
BS
5327 continue;
5328
5e2d947c 5329 if (else_bb
eedd7243 5330 && REGNO_REG_SET_P (df_get_live_in (else_bb), j))
36a05131
BS
5331 continue;
5332
5e2d947c 5333 if (join_bb
eedd7243 5334 && REGNO_REG_SET_P (df_get_live_in (join_bb), j))
36a05131
BS
5335 continue;
5336
5337 SET_HARD_REG_BIT (frv_ifcvt.nested_cc_ok_rewrite, j);
5338 }
5339 }
5340
5341 for (j = 0; j < frv_ifcvt.cur_scratch_regs; j++)
5342 frv_ifcvt.scratch_regs[j] = NULL_RTX;
5343
5344 frv_ifcvt.added_insns_list = NULL_RTX;
5345 frv_ifcvt.cur_scratch_regs = 0;
5346
5347 bb = (basic_block *) alloca ((2 + ce_info->num_multiple_test_blocks)
5348 * sizeof (basic_block));
5349
5350 if (join_bb)
5351 {
38c28a25 5352 unsigned int regno;
36a05131
BS
5353
5354 /* Remove anything live at the beginning of the join block from being
5355 available for allocation. */
eedd7243 5356 EXECUTE_IF_SET_IN_REG_SET (df_get_live_in (join_bb), 0, regno, rsi)
a2041967
KH
5357 {
5358 if (regno < FIRST_PSEUDO_REGISTER)
5359 CLEAR_HARD_REG_BIT (tmp_reg->regs, regno);
5360 }
36a05131
BS
5361 }
5362
5363 /* Add in all of the blocks in multiple &&/|| blocks to be scanned. */
5364 num_bb = 0;
5365 if (ce_info->num_multiple_test_blocks)
5366 {
5367 basic_block multiple_test_bb = ce_info->last_test_bb;
5368
5369 while (multiple_test_bb != test_bb)
5370 {
5371 bb[num_bb++] = multiple_test_bb;
628f6a4e 5372 multiple_test_bb = EDGE_PRED (multiple_test_bb, 0)->src;
36a05131
BS
5373 }
5374 }
5375
5376 /* Add in the THEN and ELSE blocks to be scanned. */
5377 bb[num_bb++] = then_bb;
5378 if (else_bb)
5379 bb[num_bb++] = else_bb;
5380
5381 sub_cond_exec_reg = NULL_RTX;
5382 frv_ifcvt.num_nested_cond_exec = 0;
5383
5384 /* Scan all of the blocks for registers that must not be allocated. */
5385 for (j = 0; j < num_bb; j++)
5386 {
a813c111
SB
5387 rtx last_insn = BB_END (bb[j]);
5388 rtx insn = BB_HEAD (bb[j]);
38c28a25 5389 unsigned int regno;
36a05131 5390
c263766c
RH
5391 if (dump_file)
5392 fprintf (dump_file, "Scanning %s block %d, start %d, end %d\n",
36a05131
BS
5393 (bb[j] == else_bb) ? "else" : ((bb[j] == then_bb) ? "then" : "test"),
5394 (int) bb[j]->index,
a813c111
SB
5395 (int) INSN_UID (BB_HEAD (bb[j])),
5396 (int) INSN_UID (BB_END (bb[j])));
36a05131
BS
5397
5398 /* Anything live at the beginning of the block is obviously unavailable
5399 for allocation. */
eedd7243 5400 EXECUTE_IF_SET_IN_REG_SET (df_get_live_in (bb[j]), 0, regno, rsi)
a2041967
KH
5401 {
5402 if (regno < FIRST_PSEUDO_REGISTER)
5403 CLEAR_HARD_REG_BIT (tmp_reg->regs, regno);
5404 }
36a05131 5405
87b483a1 5406 /* Loop through the insns in the block. */
36a05131
BS
5407 for (;;)
5408 {
5409 /* Mark any new registers that are created as being unavailable for
5410 allocation. Also see if the CC register used in nested IFs can be
5411 reallocated. */
5412 if (INSN_P (insn))
5413 {
5414 rtx pattern;
5415 rtx set;
5416 int skip_nested_if = FALSE;
5417
5418 for_each_rtx (&PATTERN (insn), frv_clear_registers_used,
5419 (void *)&tmp_reg->regs);
5420
5421 pattern = PATTERN (insn);
5422 if (GET_CODE (pattern) == COND_EXEC)
5423 {
5424 rtx reg = XEXP (COND_EXEC_TEST (pattern), 0);
5425
5426 if (reg != sub_cond_exec_reg)
5427 {
5428 sub_cond_exec_reg = reg;
5429 frv_ifcvt.num_nested_cond_exec++;
5430 }
5431 }
5432
5433 set = single_set_pattern (pattern);
5434 if (set)
5435 {
5436 rtx dest = SET_DEST (set);
5437 rtx src = SET_SRC (set);
5438
5439 if (GET_CODE (dest) == REG)
5440 {
5441 int regno = REGNO (dest);
5442 enum rtx_code src_code = GET_CODE (src);
5443
5444 if (CC_P (regno) && src_code == COMPARE)
5445 skip_nested_if = TRUE;
5446
5447 else if (CR_P (regno)
5448 && (src_code == IF_THEN_ELSE
ec8e098d 5449 || COMPARISON_P (src)))
36a05131
BS
5450 skip_nested_if = TRUE;
5451 }
5452 }
5453
5454 if (! skip_nested_if)
5455 for_each_rtx (&PATTERN (insn), frv_clear_registers_used,
5456 (void *)&frv_ifcvt.nested_cc_ok_rewrite);
5457 }
5458
5459 if (insn == last_insn)
5460 break;
5461
5462 insn = NEXT_INSN (insn);
5463 }
5464 }
5465
5466 /* If this is a nested if, rewrite the CC registers that are available to
5467 include the ones that can be rewritten, to increase the chance of being
5468 able to allocate a paired CC/CR register combination. */
5469 if (ce_info->pass > 1)
5470 {
5471 for (j = CC_FIRST; j <= CC_LAST; j++)
5472 if (TEST_HARD_REG_BIT (frv_ifcvt.nested_cc_ok_rewrite, j))
5473 SET_HARD_REG_BIT (tmp_reg->regs, j);
5474 else
5475 CLEAR_HARD_REG_BIT (tmp_reg->regs, j);
5476 }
5477
c263766c 5478 if (dump_file)
36a05131
BS
5479 {
5480 int num_gprs = 0;
c263766c 5481 fprintf (dump_file, "Available GPRs: ");
36a05131
BS
5482
5483 for (j = GPR_FIRST; j <= GPR_LAST; j++)
5484 if (TEST_HARD_REG_BIT (tmp_reg->regs, j))
5485 {
c263766c 5486 fprintf (dump_file, " %d [%s]", j, reg_names[j]);
36a05131
BS
5487 if (++num_gprs > GPR_TEMP_NUM+2)
5488 break;
5489 }
5490
c263766c 5491 fprintf (dump_file, "%s\nAvailable CRs: ",
36a05131
BS
5492 (num_gprs > GPR_TEMP_NUM+2) ? " ..." : "");
5493
5494 for (j = CR_FIRST; j <= CR_LAST; j++)
5495 if (TEST_HARD_REG_BIT (tmp_reg->regs, j))
c263766c 5496 fprintf (dump_file, " %d [%s]", j, reg_names[j]);
36a05131 5497
c263766c 5498 fputs ("\n", dump_file);
36a05131
BS
5499
5500 if (ce_info->pass > 1)
5501 {
c263766c 5502 fprintf (dump_file, "Modifiable CCs: ");
36a05131
BS
5503 for (j = CC_FIRST; j <= CC_LAST; j++)
5504 if (TEST_HARD_REG_BIT (tmp_reg->regs, j))
c263766c 5505 fprintf (dump_file, " %d [%s]", j, reg_names[j]);
36a05131 5506
c263766c 5507 fprintf (dump_file, "\n%d nested COND_EXEC statements\n",
36a05131
BS
5508 frv_ifcvt.num_nested_cond_exec);
5509 }
5510 }
5511
5512 /* Allocate the appropriate temporary condition code register. Try to
5513 allocate the ICR/FCR register that corresponds to the ICC/FCC register so
5514 that conditional cmp's can be done. */
036ff63f 5515 if (mode == CCmode || mode == CC_UNSmode || mode == CC_NZmode)
36a05131
BS
5516 {
5517 cr_class = ICR_REGS;
5518 cc_class = ICC_REGS;
5519 cc_first = ICC_FIRST;
5520 cc_last = ICC_LAST;
5521 }
5522 else if (mode == CC_FPmode)
5523 {
5524 cr_class = FCR_REGS;
5525 cc_class = FCC_REGS;
5526 cc_first = FCC_FIRST;
5527 cc_last = FCC_LAST;
5528 }
5529 else
5530 {
5531 cc_first = cc_last = 0;
5532 cr_class = cc_class = NO_REGS;
5533 }
5534
5535 cc = XEXP (true_expr, 0);
5536 nested_cc = cr = NULL_RTX;
5537 if (cc_class != NO_REGS)
5538 {
5539 /* For nested IFs and &&/||, see if we can find a CC and CR register pair
5540 so we can execute a csubcc/caddcc/cfcmps instruction. */
5541 int cc_regno;
5542
5543 for (cc_regno = cc_first; cc_regno <= cc_last; cc_regno++)
5544 {
5545 int cr_regno = cc_regno - CC_FIRST + CR_FIRST;
5546
5547 if (TEST_HARD_REG_BIT (frv_ifcvt.tmp_reg.regs, cc_regno)
5548 && TEST_HARD_REG_BIT (frv_ifcvt.tmp_reg.regs, cr_regno))
5549 {
5550 frv_ifcvt.tmp_reg.next_reg[ (int)cr_class ] = cr_regno;
5551 cr = frv_alloc_temp_reg (tmp_reg, cr_class, CC_CCRmode, TRUE,
5552 TRUE);
5553
5554 frv_ifcvt.tmp_reg.next_reg[ (int)cc_class ] = cc_regno;
5555 nested_cc = frv_alloc_temp_reg (tmp_reg, cc_class, CCmode,
5556 TRUE, TRUE);
5557 break;
5558 }
5559 }
5560 }
5561
5562 if (! cr)
5563 {
c263766c
RH
5564 if (dump_file)
5565 fprintf (dump_file, "Could not allocate a CR temporary register\n");
36a05131
BS
5566
5567 goto fail;
5568 }
5569
c263766c
RH
5570 if (dump_file)
5571 fprintf (dump_file,
36a05131
BS
5572 "Will use %s for conditional execution, %s for nested comparisons\n",
5573 reg_names[ REGNO (cr)],
5574 (nested_cc) ? reg_names[ REGNO (nested_cc) ] : "<none>");
5575
5576 /* Set the CCR bit. Note for integer tests, we reverse the condition so that
5577 in an IF-THEN-ELSE sequence, we are testing the TRUE case against the CCR
5578 bit being true. We don't do this for floating point, because of NaNs. */
5579 code = GET_CODE (true_expr);
5580 if (GET_MODE (cc) != CC_FPmode)
5581 {
5582 code = reverse_condition (code);
5583 code_true = EQ;
5584 code_false = NE;
5585 }
5586 else
5587 {
5588 code_true = NE;
5589 code_false = EQ;
5590 }
5591
5592 check_insn = gen_rtx_SET (VOIDmode, cr,
5593 gen_rtx_fmt_ee (code, CC_CCRmode, cc, const0_rtx));
5594
5595 /* Record the check insn to be inserted later. */
a813c111 5596 frv_ifcvt_add_insn (check_insn, BB_END (test_bb), TRUE);
36a05131
BS
5597
5598 /* Update the tests. */
5599 frv_ifcvt.cr_reg = cr;
5600 frv_ifcvt.nested_cc_reg = nested_cc;
5601 *p_true = gen_rtx_fmt_ee (code_true, CC_CCRmode, cr, const0_rtx);
5602 *p_false = gen_rtx_fmt_ee (code_false, CC_CCRmode, cr, const0_rtx);
5603 return;
5604
5605 /* Fail, don't do this conditional execution. */
5606 fail:
5607 *p_true = NULL_RTX;
5608 *p_false = NULL_RTX;
c263766c
RH
5609 if (dump_file)
5610 fprintf (dump_file, "Disabling this conditional execution.\n");
36a05131
BS
5611
5612 return;
5613}
5614
5615\f
5616/* A C expression to modify the code described by the conditional if
5617 information CE_INFO, for the basic block BB, possibly updating the tests in
5618 TRUE_EXPR, and FALSE_EXPR for converting the && and || parts of if-then or
5619 if-then-else code to conditional instructions. Set either TRUE_EXPR or
5620 FALSE_EXPR to a null pointer if the tests cannot be converted. */
5621
5622/* p_true and p_false are given expressions of the form:
5623
5624 (and (eq:CC_CCR (reg:CC_CCR)
5625 (const_int 0))
5626 (eq:CC (reg:CC)
5627 (const_int 0))) */
5628
5629void
f2206911
KC
5630frv_ifcvt_modify_multiple_tests (ce_if_block_t *ce_info,
5631 basic_block bb,
5632 rtx *p_true,
5633 rtx *p_false)
36a05131
BS
5634{
5635 rtx old_true = XEXP (*p_true, 0);
5636 rtx old_false = XEXP (*p_false, 0);
5637 rtx true_expr = XEXP (*p_true, 1);
5638 rtx false_expr = XEXP (*p_false, 1);
5639 rtx test_expr;
5640 rtx old_test;
5641 rtx cr = XEXP (old_true, 0);
5642 rtx check_insn;
5643 rtx new_cr = NULL_RTX;
5644 rtx *p_new_cr = (rtx *)0;
5645 rtx if_else;
5646 rtx compare;
5647 rtx cc;
5648 enum reg_class cr_class;
5649 enum machine_mode mode = GET_MODE (true_expr);
5650 rtx (*logical_func)(rtx, rtx, rtx);
5651
5652 if (TARGET_DEBUG_COND_EXEC)
5653 {
5654 fprintf (stderr,
5655 "\n:::::::::: frv_ifcvt_modify_multiple_tests, before modification for %s\ntrue insn:\n",
5656 ce_info->and_and_p ? "&&" : "||");
5657
5658 debug_rtx (*p_true);
5659
5660 fputs ("\nfalse insn:\n", stderr);
5661 debug_rtx (*p_false);
5662 }
5663
0b2c18fe 5664 if (!TARGET_MULTI_CE)
36a05131
BS
5665 goto fail;
5666
5667 if (GET_CODE (cr) != REG)
5668 goto fail;
b16c1435 5669
036ff63f 5670 if (mode == CCmode || mode == CC_UNSmode || mode == CC_NZmode)
36a05131
BS
5671 {
5672 cr_class = ICR_REGS;
5673 p_new_cr = &frv_ifcvt.extra_int_cr;
5674 }
5675 else if (mode == CC_FPmode)
5676 {
5677 cr_class = FCR_REGS;
5678 p_new_cr = &frv_ifcvt.extra_fp_cr;
5679 }
5680 else
5681 goto fail;
5682
5683 /* Allocate a temp CR, reusing a previously allocated temp CR if we have 3 or
5684 more &&/|| tests. */
5685 new_cr = *p_new_cr;
5686 if (! new_cr)
5687 {
5688 new_cr = *p_new_cr = frv_alloc_temp_reg (&frv_ifcvt.tmp_reg, cr_class,
5689 CC_CCRmode, TRUE, TRUE);
5690 if (! new_cr)
5691 goto fail;
5692 }
5693
5694 if (ce_info->and_and_p)
5695 {
5696 old_test = old_false;
5697 test_expr = true_expr;
5698 logical_func = (GET_CODE (old_true) == EQ) ? gen_andcr : gen_andncr;
5699 *p_true = gen_rtx_NE (CC_CCRmode, cr, const0_rtx);
5700 *p_false = gen_rtx_EQ (CC_CCRmode, cr, const0_rtx);
5701 }
5702 else
5703 {
5704 old_test = old_false;
5705 test_expr = false_expr;
5706 logical_func = (GET_CODE (old_false) == EQ) ? gen_orcr : gen_orncr;
5707 *p_true = gen_rtx_EQ (CC_CCRmode, cr, const0_rtx);
5708 *p_false = gen_rtx_NE (CC_CCRmode, cr, const0_rtx);
5709 }
5710
5711 /* First add the andcr/andncr/orcr/orncr, which will be added after the
5712 conditional check instruction, due to frv_ifcvt_add_insn being a LIFO
5713 stack. */
a813c111 5714 frv_ifcvt_add_insn ((*logical_func) (cr, cr, new_cr), BB_END (bb), TRUE);
36a05131
BS
5715
5716 /* Now add the conditional check insn. */
5717 cc = XEXP (test_expr, 0);
5718 compare = gen_rtx_fmt_ee (GET_CODE (test_expr), CC_CCRmode, cc, const0_rtx);
5719 if_else = gen_rtx_IF_THEN_ELSE (CC_CCRmode, old_test, compare, const0_rtx);
5720
5721 check_insn = gen_rtx_SET (VOIDmode, new_cr, if_else);
5722
87b483a1 5723 /* Add the new check insn to the list of check insns that need to be
36a05131 5724 inserted. */
a813c111 5725 frv_ifcvt_add_insn (check_insn, BB_END (bb), TRUE);
36a05131
BS
5726
5727 if (TARGET_DEBUG_COND_EXEC)
5728 {
5729 fputs ("\n:::::::::: frv_ifcvt_modify_multiple_tests, after modification\ntrue insn:\n",
5730 stderr);
5731
5732 debug_rtx (*p_true);
5733
5734 fputs ("\nfalse insn:\n", stderr);
5735 debug_rtx (*p_false);
5736 }
5737
5738 return;
5739
5740 fail:
5741 *p_true = *p_false = NULL_RTX;
5742
87b483a1 5743 /* If we allocated a CR register, release it. */
36a05131
BS
5744 if (new_cr)
5745 {
5746 CLEAR_HARD_REG_BIT (frv_ifcvt.tmp_reg.regs, REGNO (new_cr));
5747 *p_new_cr = NULL_RTX;
5748 }
5749
5750 if (TARGET_DEBUG_COND_EXEC)
5751 fputs ("\n:::::::::: frv_ifcvt_modify_multiple_tests, failed.\n", stderr);
5752
5753 return;
5754}
5755
5756\f
5757/* Return a register which will be loaded with a value if an IF block is
5758 converted to conditional execution. This is used to rewrite instructions
5759 that use constants to ones that just use registers. */
5760
5761static rtx
f2206911 5762frv_ifcvt_load_value (rtx value, rtx insn ATTRIBUTE_UNUSED)
36a05131
BS
5763{
5764 int num_alloc = frv_ifcvt.cur_scratch_regs;
5765 int i;
5766 rtx reg;
5767
5768 /* We know gr0 == 0, so replace any errant uses. */
5769 if (value == const0_rtx)
5770 return gen_rtx_REG (SImode, GPR_FIRST);
5771
5772 /* First search all registers currently loaded to see if we have an
5773 applicable constant. */
5774 if (CONSTANT_P (value)
5775 || (GET_CODE (value) == REG && REGNO (value) == LR_REGNO))
5776 {
5777 for (i = 0; i < num_alloc; i++)
5778 {
5779 if (rtx_equal_p (SET_SRC (frv_ifcvt.scratch_regs[i]), value))
5780 return SET_DEST (frv_ifcvt.scratch_regs[i]);
5781 }
5782 }
5783
87b483a1 5784 /* Have we exhausted the number of registers available? */
36a05131
BS
5785 if (num_alloc >= GPR_TEMP_NUM)
5786 {
c263766c
RH
5787 if (dump_file)
5788 fprintf (dump_file, "Too many temporary registers allocated\n");
36a05131
BS
5789
5790 return NULL_RTX;
5791 }
5792
5793 /* Allocate the new register. */
5794 reg = frv_alloc_temp_reg (&frv_ifcvt.tmp_reg, GPR_REGS, SImode, TRUE, TRUE);
5795 if (! reg)
5796 {
c263766c
RH
5797 if (dump_file)
5798 fputs ("Could not find a scratch register\n", dump_file);
36a05131
BS
5799
5800 return NULL_RTX;
5801 }
5802
5803 frv_ifcvt.cur_scratch_regs++;
5804 frv_ifcvt.scratch_regs[num_alloc] = gen_rtx_SET (VOIDmode, reg, value);
5805
c263766c 5806 if (dump_file)
36a05131
BS
5807 {
5808 if (GET_CODE (value) == CONST_INT)
c263766c 5809 fprintf (dump_file, "Register %s will hold %ld\n",
36a05131
BS
5810 reg_names[ REGNO (reg)], (long)INTVAL (value));
5811
5812 else if (GET_CODE (value) == REG && REGNO (value) == LR_REGNO)
c263766c 5813 fprintf (dump_file, "Register %s will hold LR\n",
36a05131
BS
5814 reg_names[ REGNO (reg)]);
5815
5816 else
c263766c 5817 fprintf (dump_file, "Register %s will hold a saved value\n",
36a05131
BS
5818 reg_names[ REGNO (reg)]);
5819 }
5820
5821 return reg;
5822}
5823
5824\f
5825/* Update a MEM used in conditional code that might contain an offset to put
5826 the offset into a scratch register, so that the conditional load/store
5827 operations can be used. This function returns the original pointer if the
5828 MEM is valid to use in conditional code, NULL if we can't load up the offset
5829 into a temporary register, or the new MEM if we were successful. */
5830
5831static rtx
f2206911 5832frv_ifcvt_rewrite_mem (rtx mem, enum machine_mode mode, rtx insn)
36a05131
BS
5833{
5834 rtx addr = XEXP (mem, 0);
5835
c6c3dba9 5836 if (!frv_legitimate_address_p_1 (mode, addr, reload_completed, TRUE, FALSE))
36a05131
BS
5837 {
5838 if (GET_CODE (addr) == PLUS)
5839 {
5840 rtx addr_op0 = XEXP (addr, 0);
5841 rtx addr_op1 = XEXP (addr, 1);
5842
34208acf 5843 if (GET_CODE (addr_op0) == REG && CONSTANT_P (addr_op1))
36a05131
BS
5844 {
5845 rtx reg = frv_ifcvt_load_value (addr_op1, insn);
5846 if (!reg)
5847 return NULL_RTX;
5848
5849 addr = gen_rtx_PLUS (Pmode, addr_op0, reg);
5850 }
5851
5852 else
5853 return NULL_RTX;
5854 }
5855
5856 else if (CONSTANT_P (addr))
5857 addr = frv_ifcvt_load_value (addr, insn);
5858
5859 else
5860 return NULL_RTX;
5861
5862 if (addr == NULL_RTX)
5863 return NULL_RTX;
5864
5865 else if (XEXP (mem, 0) != addr)
5866 return change_address (mem, mode, addr);
5867 }
5868
5869 return mem;
5870}
5871
5872\f
5873/* Given a PATTERN, return a SET expression if this PATTERN has only a single
5874 SET, possibly conditionally executed. It may also have CLOBBERs, USEs. */
5875
5876static rtx
f2206911 5877single_set_pattern (rtx pattern)
36a05131
BS
5878{
5879 rtx set;
5880 int i;
5881
5882 if (GET_CODE (pattern) == COND_EXEC)
5883 pattern = COND_EXEC_CODE (pattern);
5884
5885 if (GET_CODE (pattern) == SET)
5886 return pattern;
5887
5888 else if (GET_CODE (pattern) == PARALLEL)
5889 {
5890 for (i = 0, set = 0; i < XVECLEN (pattern, 0); i++)
5891 {
5892 rtx sub = XVECEXP (pattern, 0, i);
5893
5894 switch (GET_CODE (sub))
5895 {
5896 case USE:
5897 case CLOBBER:
5898 break;
5899
5900 case SET:
5901 if (set)
5902 return 0;
5903 else
5904 set = sub;
5905 break;
5906
5907 default:
5908 return 0;
5909 }
5910 }
5911 return set;
5912 }
5913
5914 return 0;
5915}
5916
5917\f
5918/* A C expression to modify the code described by the conditional if
5919 information CE_INFO with the new PATTERN in INSN. If PATTERN is a null
5920 pointer after the IFCVT_MODIFY_INSN macro executes, it is assumed that that
5921 insn cannot be converted to be executed conditionally. */
5922
5923rtx
5da1fd3d 5924frv_ifcvt_modify_insn (ce_if_block_t *ce_info,
f2206911
KC
5925 rtx pattern,
5926 rtx insn)
36a05131
BS
5927{
5928 rtx orig_ce_pattern = pattern;
5929 rtx set;
5930 rtx op0;
5931 rtx op1;
5932 rtx test;
5933
44e91694 5934 gcc_assert (GET_CODE (pattern) == COND_EXEC);
36a05131
BS
5935
5936 test = COND_EXEC_TEST (pattern);
5937 if (GET_CODE (test) == AND)
5938 {
5939 rtx cr = frv_ifcvt.cr_reg;
5940 rtx test_reg;
5941
5942 op0 = XEXP (test, 0);
5943 if (! rtx_equal_p (cr, XEXP (op0, 0)))
5944 goto fail;
5945
5946 op1 = XEXP (test, 1);
5947 test_reg = XEXP (op1, 0);
5948 if (GET_CODE (test_reg) != REG)
5949 goto fail;
5950
5951 /* Is this the first nested if block in this sequence? If so, generate
5952 an andcr or andncr. */
5953 if (! frv_ifcvt.last_nested_if_cr)
5954 {
5955 rtx and_op;
5956
5957 frv_ifcvt.last_nested_if_cr = test_reg;
5958 if (GET_CODE (op0) == NE)
5959 and_op = gen_andcr (test_reg, cr, test_reg);
5960 else
5961 and_op = gen_andncr (test_reg, cr, test_reg);
5962
5963 frv_ifcvt_add_insn (and_op, insn, TRUE);
5964 }
5965
5966 /* If this isn't the first statement in the nested if sequence, see if we
5967 are dealing with the same register. */
5968 else if (! rtx_equal_p (test_reg, frv_ifcvt.last_nested_if_cr))
5969 goto fail;
5970
5971 COND_EXEC_TEST (pattern) = test = op1;
5972 }
5973
5974 /* If this isn't a nested if, reset state variables. */
5975 else
5976 {
5977 frv_ifcvt.last_nested_if_cr = NULL_RTX;
5978 }
5979
5980 set = single_set_pattern (pattern);
5981 if (set)
5982 {
5983 rtx dest = SET_DEST (set);
5984 rtx src = SET_SRC (set);
5985 enum machine_mode mode = GET_MODE (dest);
5986
87b483a1 5987 /* Check for normal binary operators. */
ec8e098d 5988 if (mode == SImode && ARITHMETIC_P (src))
36a05131
BS
5989 {
5990 op0 = XEXP (src, 0);
5991 op1 = XEXP (src, 1);
5992
34208acf 5993 if (integer_register_operand (op0, SImode) && CONSTANT_P (op1))
36a05131
BS
5994 {
5995 op1 = frv_ifcvt_load_value (op1, insn);
5996 if (op1)
5997 COND_EXEC_CODE (pattern)
5998 = gen_rtx_SET (VOIDmode, dest, gen_rtx_fmt_ee (GET_CODE (src),
5999 GET_MODE (src),
6000 op0, op1));
6001 else
6002 goto fail;
6003 }
6004 }
6005
6006 /* For multiply by a constant, we need to handle the sign extending
6007 correctly. Add a USE of the value after the multiply to prevent flow
6008 from cratering because only one register out of the two were used. */
6009 else if (mode == DImode && GET_CODE (src) == MULT)
6010 {
6011 op0 = XEXP (src, 0);
6012 op1 = XEXP (src, 1);
6013 if (GET_CODE (op0) == SIGN_EXTEND && GET_CODE (op1) == CONST_INT)
6014 {
6015 op1 = frv_ifcvt_load_value (op1, insn);
6016 if (op1)
6017 {
6018 op1 = gen_rtx_SIGN_EXTEND (DImode, op1);
6019 COND_EXEC_CODE (pattern)
6020 = gen_rtx_SET (VOIDmode, dest,
6021 gen_rtx_MULT (DImode, op0, op1));
6022 }
6023 else
6024 goto fail;
6025 }
6026
c41c1387 6027 frv_ifcvt_add_insn (gen_use (dest), insn, FALSE);
36a05131
BS
6028 }
6029
6030 /* If we are just loading a constant created for a nested conditional
6031 execution statement, just load the constant without any conditional
6032 execution, since we know that the constant will not interfere with any
6033 other registers. */
6034 else if (frv_ifcvt.scratch_insns_bitmap
6035 && bitmap_bit_p (frv_ifcvt.scratch_insns_bitmap,
5da1fd3d 6036 INSN_UID (insn))
5da1fd3d 6037 && REG_P (SET_DEST (set))
9a228f09
AO
6038 /* We must not unconditionally set a scratch reg chosen
6039 for a nested if-converted block if its incoming
6040 value from the TEST block (or the result of the THEN
6041 branch) could/should propagate to the JOIN block.
6042 It suffices to test whether the register is live at
6043 the JOIN point: if it's live there, we can infer
6044 that we set it in the former JOIN block of the
6045 nested if-converted block (otherwise it wouldn't
6046 have been available as a scratch register), and it
6047 is either propagated through or set in the other
6048 conditional block. It's probably not worth trying
6049 to catch the latter case, and it could actually
6050 limit scheduling of the combined block quite
6051 severely. */
6052 && ce_info->join_bb
eedd7243
RIL
6053 && ! (REGNO_REG_SET_P (df_get_live_in (ce_info->join_bb),
6054 REGNO (SET_DEST (set))))
9a228f09
AO
6055 /* Similarly, we must not unconditionally set a reg
6056 used as scratch in the THEN branch if the same reg
6057 is live in the ELSE branch. */
5da1fd3d
AO
6058 && (! ce_info->else_bb
6059 || BLOCK_FOR_INSN (insn) == ce_info->else_bb
eedd7243
RIL
6060 || ! (REGNO_REG_SET_P (df_get_live_in (ce_info->else_bb),
6061 REGNO (SET_DEST (set))))))
36a05131
BS
6062 pattern = set;
6063
6064 else if (mode == QImode || mode == HImode || mode == SImode
6065 || mode == SFmode)
6066 {
6067 int changed_p = FALSE;
6068
6069 /* Check for just loading up a constant */
6070 if (CONSTANT_P (src) && integer_register_operand (dest, mode))
6071 {
6072 src = frv_ifcvt_load_value (src, insn);
6073 if (!src)
6074 goto fail;
6075
6076 changed_p = TRUE;
6077 }
6078
6079 /* See if we need to fix up stores */
6080 if (GET_CODE (dest) == MEM)
6081 {
6082 rtx new_mem = frv_ifcvt_rewrite_mem (dest, mode, insn);
6083
6084 if (!new_mem)
6085 goto fail;
6086
6087 else if (new_mem != dest)
6088 {
6089 changed_p = TRUE;
6090 dest = new_mem;
6091 }
6092 }
6093
6094 /* See if we need to fix up loads */
6095 if (GET_CODE (src) == MEM)
6096 {
6097 rtx new_mem = frv_ifcvt_rewrite_mem (src, mode, insn);
6098
6099 if (!new_mem)
6100 goto fail;
6101
6102 else if (new_mem != src)
6103 {
6104 changed_p = TRUE;
6105 src = new_mem;
6106 }
6107 }
6108
6109 /* If either src or destination changed, redo SET. */
6110 if (changed_p)
6111 COND_EXEC_CODE (pattern) = gen_rtx_SET (VOIDmode, dest, src);
6112 }
6113
6114 /* Rewrite a nested set cccr in terms of IF_THEN_ELSE. Also deal with
6115 rewriting the CC register to be the same as the paired CC/CR register
6116 for nested ifs. */
ec8e098d 6117 else if (mode == CC_CCRmode && COMPARISON_P (src))
36a05131
BS
6118 {
6119 int regno = REGNO (XEXP (src, 0));
6120 rtx if_else;
6121
6122 if (ce_info->pass > 1
6123 && regno != (int)REGNO (frv_ifcvt.nested_cc_reg)
6124 && TEST_HARD_REG_BIT (frv_ifcvt.nested_cc_ok_rewrite, regno))
6125 {
6126 src = gen_rtx_fmt_ee (GET_CODE (src),
6127 CC_CCRmode,
6128 frv_ifcvt.nested_cc_reg,
6129 XEXP (src, 1));
6130 }
6131
6132 if_else = gen_rtx_IF_THEN_ELSE (CC_CCRmode, test, src, const0_rtx);
6133 pattern = gen_rtx_SET (VOIDmode, dest, if_else);
6134 }
6135
6136 /* Remap a nested compare instruction to use the paired CC/CR reg. */
6137 else if (ce_info->pass > 1
6138 && GET_CODE (dest) == REG
6139 && CC_P (REGNO (dest))
6140 && REGNO (dest) != REGNO (frv_ifcvt.nested_cc_reg)
6141 && TEST_HARD_REG_BIT (frv_ifcvt.nested_cc_ok_rewrite,
6142 REGNO (dest))
6143 && GET_CODE (src) == COMPARE)
6144 {
6145 PUT_MODE (frv_ifcvt.nested_cc_reg, GET_MODE (dest));
6146 COND_EXEC_CODE (pattern)
6147 = gen_rtx_SET (VOIDmode, frv_ifcvt.nested_cc_reg, copy_rtx (src));
6148 }
6149 }
6150
6151 if (TARGET_DEBUG_COND_EXEC)
6152 {
6153 rtx orig_pattern = PATTERN (insn);
6154
6155 PATTERN (insn) = pattern;
6156 fprintf (stderr,
6157 "\n:::::::::: frv_ifcvt_modify_insn: pass = %d, insn after modification:\n",
6158 ce_info->pass);
6159
6160 debug_rtx (insn);
6161 PATTERN (insn) = orig_pattern;
6162 }
6163
6164 return pattern;
6165
6166 fail:
6167 if (TARGET_DEBUG_COND_EXEC)
6168 {
6169 rtx orig_pattern = PATTERN (insn);
6170
6171 PATTERN (insn) = orig_ce_pattern;
6172 fprintf (stderr,
6173 "\n:::::::::: frv_ifcvt_modify_insn: pass = %d, insn could not be modified:\n",
6174 ce_info->pass);
6175
6176 debug_rtx (insn);
6177 PATTERN (insn) = orig_pattern;
6178 }
6179
6180 return NULL_RTX;
6181}
6182
6183\f
6184/* A C expression to perform any final machine dependent modifications in
6185 converting code to conditional execution in the code described by the
6186 conditional if information CE_INFO. */
6187
6188void
f2206911 6189frv_ifcvt_modify_final (ce_if_block_t *ce_info ATTRIBUTE_UNUSED)
36a05131
BS
6190{
6191 rtx existing_insn;
6192 rtx check_insn;
6193 rtx p = frv_ifcvt.added_insns_list;
6194 int i;
6195
6196 /* Loop inserting the check insns. The last check insn is the first test,
6197 and is the appropriate place to insert constants. */
44e91694 6198 gcc_assert (p);
36a05131
BS
6199
6200 do
6201 {
6202 rtx check_and_insert_insns = XEXP (p, 0);
6203 rtx old_p = p;
6204
6205 check_insn = XEXP (check_and_insert_insns, 0);
6206 existing_insn = XEXP (check_and_insert_insns, 1);
6207 p = XEXP (p, 1);
6208
6209 /* The jump bit is used to say that the new insn is to be inserted BEFORE
6210 the existing insn, otherwise it is to be inserted AFTER. */
6211 if (check_and_insert_insns->jump)
6212 {
6213 emit_insn_before (check_insn, existing_insn);
6214 check_and_insert_insns->jump = 0;
6215 }
6216 else
6217 emit_insn_after (check_insn, existing_insn);
6218
6219 free_EXPR_LIST_node (check_and_insert_insns);
6220 free_EXPR_LIST_node (old_p);
6221 }
6222 while (p != NULL_RTX);
6223
6224 /* Load up any constants needed into temp gprs */
6225 for (i = 0; i < frv_ifcvt.cur_scratch_regs; i++)
6226 {
6227 rtx insn = emit_insn_before (frv_ifcvt.scratch_regs[i], existing_insn);
6228 if (! frv_ifcvt.scratch_insns_bitmap)
7b210806 6229 frv_ifcvt.scratch_insns_bitmap = BITMAP_ALLOC (NULL);
36a05131
BS
6230 bitmap_set_bit (frv_ifcvt.scratch_insns_bitmap, INSN_UID (insn));
6231 frv_ifcvt.scratch_regs[i] = NULL_RTX;
6232 }
6233
6234 frv_ifcvt.added_insns_list = NULL_RTX;
6235 frv_ifcvt.cur_scratch_regs = 0;
6236}
6237
6238\f
6239/* A C expression to cancel any machine dependent modifications in converting
6240 code to conditional execution in the code described by the conditional if
6241 information CE_INFO. */
6242
6243void
f2206911 6244frv_ifcvt_modify_cancel (ce_if_block_t *ce_info ATTRIBUTE_UNUSED)
36a05131
BS
6245{
6246 int i;
6247 rtx p = frv_ifcvt.added_insns_list;
6248
6249 /* Loop freeing up the EXPR_LIST's allocated. */
6250 while (p != NULL_RTX)
6251 {
6252 rtx check_and_jump = XEXP (p, 0);
6253 rtx old_p = p;
6254
6255 p = XEXP (p, 1);
6256 free_EXPR_LIST_node (check_and_jump);
6257 free_EXPR_LIST_node (old_p);
6258 }
6259
6260 /* Release any temporary gprs allocated. */
6261 for (i = 0; i < frv_ifcvt.cur_scratch_regs; i++)
6262 frv_ifcvt.scratch_regs[i] = NULL_RTX;
6263
6264 frv_ifcvt.added_insns_list = NULL_RTX;
6265 frv_ifcvt.cur_scratch_regs = 0;
6266 return;
6267}
6268\f
6269/* A C expression for the size in bytes of the trampoline, as an integer.
6270 The template is:
6271
6272 setlo #0, <jmp_reg>
6273 setlo #0, <static_chain>
6274 sethi #0, <jmp_reg>
6275 sethi #0, <static_chain>
6276 jmpl @(gr0,<jmp_reg>) */
6277
6278int
f2206911 6279frv_trampoline_size (void)
36a05131 6280{
34208acf
AO
6281 if (TARGET_FDPIC)
6282 /* Allocate room for the function descriptor and the lddi
6283 instruction. */
6284 return 8 + 6 * 4;
6285 return 5 /* instructions */ * 4 /* instruction size. */;
36a05131
BS
6286}
6287
6288\f
6289/* A C statement to initialize the variable parts of a trampoline. ADDR is an
6290 RTX for the address of the trampoline; FNADDR is an RTX for the address of
6291 the nested function; STATIC_CHAIN is an RTX for the static chain value that
6292 should be passed to the function when it is called.
6293
6294 The template is:
6295
6296 setlo #0, <jmp_reg>
6297 setlo #0, <static_chain>
6298 sethi #0, <jmp_reg>
6299 sethi #0, <static_chain>
6300 jmpl @(gr0,<jmp_reg>) */
6301
e9d5fdb2
RH
6302static void
6303frv_trampoline_init (rtx m_tramp, tree fndecl, rtx static_chain)
36a05131 6304{
e9d5fdb2
RH
6305 rtx addr = XEXP (m_tramp, 0);
6306 rtx fnaddr = XEXP (DECL_RTL (fndecl), 0);
36a05131
BS
6307 rtx sc_reg = force_reg (Pmode, static_chain);
6308
6309 emit_library_call (gen_rtx_SYMBOL_REF (SImode, "__trampoline_setup"),
5c5e8419 6310 LCT_NORMAL, VOIDmode, 4,
36a05131
BS
6311 addr, Pmode,
6312 GEN_INT (frv_trampoline_size ()), SImode,
6313 fnaddr, Pmode,
6314 sc_reg, Pmode);
6315}
6316
6317\f
6318/* Many machines have some registers that cannot be copied directly to or from
6319 memory or even from other types of registers. An example is the `MQ'
6320 register, which on most machines, can only be copied to or from general
6321 registers, but not memory. Some machines allow copying all registers to and
6322 from memory, but require a scratch register for stores to some memory
6323 locations (e.g., those with symbolic address on the RT, and those with
981f6289 6324 certain symbolic address on the SPARC when compiling PIC). In some cases,
36a05131
BS
6325 both an intermediate and a scratch register are required.
6326
6327 You should define these macros to indicate to the reload phase that it may
6328 need to allocate at least one register for a reload in addition to the
6329 register to contain the data. Specifically, if copying X to a register
0a2aaacc 6330 RCLASS in MODE requires an intermediate register, you should define
36a05131
BS
6331 `SECONDARY_INPUT_RELOAD_CLASS' to return the largest register class all of
6332 whose registers can be used as intermediate registers or scratch registers.
6333
0a2aaacc 6334 If copying a register RCLASS in MODE to X requires an intermediate or scratch
36a05131
BS
6335 register, `SECONDARY_OUTPUT_RELOAD_CLASS' should be defined to return the
6336 largest register class required. If the requirements for input and output
6337 reloads are the same, the macro `SECONDARY_RELOAD_CLASS' should be used
6338 instead of defining both macros identically.
6339
6340 The values returned by these macros are often `GENERAL_REGS'. Return
6341 `NO_REGS' if no spare register is needed; i.e., if X can be directly copied
0a2aaacc 6342 to or from a register of RCLASS in MODE without requiring a scratch register.
36a05131
BS
6343 Do not define this macro if it would always return `NO_REGS'.
6344
6345 If a scratch register is required (either with or without an intermediate
6346 register), you should define patterns for `reload_inM' or `reload_outM', as
6347 required.. These patterns, which will normally be implemented with a
6348 `define_expand', should be similar to the `movM' patterns, except that
6349 operand 2 is the scratch register.
6350
6351 Define constraints for the reload register and scratch register that contain
6352 a single register class. If the original reload register (whose class is
0a2aaacc 6353 RCLASS) can meet the constraint given in the pattern, the value returned by
36a05131
BS
6354 these macros is used for the class of the scratch register. Otherwise, two
6355 additional reload registers are required. Their classes are obtained from
6356 the constraints in the insn pattern.
6357
6358 X might be a pseudo-register or a `subreg' of a pseudo-register, which could
6359 either be in a hard register or in memory. Use `true_regnum' to find out;
6360 it will return -1 if the pseudo is in memory and the hard register number if
6361 it is in a register.
6362
6363 These macros should not be used in the case where a particular class of
6364 registers can only be copied to memory and not to another class of
6365 registers. In that case, secondary reload registers are not needed and
6366 would not be helpful. Instead, a stack location must be used to perform the
43aa4e05 6367 copy and the `movM' pattern should use memory as an intermediate storage.
36a05131
BS
6368 This case often occurs between floating-point and general registers. */
6369
6370enum reg_class
0a2aaacc 6371frv_secondary_reload_class (enum reg_class rclass,
f2206911 6372 enum machine_mode mode ATTRIBUTE_UNUSED,
35f2d8ef 6373 rtx x)
36a05131
BS
6374{
6375 enum reg_class ret;
6376
0a2aaacc 6377 switch (rclass)
36a05131
BS
6378 {
6379 default:
6380 ret = NO_REGS;
6381 break;
6382
6383 /* Accumulators/Accumulator guard registers need to go through floating
6384 point registers. */
6385 case QUAD_REGS:
36a05131
BS
6386 case GPR_REGS:
6387 ret = NO_REGS;
6388 if (x && GET_CODE (x) == REG)
6389 {
6390 int regno = REGNO (x);
6391
6392 if (ACC_P (regno) || ACCG_P (regno))
6393 ret = FPR_REGS;
6394 }
6395 break;
6396
9cd10576 6397 /* Nonzero constants should be loaded into an FPR through a GPR. */
36a05131 6398 case QUAD_FPR_REGS:
36a05131
BS
6399 if (x && CONSTANT_P (x) && !ZERO_P (x))
6400 ret = GPR_REGS;
6401 else
6402 ret = NO_REGS;
6403 break;
6404
6405 /* All of these types need gpr registers. */
6406 case ICC_REGS:
6407 case FCC_REGS:
6408 case CC_REGS:
6409 case ICR_REGS:
6410 case FCR_REGS:
6411 case CR_REGS:
6412 case LCR_REG:
6413 case LR_REG:
6414 ret = GPR_REGS;
6415 break;
6416
35f2d8ef 6417 /* The accumulators need fpr registers. */
36a05131
BS
6418 case QUAD_ACC_REGS:
6419 case ACCG_REGS:
6420 ret = FPR_REGS;
6421 break;
6422 }
6423
6424 return ret;
6425}
6426
35f2d8ef
NC
6427/* This hook exists to catch the case where secondary_reload_class() is
6428 called from init_reg_autoinc() in regclass.c - before the reload optabs
6429 have been initialised. */
6430
a87cf97e
JR
6431static reg_class_t
6432frv_secondary_reload (bool in_p, rtx x, reg_class_t reload_class_i,
35f2d8ef
NC
6433 enum machine_mode reload_mode,
6434 secondary_reload_info * sri)
6435{
6436 enum reg_class rclass = NO_REGS;
a87cf97e 6437 enum reg_class reload_class = (enum reg_class) reload_class_i;
35f2d8ef
NC
6438
6439 if (sri->prev_sri && sri->prev_sri->t_icode != CODE_FOR_nothing)
6440 {
6441 sri->icode = sri->prev_sri->t_icode;
6442 return NO_REGS;
6443 }
6444
6445 rclass = frv_secondary_reload_class (reload_class, reload_mode, x);
6446
6447 if (rclass != NO_REGS)
6448 {
f9621cc4
RS
6449 enum insn_code icode
6450 = direct_optab_handler (in_p ? reload_in_optab : reload_out_optab,
6451 reload_mode);
35f2d8ef
NC
6452 if (icode == 0)
6453 {
6454 /* This happens when then the reload_[in|out]_optabs have
6455 not been initialised. */
6456 sri->t_icode = CODE_FOR_nothing;
6457 return rclass;
6458 }
6459 }
6460
6461 /* Fall back to the default secondary reload handler. */
6462 return default_secondary_reload (in_p, x, reload_class, reload_mode, sri);
6463
6464}
36a05131 6465\f
c28350ab 6466/* Worker function for TARGET_CLASS_LIKELY_SPILLED_P. */
36a05131 6467
c28350ab
AS
6468static bool
6469frv_class_likely_spilled_p (reg_class_t rclass)
36a05131 6470{
0a2aaacc 6471 switch (rclass)
36a05131
BS
6472 {
6473 default:
6474 break;
6475
17c21957
AO
6476 case GR8_REGS:
6477 case GR9_REGS:
6478 case GR89_REGS:
6479 case FDPIC_FPTR_REGS:
6480 case FDPIC_REGS:
36a05131
BS
6481 case ICC_REGS:
6482 case FCC_REGS:
6483 case CC_REGS:
6484 case ICR_REGS:
6485 case FCR_REGS:
6486 case CR_REGS:
6487 case LCR_REG:
6488 case LR_REG:
6489 case SPR_REGS:
6490 case QUAD_ACC_REGS:
36a05131 6491 case ACCG_REGS:
c28350ab 6492 return true;
36a05131
BS
6493 }
6494
c28350ab 6495 return false;
36a05131
BS
6496}
6497
6498\f
6499/* An expression for the alignment of a structure field FIELD if the
7ec022b2 6500 alignment computed in the usual way is COMPUTED. GCC uses this
36a05131
BS
6501 value instead of the value in `BIGGEST_ALIGNMENT' or
6502 `BIGGEST_FIELD_ALIGNMENT', if defined, for structure fields only. */
6503
6504/* The definition type of the bit field data is either char, short, long or
6505 long long. The maximum bit size is the number of bits of its own type.
6506
6507 The bit field data is assigned to a storage unit that has an adequate size
6508 for bit field data retention and is located at the smallest address.
6509
6510 Consecutive bit field data are packed at consecutive bits having the same
6511 storage unit, with regard to the type, beginning with the MSB and continuing
6512 toward the LSB.
6513
6514 If a field to be assigned lies over a bit field type boundary, its
6515 assignment is completed by aligning it with a boundary suitable for the
6516 type.
6517
6518 When a bit field having a bit length of 0 is declared, it is forcibly
6519 assigned to the next storage unit.
6520
6521 e.g)
6522 struct {
6523 int a:2;
6524 int b:6;
6525 char c:4;
6526 int d:10;
6527 int :0;
6528 int f:2;
6529 } x;
6530
6531 +0 +1 +2 +3
6532 &x 00000000 00000000 00000000 00000000
6533 MLM----L
6534 a b
6535 &x+4 00000000 00000000 00000000 00000000
6536 M--L
6537 c
6538 &x+8 00000000 00000000 00000000 00000000
6539 M----------L
6540 d
6541 &x+12 00000000 00000000 00000000 00000000
6542 ML
6543 f
6544*/
6545
6546int
f2206911 6547frv_adjust_field_align (tree field, int computed)
36a05131 6548{
b16c1435
EC
6549 /* Make sure that the bitfield is not wider than the type. */
6550 if (DECL_BIT_FIELD (field)
25f93e18 6551 && !DECL_ARTIFICIAL (field))
36a05131
BS
6552 {
6553 tree parent = DECL_CONTEXT (field);
6554 tree prev = NULL_TREE;
6555 tree cur;
6556
910ad8de 6557 for (cur = TYPE_FIELDS (parent); cur && cur != field; cur = DECL_CHAIN (cur))
36a05131
BS
6558 {
6559 if (TREE_CODE (cur) != FIELD_DECL)
6560 continue;
6561
6562 prev = cur;
6563 }
6564
44e91694 6565 gcc_assert (cur);
36a05131
BS
6566
6567 /* If this isn't a :0 field and if the previous element is a bitfield
6568 also, see if the type is different, if so, we will need to align the
87b483a1 6569 bit-field to the next boundary. */
36a05131
BS
6570 if (prev
6571 && ! DECL_PACKED (field)
6572 && ! integer_zerop (DECL_SIZE (field))
6573 && DECL_BIT_FIELD_TYPE (field) != DECL_BIT_FIELD_TYPE (prev))
6574 {
6575 int prev_align = TYPE_ALIGN (TREE_TYPE (prev));
6576 int cur_align = TYPE_ALIGN (TREE_TYPE (field));
6577 computed = (prev_align > cur_align) ? prev_align : cur_align;
6578 }
6579 }
6580
6581 return computed;
6582}
6583
6584\f
6585/* A C expression that is nonzero if it is permissible to store a value of mode
6586 MODE in hard register number REGNO (or in several registers starting with
6587 that one). For a machine where all registers are equivalent, a suitable
6588 definition is
6589
6590 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
6591
6592 It is not necessary for this macro to check for the numbers of fixed
6593 registers, because the allocation mechanism considers them to be always
6594 occupied.
6595
6596 On some machines, double-precision values must be kept in even/odd register
6597 pairs. The way to implement that is to define this macro to reject odd
6598 register numbers for such modes.
6599
6600 The minimum requirement for a mode to be OK in a register is that the
6601 `movMODE' instruction pattern support moves between the register and any
6602 other hard register for which the mode is OK; and that moving a value into
6603 the register and back out not alter it.
6604
6605 Since the same instruction used to move `SImode' will work for all narrower
6606 integer modes, it is not necessary on any machine for `HARD_REGNO_MODE_OK'
6607 to distinguish between these modes, provided you define patterns `movhi',
6608 etc., to take advantage of this. This is useful because of the interaction
6609 between `HARD_REGNO_MODE_OK' and `MODES_TIEABLE_P'; it is very desirable for
6610 all integer modes to be tieable.
6611
6612 Many machines have special registers for floating point arithmetic. Often
6613 people assume that floating point machine modes are allowed only in floating
6614 point registers. This is not true. Any registers that can hold integers
6615 can safely *hold* a floating point machine mode, whether or not floating
6616 arithmetic can be done on it in those registers. Integer move instructions
6617 can be used to move the values.
6618
6619 On some machines, though, the converse is true: fixed-point machine modes
6620 may not go in floating registers. This is true if the floating registers
6621 normalize any value stored in them, because storing a non-floating value
6622 there would garble it. In this case, `HARD_REGNO_MODE_OK' should reject
6623 fixed-point machine modes in floating registers. But if the floating
6624 registers do not automatically normalize, if you can store any bit pattern
6625 in one and retrieve it unchanged without a trap, then any machine mode may
6626 go in a floating register, so you can define this macro to say so.
6627
6628 The primary significance of special floating registers is rather that they
6629 are the registers acceptable in floating point arithmetic instructions.
6630 However, this is of no concern to `HARD_REGNO_MODE_OK'. You handle it by
6631 writing the proper constraints for those instructions.
6632
6633 On some machines, the floating registers are especially slow to access, so
6634 that it is better to store a value in a stack frame than in such a register
6635 if floating point arithmetic is not being done. As long as the floating
6636 registers are not in class `GENERAL_REGS', they will not be used unless some
6637 pattern's constraint asks for one. */
6638
6639int
f2206911 6640frv_hard_regno_mode_ok (int regno, enum machine_mode mode)
36a05131
BS
6641{
6642 int base;
6643 int mask;
6644
6645 switch (mode)
6646 {
6647 case CCmode:
6648 case CC_UNSmode:
036ff63f 6649 case CC_NZmode:
36a05131
BS
6650 return ICC_P (regno) || GPR_P (regno);
6651
6652 case CC_CCRmode:
6653 return CR_P (regno) || GPR_P (regno);
6654
6655 case CC_FPmode:
6656 return FCC_P (regno) || GPR_P (regno);
6657
6658 default:
6659 break;
6660 }
6661
6662 /* Set BASE to the first register in REGNO's class. Set MASK to the
6663 bits that must be clear in (REGNO - BASE) for the register to be
6664 well-aligned. */
6665 if (INTEGRAL_MODE_P (mode) || FLOAT_MODE_P (mode) || VECTOR_MODE_P (mode))
6666 {
6667 if (ACCG_P (regno))
6668 {
6669 /* ACCGs store one byte. Two-byte quantities must start in
6670 even-numbered registers, four-byte ones in registers whose
6671 numbers are divisible by four, and so on. */
6672 base = ACCG_FIRST;
6673 mask = GET_MODE_SIZE (mode) - 1;
6674 }
6675 else
6676 {
b16c1435
EC
6677 /* The other registers store one word. */
6678 if (GPR_P (regno) || regno == AP_FIRST)
36a05131
BS
6679 base = GPR_FIRST;
6680
6681 else if (FPR_P (regno))
6682 base = FPR_FIRST;
6683
6684 else if (ACC_P (regno))
6685 base = ACC_FIRST;
6686
b16c1435
EC
6687 else if (SPR_P (regno))
6688 return mode == SImode;
6689
87b483a1 6690 /* Fill in the table. */
36a05131
BS
6691 else
6692 return 0;
6693
6694 /* Anything smaller than an SI is OK in any word-sized register. */
6695 if (GET_MODE_SIZE (mode) < 4)
6696 return 1;
6697
6698 mask = (GET_MODE_SIZE (mode) / 4) - 1;
6699 }
6700 return (((regno - base) & mask) == 0);
6701 }
6702
6703 return 0;
6704}
6705
6706\f
6707/* A C expression for the number of consecutive hard registers, starting at
6708 register number REGNO, required to hold a value of mode MODE.
6709
6710 On a machine where all registers are exactly one word, a suitable definition
6711 of this macro is
6712
6713 #define HARD_REGNO_NREGS(REGNO, MODE) \
6714 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) \
6715 / UNITS_PER_WORD)) */
6716
6717/* On the FRV, make the CC_FP mode take 3 words in the integer registers, so
6718 that we can build the appropriate instructions to properly reload the
6719 values. Also, make the byte-sized accumulator guards use one guard
6720 for each byte. */
6721
6722int
f2206911 6723frv_hard_regno_nregs (int regno, enum machine_mode mode)
36a05131
BS
6724{
6725 if (ACCG_P (regno))
6726 return GET_MODE_SIZE (mode);
6727 else
6728 return (GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
6729}
6730
6731\f
6732/* A C expression for the maximum number of consecutive registers of
0a2aaacc 6733 class RCLASS needed to hold a value of mode MODE.
36a05131
BS
6734
6735 This is closely related to the macro `HARD_REGNO_NREGS'. In fact, the value
0a2aaacc
KG
6736 of the macro `CLASS_MAX_NREGS (RCLASS, MODE)' should be the maximum value of
6737 `HARD_REGNO_NREGS (REGNO, MODE)' for all REGNO values in the class RCLASS.
36a05131
BS
6738
6739 This macro helps control the handling of multiple-word values in
6740 the reload pass.
6741
6742 This declaration is required. */
6743
6744int
0a2aaacc 6745frv_class_max_nregs (enum reg_class rclass, enum machine_mode mode)
36a05131 6746{
0a2aaacc 6747 if (rclass == ACCG_REGS)
36a05131
BS
6748 /* An N-byte value requires N accumulator guards. */
6749 return GET_MODE_SIZE (mode);
6750 else
6751 return (GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
6752}
6753
6754\f
6755/* A C expression that is nonzero if X is a legitimate constant for an
6756 immediate operand on the target machine. You can assume that X satisfies
6757 `CONSTANT_P', so you need not check this. In fact, `1' is a suitable
6758 definition for this macro on machines where anything `CONSTANT_P' is valid. */
6759
1a627b35
RS
6760static bool
6761frv_legitimate_constant_p (enum machine_mode mode, rtx x)
36a05131 6762{
34208acf
AO
6763 /* frv_cannot_force_const_mem always returns true for FDPIC. This
6764 means that the move expanders will be expected to deal with most
6765 kinds of constant, regardless of what we return here.
6766
1a627b35 6767 However, among its other duties, frv_legitimate_constant_p decides whether
34208acf
AO
6768 a constant can be entered into reg_equiv_constant[]. If we return true,
6769 reload can create new instances of the constant whenever it likes.
6770
6771 The idea is therefore to accept as many constants as possible (to give
6772 reload more freedom) while rejecting constants that can only be created
6773 at certain times. In particular, anything with a symbolic component will
6774 require use of the pseudo FDPIC register, which is only available before
6775 reload. */
6776 if (TARGET_FDPIC)
6777 return LEGITIMATE_PIC_OPERAND_P (x);
6778
87b483a1 6779 /* All of the integer constants are ok. */
36a05131
BS
6780 if (GET_CODE (x) != CONST_DOUBLE)
6781 return TRUE;
6782
87b483a1 6783 /* double integer constants are ok. */
1a627b35 6784 if (GET_MODE (x) == VOIDmode || mode == DImode)
36a05131
BS
6785 return TRUE;
6786
87b483a1 6787 /* 0 is always ok. */
36a05131
BS
6788 if (x == CONST0_RTX (mode))
6789 return TRUE;
6790
6791 /* If floating point is just emulated, allow any constant, since it will be
87b483a1 6792 constructed in the GPRs. */
36a05131
BS
6793 if (!TARGET_HAS_FPRS)
6794 return TRUE;
6795
6796 if (mode == DFmode && !TARGET_DOUBLE)
6797 return TRUE;
6798
6799 /* Otherwise store the constant away and do a load. */
6800 return FALSE;
6801}
036ff63f
RS
6802
6803/* Implement SELECT_CC_MODE. Choose CC_FP for floating-point comparisons,
6804 CC_NZ for comparisons against zero in which a single Z or N flag test
6805 is enough, CC_UNS for other unsigned comparisons, and CC for other
6806 signed comparisons. */
6807
6808enum machine_mode
6809frv_select_cc_mode (enum rtx_code code, rtx x, rtx y)
6810{
6811 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
6812 return CC_FPmode;
6813
6814 switch (code)
6815 {
6816 case EQ:
6817 case NE:
6818 case LT:
6819 case GE:
6820 return y == const0_rtx ? CC_NZmode : CCmode;
6821
6822 case GTU:
6823 case GEU:
6824 case LTU:
6825 case LEU:
6826 return y == const0_rtx ? CC_NZmode : CC_UNSmode;
6827
6828 default:
6829 return CCmode;
6830 }
6831}
36a05131 6832\f
33124e84
AS
6833
6834/* Worker function for TARGET_REGISTER_MOVE_COST. */
36a05131
BS
6835
6836#define HIGH_COST 40
6837#define MEDIUM_COST 3
6838#define LOW_COST 1
6839
33124e84
AS
6840static int
6841frv_register_move_cost (enum machine_mode mode ATTRIBUTE_UNUSED,
6842 reg_class_t from, reg_class_t to)
36a05131
BS
6843{
6844 switch (from)
6845 {
6846 default:
6847 break;
6848
6849 case QUAD_REGS:
36a05131 6850 case GPR_REGS:
73d7e266
VM
6851 case GR8_REGS:
6852 case GR9_REGS:
6853 case GR89_REGS:
6854 case FDPIC_REGS:
6855 case FDPIC_FPTR_REGS:
6856 case FDPIC_CALL_REGS:
6857
36a05131
BS
6858 switch (to)
6859 {
6860 default:
6861 break;
6862
9b5db25d 6863 case QUAD_REGS:
36a05131 6864 case GPR_REGS:
73d7e266
VM
6865 case GR8_REGS:
6866 case GR9_REGS:
6867 case GR89_REGS:
6868 case FDPIC_REGS:
6869 case FDPIC_FPTR_REGS:
6870 case FDPIC_CALL_REGS:
6871
36a05131
BS
6872 return LOW_COST;
6873
36a05131
BS
6874 case FPR_REGS:
6875 return LOW_COST;
6876
6877 case LCR_REG:
6878 case LR_REG:
6879 case SPR_REGS:
6880 return LOW_COST;
6881 }
6882
9b5db25d 6883 case QUAD_FPR_REGS:
36a05131
BS
6884 switch (to)
6885 {
6886 default:
6887 break;
6888
6889 case QUAD_REGS:
36a05131 6890 case GPR_REGS:
73d7e266
VM
6891 case GR8_REGS:
6892 case GR9_REGS:
6893 case GR89_REGS:
6894 case FDPIC_REGS:
6895 case FDPIC_FPTR_REGS:
6896 case FDPIC_CALL_REGS:
6897
36a05131
BS
6898 case QUAD_ACC_REGS:
6899 case ACCG_REGS:
6900 return MEDIUM_COST;
6901
9b5db25d 6902 case QUAD_FPR_REGS:
36a05131
BS
6903 return LOW_COST;
6904 }
6905
6906 case LCR_REG:
6907 case LR_REG:
6908 case SPR_REGS:
6909 switch (to)
6910 {
6911 default:
6912 break;
6913
6914 case QUAD_REGS:
36a05131 6915 case GPR_REGS:
73d7e266
VM
6916 case GR8_REGS:
6917 case GR9_REGS:
6918 case GR89_REGS:
6919 case FDPIC_REGS:
6920 case FDPIC_FPTR_REGS:
6921 case FDPIC_CALL_REGS:
6922
36a05131
BS
6923 return MEDIUM_COST;
6924 }
6925
36a05131
BS
6926 case QUAD_ACC_REGS:
6927 case ACCG_REGS:
6928 switch (to)
6929 {
6930 default:
6931 break;
6932
9b5db25d 6933 case QUAD_FPR_REGS:
36a05131
BS
6934 return MEDIUM_COST;
6935
6936 }
6937 }
6938
6939 return HIGH_COST;
6940}
33124e84
AS
6941
6942/* Worker function for TARGET_MEMORY_MOVE_COST. */
6943
6944static int
6945frv_memory_move_cost (enum machine_mode mode ATTRIBUTE_UNUSED,
6946 reg_class_t rclass ATTRIBUTE_UNUSED,
6947 bool in ATTRIBUTE_UNUSED)
6948{
6949 return 4;
6950}
6951
36a05131
BS
6952\f
6953/* Implementation of TARGET_ASM_INTEGER. In the FRV case we need to
6954 use ".picptr" to generate safe relocations for PIC code. We also
6955 need a fixup entry for aligned (non-debugging) code. */
6956
6957static bool
f2206911 6958frv_assemble_integer (rtx value, unsigned int size, int aligned_p)
36a05131 6959{
34208acf 6960 if ((flag_pic || TARGET_FDPIC) && size == UNITS_PER_WORD)
36a05131
BS
6961 {
6962 if (GET_CODE (value) == CONST
6963 || GET_CODE (value) == SYMBOL_REF
6964 || GET_CODE (value) == LABEL_REF)
6965 {
34208acf
AO
6966 if (TARGET_FDPIC && GET_CODE (value) == SYMBOL_REF
6967 && SYMBOL_REF_FUNCTION_P (value))
6968 {
6969 fputs ("\t.picptr\tfuncdesc(", asm_out_file);
6970 output_addr_const (asm_out_file, value);
6971 fputs (")\n", asm_out_file);
6972 return true;
6973 }
6974 else if (TARGET_FDPIC && GET_CODE (value) == CONST
6975 && frv_function_symbol_referenced_p (value))
6976 return false;
6977 if (aligned_p && !TARGET_FDPIC)
36a05131
BS
6978 {
6979 static int label_num = 0;
6980 char buf[256];
6981 const char *p;
6982
6983 ASM_GENERATE_INTERNAL_LABEL (buf, "LCP", label_num++);
14966b94 6984 p = (* targetm.strip_name_encoding) (buf);
36a05131
BS
6985
6986 fprintf (asm_out_file, "%s:\n", p);
6987 fprintf (asm_out_file, "%s\n", FIXUP_SECTION_ASM_OP);
6988 fprintf (asm_out_file, "\t.picptr\t%s\n", p);
6989 fprintf (asm_out_file, "\t.previous\n");
6990 }
6991 assemble_integer_with_op ("\t.picptr\t", value);
6992 return true;
6993 }
6994 if (!aligned_p)
6995 {
6996 /* We've set the unaligned SI op to NULL, so we always have to
6997 handle the unaligned case here. */
6998 assemble_integer_with_op ("\t.4byte\t", value);
6999 return true;
7000 }
7001 }
7002 return default_assemble_integer (value, size, aligned_p);
7003}
7004
7005/* Function to set up the backend function structure. */
7006
7007static struct machine_function *
f2206911 7008frv_init_machine_status (void)
36a05131 7009{
a9429e29 7010 return ggc_alloc_cleared_machine_function ();
36a05131 7011}
ffb344c1 7012\f
28a60850
RS
7013/* Implement TARGET_SCHED_ISSUE_RATE. */
7014
c557edf4 7015int
28a60850
RS
7016frv_issue_rate (void)
7017{
7018 if (!TARGET_PACK)
7019 return 1;
7020
7021 switch (frv_cpu_type)
7022 {
7023 default:
7024 case FRV_CPU_FR300:
7025 case FRV_CPU_SIMPLE:
7026 return 1;
7027
7028 case FRV_CPU_FR400:
c557edf4
RS
7029 case FRV_CPU_FR405:
7030 case FRV_CPU_FR450:
28a60850
RS
7031 return 2;
7032
7033 case FRV_CPU_GENERIC:
7034 case FRV_CPU_FR500:
7035 case FRV_CPU_TOMCAT:
7036 return 4;
c557edf4
RS
7037
7038 case FRV_CPU_FR550:
7039 return 8;
28a60850
RS
7040 }
7041}
36a05131 7042\f
c557edf4
RS
7043/* A for_each_rtx callback. If X refers to an accumulator, return
7044 ACC_GROUP_ODD if the bit 2 of the register number is set and
7045 ACC_GROUP_EVEN if it is clear. Return 0 (ACC_GROUP_NONE)
7046 otherwise. */
36a05131 7047
c557edf4
RS
7048static int
7049frv_acc_group_1 (rtx *x, void *data ATTRIBUTE_UNUSED)
36a05131 7050{
c557edf4 7051 if (REG_P (*x))
36a05131 7052 {
c557edf4
RS
7053 if (ACC_P (REGNO (*x)))
7054 return (REGNO (*x) - ACC_FIRST) & 4 ? ACC_GROUP_ODD : ACC_GROUP_EVEN;
7055 if (ACCG_P (REGNO (*x)))
7056 return (REGNO (*x) - ACCG_FIRST) & 4 ? ACC_GROUP_ODD : ACC_GROUP_EVEN;
7057 }
7058 return 0;
7059}
36a05131 7060
c557edf4 7061/* Return the value of INSN's acc_group attribute. */
36a05131 7062
c557edf4
RS
7063int
7064frv_acc_group (rtx insn)
7065{
7066 /* This distinction only applies to the FR550 packing constraints. */
7067 if (frv_cpu_type != FRV_CPU_FR550)
7068 return ACC_GROUP_NONE;
7069 return for_each_rtx (&PATTERN (insn), frv_acc_group_1, 0);
7070}
36a05131 7071
c557edf4
RS
7072/* Return the index of the DFA unit in FRV_UNIT_NAMES[] that instruction
7073 INSN will try to claim first. Since this value depends only on the
7074 type attribute, we can cache the results in FRV_TYPE_TO_UNIT[]. */
36a05131 7075
c557edf4
RS
7076static unsigned int
7077frv_insn_unit (rtx insn)
7078{
7079 enum attr_type type;
36a05131 7080
c557edf4
RS
7081 type = get_attr_type (insn);
7082 if (frv_type_to_unit[type] == ARRAY_SIZE (frv_unit_codes))
7083 {
7084 /* We haven't seen this type of instruction before. */
7085 state_t state;
7086 unsigned int unit;
36a05131 7087
c557edf4
RS
7088 /* Issue the instruction on its own to see which unit it prefers. */
7089 state = alloca (state_size ());
7090 state_reset (state);
7091 state_transition (state, insn);
36a05131 7092
c557edf4
RS
7093 /* Find out which unit was taken. */
7094 for (unit = 0; unit < ARRAY_SIZE (frv_unit_codes); unit++)
7095 if (cpu_unit_reservation_p (state, frv_unit_codes[unit]))
7096 break;
36a05131 7097
44e91694 7098 gcc_assert (unit != ARRAY_SIZE (frv_unit_codes));
36a05131 7099
c557edf4 7100 frv_type_to_unit[type] = unit;
36a05131 7101 }
c557edf4
RS
7102 return frv_type_to_unit[type];
7103}
36a05131 7104
c557edf4 7105/* Return true if INSN issues to a branch unit. */
36a05131 7106
c557edf4
RS
7107static bool
7108frv_issues_to_branch_unit_p (rtx insn)
7109{
7110 return frv_unit_groups[frv_insn_unit (insn)] == GROUP_B;
7111}
7112\f
5c5e8419
JR
7113/* The instructions in the packet, partitioned into groups. */
7114struct frv_packet_group {
7115 /* How many instructions in the packet belong to this group. */
7116 unsigned int num_insns;
7117
7118 /* A list of the instructions that belong to this group, in the order
7119 they appear in the rtl stream. */
7120 rtx insns[ARRAY_SIZE (frv_unit_codes)];
7121
7122 /* The contents of INSNS after they have been sorted into the correct
7123 assembly-language order. Element X issues to unit X. The list may
7124 contain extra nops. */
7125 rtx sorted[ARRAY_SIZE (frv_unit_codes)];
7126
7127 /* The member of frv_nops[] to use in sorted[]. */
7128 rtx nop;
7129};
7130
c557edf4
RS
7131/* The current state of the packing pass, implemented by frv_pack_insns. */
7132static struct {
7133 /* The state of the pipeline DFA. */
7134 state_t dfa_state;
7135
7136 /* Which hardware registers are set within the current packet,
7137 and the conditions under which they are set. */
7138 regstate_t regstate[FIRST_PSEUDO_REGISTER];
7139
7140 /* The memory locations that have been modified so far in this
7141 packet. MEM is the memref and COND is the regstate_t condition
7142 under which it is set. */
7143 struct {
7144 rtx mem;
7145 regstate_t cond;
7146 } mems[2];
7147
7148 /* The number of valid entries in MEMS. The value is larger than
7149 ARRAY_SIZE (mems) if there were too many mems to record. */
7150 unsigned int num_mems;
7151
7152 /* The maximum number of instructions that can be packed together. */
7153 unsigned int issue_rate;
7154
7155 /* The instructions in the packet, partitioned into groups. */
5c5e8419 7156 struct frv_packet_group groups[NUM_GROUPS];
c557edf4
RS
7157
7158 /* The instructions that make up the current packet. */
7159 rtx insns[ARRAY_SIZE (frv_unit_codes)];
7160 unsigned int num_insns;
7161} frv_packet;
7162
7163/* Return the regstate_t flags for the given COND_EXEC condition.
7164 Abort if the condition isn't in the right form. */
36a05131 7165
c557edf4
RS
7166static int
7167frv_cond_flags (rtx cond)
7168{
44e91694
NS
7169 gcc_assert ((GET_CODE (cond) == EQ || GET_CODE (cond) == NE)
7170 && GET_CODE (XEXP (cond, 0)) == REG
7171 && CR_P (REGNO (XEXP (cond, 0)))
7172 && XEXP (cond, 1) == const0_rtx);
7173 return ((REGNO (XEXP (cond, 0)) - CR_FIRST)
7174 | (GET_CODE (cond) == NE
7175 ? REGSTATE_IF_TRUE
7176 : REGSTATE_IF_FALSE));
c557edf4 7177}
36a05131 7178
36a05131 7179
c557edf4
RS
7180/* Return true if something accessed under condition COND2 can
7181 conflict with something written under condition COND1. */
36a05131 7182
c557edf4
RS
7183static bool
7184frv_regstate_conflict_p (regstate_t cond1, regstate_t cond2)
7185{
7186 /* If either reference was unconditional, we have a conflict. */
7187 if ((cond1 & REGSTATE_IF_EITHER) == 0
7188 || (cond2 & REGSTATE_IF_EITHER) == 0)
7189 return true;
7190
7191 /* The references might conflict if they were controlled by
7192 different CRs. */
7193 if ((cond1 & REGSTATE_CC_MASK) != (cond2 & REGSTATE_CC_MASK))
7194 return true;
7195
7196 /* They definitely conflict if they are controlled by the
7197 same condition. */
7198 if ((cond1 & cond2 & REGSTATE_IF_EITHER) != 0)
7199 return true;
7200
7201 return false;
36a05131
BS
7202}
7203
c557edf4
RS
7204
7205/* A for_each_rtx callback. Return 1 if *X depends on an instruction in
7206 the current packet. DATA points to a regstate_t that describes the
7207 condition under which *X might be set or used. */
36a05131
BS
7208
7209static int
c557edf4 7210frv_registers_conflict_p_1 (rtx *x, void *data)
36a05131 7211{
c557edf4
RS
7212 unsigned int regno, i;
7213 regstate_t cond;
36a05131 7214
c557edf4 7215 cond = *(regstate_t *) data;
36a05131 7216
c557edf4
RS
7217 if (GET_CODE (*x) == REG)
7218 FOR_EACH_REGNO (regno, *x)
7219 if ((frv_packet.regstate[regno] & REGSTATE_MODIFIED) != 0)
7220 if (frv_regstate_conflict_p (frv_packet.regstate[regno], cond))
7221 return 1;
36a05131 7222
c557edf4
RS
7223 if (GET_CODE (*x) == MEM)
7224 {
7225 /* If we ran out of memory slots, assume a conflict. */
7226 if (frv_packet.num_mems > ARRAY_SIZE (frv_packet.mems))
7227 return 1;
36a05131 7228
c557edf4
RS
7229 /* Check for output or true dependencies with earlier MEMs. */
7230 for (i = 0; i < frv_packet.num_mems; i++)
7231 if (frv_regstate_conflict_p (frv_packet.mems[i].cond, cond))
7232 {
53d9622b 7233 if (true_dependence (frv_packet.mems[i].mem, VOIDmode, *x))
c557edf4 7234 return 1;
36a05131 7235
c557edf4
RS
7236 if (output_dependence (frv_packet.mems[i].mem, *x))
7237 return 1;
7238 }
7239 }
36a05131 7240
c557edf4
RS
7241 /* The return values of calls aren't significant: they describe
7242 the effect of the call as a whole, not of the insn itself. */
7243 if (GET_CODE (*x) == SET && GET_CODE (SET_SRC (*x)) == CALL)
7244 {
7245 if (for_each_rtx (&SET_SRC (*x), frv_registers_conflict_p_1, data))
7246 return 1;
7247 return -1;
7248 }
36a05131 7249
c557edf4
RS
7250 /* Check subexpressions. */
7251 return 0;
7252}
36a05131 7253
36a05131 7254
c557edf4
RS
7255/* Return true if something in X might depend on an instruction
7256 in the current packet. */
36a05131 7257
c557edf4
RS
7258static bool
7259frv_registers_conflict_p (rtx x)
7260{
7261 regstate_t flags;
36a05131 7262
c557edf4
RS
7263 flags = 0;
7264 if (GET_CODE (x) == COND_EXEC)
7265 {
7266 if (for_each_rtx (&XEXP (x, 0), frv_registers_conflict_p_1, &flags))
7267 return true;
36a05131 7268
c557edf4
RS
7269 flags |= frv_cond_flags (XEXP (x, 0));
7270 x = XEXP (x, 1);
36a05131 7271 }
c557edf4
RS
7272 return for_each_rtx (&x, frv_registers_conflict_p_1, &flags);
7273}
36a05131
BS
7274
7275
c557edf4
RS
7276/* A note_stores callback. DATA points to the regstate_t condition
7277 under which X is modified. Update FRV_PACKET accordingly. */
36a05131 7278
c557edf4 7279static void
7bc980e1 7280frv_registers_update_1 (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
c557edf4
RS
7281{
7282 unsigned int regno;
7283
7284 if (GET_CODE (x) == REG)
7285 FOR_EACH_REGNO (regno, x)
7286 frv_packet.regstate[regno] |= *(regstate_t *) data;
7287
7288 if (GET_CODE (x) == MEM)
36a05131 7289 {
c557edf4 7290 if (frv_packet.num_mems < ARRAY_SIZE (frv_packet.mems))
36a05131 7291 {
c557edf4
RS
7292 frv_packet.mems[frv_packet.num_mems].mem = x;
7293 frv_packet.mems[frv_packet.num_mems].cond = *(regstate_t *) data;
7294 }
7295 frv_packet.num_mems++;
7296 }
7297}
36a05131 7298
36a05131 7299
c557edf4
RS
7300/* Update the register state information for an instruction whose
7301 body is X. */
7302
7303static void
7304frv_registers_update (rtx x)
7305{
7306 regstate_t flags;
7307
7308 flags = REGSTATE_MODIFIED;
7309 if (GET_CODE (x) == COND_EXEC)
7310 {
7311 flags |= frv_cond_flags (XEXP (x, 0));
7312 x = XEXP (x, 1);
36a05131 7313 }
c557edf4
RS
7314 note_stores (x, frv_registers_update_1, &flags);
7315}
36a05131 7316
c557edf4
RS
7317
7318/* Initialize frv_packet for the start of a new packet. */
7319
7320static void
7321frv_start_packet (void)
7322{
7323 enum frv_insn_group group;
7324
7325 memset (frv_packet.regstate, 0, sizeof (frv_packet.regstate));
7326 frv_packet.num_mems = 0;
7327 frv_packet.num_insns = 0;
5c5e8419
JR
7328 for (group = GROUP_I; group < NUM_GROUPS;
7329 group = (enum frv_insn_group) (group + 1))
c557edf4 7330 frv_packet.groups[group].num_insns = 0;
36a05131
BS
7331}
7332
36a05131 7333
c557edf4
RS
7334/* Likewise for the start of a new basic block. */
7335
7336static void
7337frv_start_packet_block (void)
36a05131 7338{
c557edf4
RS
7339 state_reset (frv_packet.dfa_state);
7340 frv_start_packet ();
7341}
36a05131 7342
c557edf4
RS
7343
7344/* Finish the current packet, if any, and start a new one. Call
7345 HANDLE_PACKET with FRV_PACKET describing the completed packet. */
7346
7347static void
7348frv_finish_packet (void (*handle_packet) (void))
7349{
7350 if (frv_packet.num_insns > 0)
36a05131 7351 {
c557edf4
RS
7352 handle_packet ();
7353 state_transition (frv_packet.dfa_state, 0);
7354 frv_start_packet ();
7355 }
7356}
36a05131 7357
36a05131 7358
c557edf4
RS
7359/* Return true if INSN can be added to the current packet. Update
7360 the DFA state on success. */
36a05131 7361
c557edf4
RS
7362static bool
7363frv_pack_insn_p (rtx insn)
7364{
7365 /* See if the packet is already as long as it can be. */
7366 if (frv_packet.num_insns == frv_packet.issue_rate)
7367 return false;
36a05131 7368
c557edf4
RS
7369 /* If the scheduler thought that an instruction should start a packet,
7370 it's usually a good idea to believe it. It knows much more about
7371 the latencies than we do.
36a05131 7372
c557edf4 7373 There are some exceptions though:
36a05131 7374
c557edf4
RS
7375 - Conditional instructions are scheduled on the assumption that
7376 they will be executed. This is usually a good thing, since it
c112cf2b 7377 tends to avoid unnecessary stalls in the conditional code.
c557edf4
RS
7378 But we want to pack conditional instructions as tightly as
7379 possible, in order to optimize the case where they aren't
7380 executed.
36a05131 7381
c557edf4
RS
7382 - The scheduler will always put branches on their own, even
7383 if there's no real dependency.
36a05131 7384
c557edf4
RS
7385 - There's no point putting a call in its own packet unless
7386 we have to. */
7387 if (frv_packet.num_insns > 0
7388 && GET_CODE (insn) == INSN
7389 && GET_MODE (insn) == TImode
7390 && GET_CODE (PATTERN (insn)) != COND_EXEC)
7391 return false;
36a05131 7392
c557edf4
RS
7393 /* Check for register conflicts. Don't do this for setlo since any
7394 conflict will be with the partnering sethi, with which it can
7395 be packed. */
7396 if (get_attr_type (insn) != TYPE_SETLO)
7397 if (frv_registers_conflict_p (PATTERN (insn)))
7398 return false;
36a05131 7399
c557edf4
RS
7400 return state_transition (frv_packet.dfa_state, insn) < 0;
7401}
36a05131 7402
36a05131 7403
c557edf4 7404/* Add instruction INSN to the current packet. */
36a05131 7405
c557edf4
RS
7406static void
7407frv_add_insn_to_packet (rtx insn)
7408{
7409 struct frv_packet_group *packet_group;
7410
7411 packet_group = &frv_packet.groups[frv_unit_groups[frv_insn_unit (insn)]];
7412 packet_group->insns[packet_group->num_insns++] = insn;
7413 frv_packet.insns[frv_packet.num_insns++] = insn;
7414
7415 frv_registers_update (PATTERN (insn));
36a05131
BS
7416}
7417
c557edf4
RS
7418
7419/* Insert INSN (a member of frv_nops[]) into the current packet. If the
7420 packet ends in a branch or call, insert the nop before it, otherwise
7421 add to the end. */
36a05131
BS
7422
7423static void
c557edf4 7424frv_insert_nop_in_packet (rtx insn)
36a05131 7425{
c557edf4
RS
7426 struct frv_packet_group *packet_group;
7427 rtx last;
7428
7429 packet_group = &frv_packet.groups[frv_unit_groups[frv_insn_unit (insn)]];
7430 last = frv_packet.insns[frv_packet.num_insns - 1];
7431 if (GET_CODE (last) != INSN)
7432 {
7433 insn = emit_insn_before (PATTERN (insn), last);
7434 frv_packet.insns[frv_packet.num_insns - 1] = insn;
7435 frv_packet.insns[frv_packet.num_insns++] = last;
7436 }
7437 else
7438 {
7439 insn = emit_insn_after (PATTERN (insn), last);
7440 frv_packet.insns[frv_packet.num_insns++] = insn;
7441 }
7442 packet_group->insns[packet_group->num_insns++] = insn;
7443}
7444
36a05131 7445
c557edf4
RS
7446/* If packing is enabled, divide the instructions into packets and
7447 return true. Call HANDLE_PACKET for each complete packet. */
7448
7449static bool
7450frv_for_each_packet (void (*handle_packet) (void))
7451{
7452 rtx insn, next_insn;
7453
7454 frv_packet.issue_rate = frv_issue_rate ();
7455
7456 /* Early exit if we don't want to pack insns. */
28a60850
RS
7457 if (!optimize
7458 || !flag_schedule_insns_after_reload
0b2c18fe 7459 || !TARGET_VLIW_BRANCH
c557edf4
RS
7460 || frv_packet.issue_rate == 1)
7461 return false;
36a05131 7462
c557edf4 7463 /* Set up the initial packing state. */
36a05131 7464 dfa_start ();
c557edf4 7465 frv_packet.dfa_state = alloca (state_size ());
36a05131 7466
c557edf4
RS
7467 frv_start_packet_block ();
7468 for (insn = get_insns (); insn != 0; insn = next_insn)
36a05131 7469 {
c557edf4
RS
7470 enum rtx_code code;
7471 bool eh_insn_p;
36a05131 7472
c557edf4
RS
7473 code = GET_CODE (insn);
7474 next_insn = NEXT_INSN (insn);
7475
7476 if (code == CODE_LABEL)
36a05131 7477 {
c557edf4
RS
7478 frv_finish_packet (handle_packet);
7479 frv_start_packet_block ();
7480 }
36a05131 7481
c557edf4
RS
7482 if (INSN_P (insn))
7483 switch (GET_CODE (PATTERN (insn)))
7484 {
7485 case USE:
7486 case CLOBBER:
7487 case ADDR_VEC:
7488 case ADDR_DIFF_VEC:
7489 break;
36a05131 7490
c557edf4
RS
7491 default:
7492 /* Calls mustn't be packed on a TOMCAT. */
7493 if (GET_CODE (insn) == CALL_INSN && frv_cpu_type == FRV_CPU_TOMCAT)
7494 frv_finish_packet (handle_packet);
7495
7496 /* Since the last instruction in a packet determines the EH
7497 region, any exception-throwing instruction must come at
7498 the end of reordered packet. Insns that issue to a
7499 branch unit are bound to come last; for others it's
7500 too hard to predict. */
7501 eh_insn_p = (find_reg_note (insn, REG_EH_REGION, NULL) != NULL);
7502 if (eh_insn_p && !frv_issues_to_branch_unit_p (insn))
7503 frv_finish_packet (handle_packet);
7504
7505 /* Finish the current packet if we can't add INSN to it.
7506 Simulate cycles until INSN is ready to issue. */
7507 if (!frv_pack_insn_p (insn))
7508 {
7509 frv_finish_packet (handle_packet);
7510 while (!frv_pack_insn_p (insn))
7511 state_transition (frv_packet.dfa_state, 0);
7512 }
36a05131 7513
c557edf4
RS
7514 /* Add the instruction to the packet. */
7515 frv_add_insn_to_packet (insn);
7516
7517 /* Calls and jumps end a packet, as do insns that throw
7518 an exception. */
7519 if (code == CALL_INSN || code == JUMP_INSN || eh_insn_p)
7520 frv_finish_packet (handle_packet);
7521 break;
7522 }
7523 }
7524 frv_finish_packet (handle_packet);
7525 dfa_finish ();
7526 return true;
7527}
7528\f
7529/* Subroutine of frv_sort_insn_group. We are trying to sort
7530 frv_packet.groups[GROUP].sorted[0...NUM_INSNS-1] into assembly
7531 language order. We have already picked a new position for
7532 frv_packet.groups[GROUP].sorted[X] if bit X of ISSUED is set.
7533 These instructions will occupy elements [0, LOWER_SLOT) and
7534 [UPPER_SLOT, NUM_INSNS) of the final (sorted) array. STATE is
7535 the DFA state after issuing these instructions.
7536
7537 Try filling elements [LOWER_SLOT, UPPER_SLOT) with every permutation
7538 of the unused instructions. Return true if one such permutation gives
7539 a valid ordering, leaving the successful permutation in sorted[].
7540 Do not modify sorted[] until a valid permutation is found. */
7541
7542static bool
7543frv_sort_insn_group_1 (enum frv_insn_group group,
7544 unsigned int lower_slot, unsigned int upper_slot,
7545 unsigned int issued, unsigned int num_insns,
7546 state_t state)
7547{
7548 struct frv_packet_group *packet_group;
7549 unsigned int i;
7550 state_t test_state;
7551 size_t dfa_size;
7552 rtx insn;
7553
7554 /* Early success if we've filled all the slots. */
7555 if (lower_slot == upper_slot)
7556 return true;
7557
7558 packet_group = &frv_packet.groups[group];
7559 dfa_size = state_size ();
7560 test_state = alloca (dfa_size);
7561
7562 /* Try issuing each unused instruction. */
7563 for (i = num_insns - 1; i + 1 != 0; i--)
7564 if (~issued & (1 << i))
7565 {
7566 insn = packet_group->sorted[i];
7567 memcpy (test_state, state, dfa_size);
7568 if (state_transition (test_state, insn) < 0
7569 && cpu_unit_reservation_p (test_state,
7570 NTH_UNIT (group, upper_slot - 1))
7571 && frv_sort_insn_group_1 (group, lower_slot, upper_slot - 1,
7572 issued | (1 << i), num_insns,
7573 test_state))
7574 {
7575 packet_group->sorted[upper_slot - 1] = insn;
7576 return true;
7577 }
7578 }
7579
7580 return false;
7581}
7582
7583/* Compare two instructions by their frv_insn_unit. */
7584
7585static int
7586frv_compare_insns (const void *first, const void *second)
7587{
5ead67f6
KG
7588 const rtx *const insn1 = (rtx const *) first,
7589 *const insn2 = (rtx const *) second;
c557edf4
RS
7590 return frv_insn_unit (*insn1) - frv_insn_unit (*insn2);
7591}
7592
7593/* Copy frv_packet.groups[GROUP].insns[] to frv_packet.groups[GROUP].sorted[]
7594 and sort it into assembly language order. See frv.md for a description of
7595 the algorithm. */
7596
7597static void
7598frv_sort_insn_group (enum frv_insn_group group)
7599{
7600 struct frv_packet_group *packet_group;
7601 unsigned int first, i, nop, max_unit, num_slots;
7602 state_t state, test_state;
7603 size_t dfa_size;
7604
7605 packet_group = &frv_packet.groups[group];
75d0ac8d
RS
7606
7607 /* Assume no nop is needed. */
7608 packet_group->nop = 0;
7609
c557edf4
RS
7610 if (packet_group->num_insns == 0)
7611 return;
7612
7613 /* Copy insns[] to sorted[]. */
7614 memcpy (packet_group->sorted, packet_group->insns,
7615 sizeof (rtx) * packet_group->num_insns);
7616
7617 /* Sort sorted[] by the unit that each insn tries to take first. */
7618 if (packet_group->num_insns > 1)
7619 qsort (packet_group->sorted, packet_group->num_insns,
7620 sizeof (rtx), frv_compare_insns);
7621
7622 /* That's always enough for branch and control insns. */
7623 if (group == GROUP_B || group == GROUP_C)
7624 return;
7625
7626 dfa_size = state_size ();
7627 state = alloca (dfa_size);
7628 test_state = alloca (dfa_size);
7629
7630 /* Find the highest FIRST such that sorted[0...FIRST-1] can issue
7631 consecutively and such that the DFA takes unit X when sorted[X]
7632 is added. Set STATE to the new DFA state. */
7633 state_reset (test_state);
7634 for (first = 0; first < packet_group->num_insns; first++)
7635 {
7636 memcpy (state, test_state, dfa_size);
7637 if (state_transition (test_state, packet_group->sorted[first]) >= 0
7638 || !cpu_unit_reservation_p (test_state, NTH_UNIT (group, first)))
7639 break;
7640 }
7641
7642 /* If all the instructions issued in ascending order, we're done. */
7643 if (first == packet_group->num_insns)
7644 return;
36a05131 7645
c557edf4
RS
7646 /* Add nops to the end of sorted[] and try each permutation until
7647 we find one that works. */
7648 for (nop = 0; nop < frv_num_nops; nop++)
7649 {
7650 max_unit = frv_insn_unit (frv_nops[nop]);
7651 if (frv_unit_groups[max_unit] == group)
36a05131 7652 {
c557edf4
RS
7653 packet_group->nop = frv_nops[nop];
7654 num_slots = UNIT_NUMBER (max_unit) + 1;
7655 for (i = packet_group->num_insns; i < num_slots; i++)
7656 packet_group->sorted[i] = frv_nops[nop];
7657 if (frv_sort_insn_group_1 (group, first, num_slots,
7658 (1 << first) - 1, num_slots, state))
7659 return;
36a05131 7660 }
c557edf4 7661 }
44e91694 7662 gcc_unreachable ();
c557edf4
RS
7663}
7664\f
7665/* Sort the current packet into assembly-language order. Set packing
7666 flags as appropriate. */
36a05131 7667
c557edf4
RS
7668static void
7669frv_reorder_packet (void)
7670{
7671 unsigned int cursor[NUM_GROUPS];
7672 rtx insns[ARRAY_SIZE (frv_unit_groups)];
7673 unsigned int unit, to, from;
7674 enum frv_insn_group group;
7675 struct frv_packet_group *packet_group;
7676
7677 /* First sort each group individually. */
5c5e8419
JR
7678 for (group = GROUP_I; group < NUM_GROUPS;
7679 group = (enum frv_insn_group) (group + 1))
c557edf4
RS
7680 {
7681 cursor[group] = 0;
7682 frv_sort_insn_group (group);
7683 }
7684
7685 /* Go through the unit template and try add an instruction from
7686 that unit's group. */
7687 to = 0;
7688 for (unit = 0; unit < ARRAY_SIZE (frv_unit_groups); unit++)
7689 {
7690 group = frv_unit_groups[unit];
7691 packet_group = &frv_packet.groups[group];
7692 if (cursor[group] < packet_group->num_insns)
36a05131 7693 {
c557edf4 7694 /* frv_reorg should have added nops for us. */
44e91694
NS
7695 gcc_assert (packet_group->sorted[cursor[group]]
7696 != packet_group->nop);
c557edf4 7697 insns[to++] = packet_group->sorted[cursor[group]++];
36a05131 7698 }
c557edf4 7699 }
36a05131 7700
44e91694 7701 gcc_assert (to == frv_packet.num_insns);
36a05131 7702
c557edf4
RS
7703 /* Clear the last instruction's packing flag, thus marking the end of
7704 a packet. Reorder the other instructions relative to it. */
7705 CLEAR_PACKING_FLAG (insns[to - 1]);
7706 for (from = 0; from < to - 1; from++)
7707 {
7708 remove_insn (insns[from]);
6fb5fa3c 7709 add_insn_before (insns[from], insns[to - 1], NULL);
c557edf4
RS
7710 SET_PACKING_FLAG (insns[from]);
7711 }
7712}
36a05131 7713
36a05131 7714
c557edf4
RS
7715/* Divide instructions into packets. Reorder the contents of each
7716 packet so that they are in the correct assembly-language order.
7717
7718 Since this pass can change the raw meaning of the rtl stream, it must
7719 only be called at the last minute, just before the instructions are
7720 written out. */
7721
7722static void
7723frv_pack_insns (void)
7724{
7725 if (frv_for_each_packet (frv_reorder_packet))
7726 frv_insn_packing_flag = 0;
7727 else
7728 frv_insn_packing_flag = -1;
7729}
7730\f
7731/* See whether we need to add nops to group GROUP in order to
7732 make a valid packet. */
7733
7734static void
7735frv_fill_unused_units (enum frv_insn_group group)
7736{
7737 unsigned int non_nops, nops, i;
7738 struct frv_packet_group *packet_group;
7739
7740 packet_group = &frv_packet.groups[group];
7741
7742 /* Sort the instructions into assembly-language order.
7743 Use nops to fill slots that are otherwise unused. */
7744 frv_sort_insn_group (group);
7745
7746 /* See how many nops are needed before the final useful instruction. */
7747 i = nops = 0;
7748 for (non_nops = 0; non_nops < packet_group->num_insns; non_nops++)
7749 while (packet_group->sorted[i++] == packet_group->nop)
7750 nops++;
7751
7752 /* Insert that many nops into the instruction stream. */
7753 while (nops-- > 0)
7754 frv_insert_nop_in_packet (packet_group->nop);
7755}
7756
38c28a25
AH
7757/* Return true if accesses IO1 and IO2 refer to the same doubleword. */
7758
7759static bool
7760frv_same_doubleword_p (const struct frv_io *io1, const struct frv_io *io2)
7761{
7762 if (io1->const_address != 0 && io2->const_address != 0)
7763 return io1->const_address == io2->const_address;
7764
7765 if (io1->var_address != 0 && io2->var_address != 0)
7766 return rtx_equal_p (io1->var_address, io2->var_address);
7767
7768 return false;
7769}
7770
7771/* Return true if operations IO1 and IO2 are guaranteed to complete
7772 in order. */
7773
7774static bool
7775frv_io_fixed_order_p (const struct frv_io *io1, const struct frv_io *io2)
7776{
7777 /* The order of writes is always preserved. */
7778 if (io1->type == FRV_IO_WRITE && io2->type == FRV_IO_WRITE)
7779 return true;
7780
7781 /* The order of reads isn't preserved. */
7782 if (io1->type != FRV_IO_WRITE && io2->type != FRV_IO_WRITE)
7783 return false;
7784
7785 /* One operation is a write and the other is (or could be) a read.
7786 The order is only guaranteed if the accesses are to the same
7787 doubleword. */
7788 return frv_same_doubleword_p (io1, io2);
7789}
7790
7791/* Generalize I/O operation X so that it covers both X and Y. */
7792
7793static void
7794frv_io_union (struct frv_io *x, const struct frv_io *y)
7795{
7796 if (x->type != y->type)
7797 x->type = FRV_IO_UNKNOWN;
7798 if (!frv_same_doubleword_p (x, y))
7799 {
7800 x->const_address = 0;
7801 x->var_address = 0;
7802 }
7803}
7804
7805/* Fill IO with information about the load or store associated with
7806 membar instruction INSN. */
7807
7808static void
7809frv_extract_membar (struct frv_io *io, rtx insn)
7810{
7811 extract_insn (insn);
5c5e8419 7812 io->type = (enum frv_io_type) INTVAL (recog_data.operand[2]);
38c28a25
AH
7813 io->const_address = INTVAL (recog_data.operand[1]);
7814 io->var_address = XEXP (recog_data.operand[0], 0);
7815}
7816
7817/* A note_stores callback for which DATA points to an rtx. Nullify *DATA
7818 if X is a register and *DATA depends on X. */
7819
7820static void
7bc980e1 7821frv_io_check_address (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
38c28a25 7822{
5ead67f6 7823 rtx *other = (rtx *) data;
38c28a25
AH
7824
7825 if (REG_P (x) && *other != 0 && reg_overlap_mentioned_p (x, *other))
7826 *other = 0;
7827}
7828
7829/* A note_stores callback for which DATA points to a HARD_REG_SET.
7830 Remove every modified register from the set. */
7831
7832static void
7bc980e1 7833frv_io_handle_set (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
38c28a25 7834{
5ead67f6 7835 HARD_REG_SET *set = (HARD_REG_SET *) data;
38c28a25
AH
7836 unsigned int regno;
7837
7838 if (REG_P (x))
7839 FOR_EACH_REGNO (regno, x)
7840 CLEAR_HARD_REG_BIT (*set, regno);
7841}
7842
7843/* A for_each_rtx callback for which DATA points to a HARD_REG_SET.
7844 Add every register in *X to the set. */
7845
7846static int
7847frv_io_handle_use_1 (rtx *x, void *data)
7848{
5ead67f6 7849 HARD_REG_SET *set = (HARD_REG_SET *) data;
38c28a25
AH
7850 unsigned int regno;
7851
7852 if (REG_P (*x))
7853 FOR_EACH_REGNO (regno, *x)
7854 SET_HARD_REG_BIT (*set, regno);
7855
7856 return 0;
7857}
7858
7859/* A note_stores callback that applies frv_io_handle_use_1 to an
7860 entire rhs value. */
7861
7862static void
7863frv_io_handle_use (rtx *x, void *data)
7864{
7865 for_each_rtx (x, frv_io_handle_use_1, data);
7866}
7867
7868/* Go through block BB looking for membars to remove. There are two
7869 cases where intra-block analysis is enough:
7870
7871 - a membar is redundant if it occurs between two consecutive I/O
7872 operations and if those operations are guaranteed to complete
7873 in order.
7874
7875 - a membar for a __builtin_read is redundant if the result is
7876 used before the next I/O operation is issued.
7877
7878 If the last membar in the block could not be removed, and there
7879 are guaranteed to be no I/O operations between that membar and
7880 the end of the block, store the membar in *LAST_MEMBAR, otherwise
7881 store null.
7882
7883 Describe the block's first I/O operation in *NEXT_IO. Describe
7884 an unknown operation if the block doesn't do any I/O. */
7885
7886static void
7887frv_optimize_membar_local (basic_block bb, struct frv_io *next_io,
7888 rtx *last_membar)
7889{
7890 HARD_REG_SET used_regs;
7891 rtx next_membar, set, insn;
7892 bool next_is_end_p;
7893
7894 /* NEXT_IO is the next I/O operation to be performed after the current
7895 instruction. It starts off as being an unknown operation. */
7896 memset (next_io, 0, sizeof (*next_io));
7897
7898 /* NEXT_IS_END_P is true if NEXT_IO describes the end of the block. */
7899 next_is_end_p = true;
7900
7901 /* If the current instruction is a __builtin_read or __builtin_write,
7902 NEXT_MEMBAR is the membar instruction associated with it. NEXT_MEMBAR
7903 is null if the membar has already been deleted.
7904
7905 Note that the initialization here should only be needed to
536fa7b7 7906 suppress warnings. */
38c28a25
AH
7907 next_membar = 0;
7908
7909 /* USED_REGS is the set of registers that are used before the
7910 next I/O instruction. */
7911 CLEAR_HARD_REG_SET (used_regs);
7912
7913 for (insn = BB_END (bb); insn != BB_HEAD (bb); insn = PREV_INSN (insn))
7914 if (GET_CODE (insn) == CALL_INSN)
7915 {
7916 /* We can't predict what a call will do to volatile memory. */
7917 memset (next_io, 0, sizeof (struct frv_io));
7918 next_is_end_p = false;
7919 CLEAR_HARD_REG_SET (used_regs);
7920 }
7921 else if (INSN_P (insn))
7922 switch (recog_memoized (insn))
7923 {
7924 case CODE_FOR_optional_membar_qi:
7925 case CODE_FOR_optional_membar_hi:
7926 case CODE_FOR_optional_membar_si:
7927 case CODE_FOR_optional_membar_di:
7928 next_membar = insn;
7929 if (next_is_end_p)
7930 {
7931 /* Local information isn't enough to decide whether this
7932 membar is needed. Stash it away for later. */
7933 *last_membar = insn;
7934 frv_extract_membar (next_io, insn);
7935 next_is_end_p = false;
7936 }
7937 else
7938 {
7939 /* Check whether the I/O operation before INSN could be
7940 reordered with one described by NEXT_IO. If it can't,
7941 INSN will not be needed. */
7942 struct frv_io prev_io;
7943
7944 frv_extract_membar (&prev_io, insn);
7945 if (frv_io_fixed_order_p (&prev_io, next_io))
7946 {
7947 if (dump_file)
7948 fprintf (dump_file,
7949 ";; [Local] Removing membar %d since order"
7950 " of accesses is guaranteed\n",
7951 INSN_UID (next_membar));
7952
7953 insn = NEXT_INSN (insn);
7954 delete_insn (next_membar);
7955 next_membar = 0;
7956 }
7957 *next_io = prev_io;
7958 }
7959 break;
7960
7961 default:
7962 /* Invalidate NEXT_IO's address if it depends on something that
7963 is clobbered by INSN. */
7964 if (next_io->var_address)
7965 note_stores (PATTERN (insn), frv_io_check_address,
7966 &next_io->var_address);
7967
7968 /* If the next membar is associated with a __builtin_read,
7969 see if INSN reads from that address. If it does, and if
7970 the destination register is used before the next I/O access,
7971 there is no need for the membar. */
7972 set = PATTERN (insn);
7973 if (next_io->type == FRV_IO_READ
7974 && next_io->var_address != 0
7975 && next_membar != 0
7976 && GET_CODE (set) == SET
7977 && GET_CODE (SET_DEST (set)) == REG
7978 && TEST_HARD_REG_BIT (used_regs, REGNO (SET_DEST (set))))
7979 {
7980 rtx src;
7981
7982 src = SET_SRC (set);
7983 if (GET_CODE (src) == ZERO_EXTEND)
7984 src = XEXP (src, 0);
7985
7986 if (GET_CODE (src) == MEM
7987 && rtx_equal_p (XEXP (src, 0), next_io->var_address))
7988 {
7989 if (dump_file)
7990 fprintf (dump_file,
7991 ";; [Local] Removing membar %d since the target"
7992 " of %d is used before the I/O operation\n",
7993 INSN_UID (next_membar), INSN_UID (insn));
7994
7995 if (next_membar == *last_membar)
7996 *last_membar = 0;
7997
7998 delete_insn (next_membar);
7999 next_membar = 0;
8000 }
8001 }
8002
8003 /* If INSN has volatile references, forget about any registers
8004 that are used after it. Otherwise forget about uses that
8005 are (or might be) defined by INSN. */
8006 if (volatile_refs_p (PATTERN (insn)))
8007 CLEAR_HARD_REG_SET (used_regs);
8008 else
8009 note_stores (PATTERN (insn), frv_io_handle_set, &used_regs);
8010
8011 note_uses (&PATTERN (insn), frv_io_handle_use, &used_regs);
8012 break;
8013 }
8014}
8015
8016/* See if MEMBAR, the last membar instruction in BB, can be removed.
8017 FIRST_IO[X] describes the first operation performed by basic block X. */
8018
8019static void
8020frv_optimize_membar_global (basic_block bb, struct frv_io *first_io,
8021 rtx membar)
8022{
8023 struct frv_io this_io, next_io;
8024 edge succ;
8025 edge_iterator ei;
8026
8027 /* We need to keep the membar if there is an edge to the exit block. */
8028 FOR_EACH_EDGE (succ, ei, bb->succs)
8029 /* for (succ = bb->succ; succ != 0; succ = succ->succ_next) */
8030 if (succ->dest == EXIT_BLOCK_PTR)
8031 return;
8032
8033 /* Work out the union of all successor blocks. */
8034 ei = ei_start (bb->succs);
8035 ei_cond (ei, &succ);
8036 /* next_io = first_io[bb->succ->dest->index]; */
8037 next_io = first_io[succ->dest->index];
8038 ei = ei_start (bb->succs);
8039 if (ei_cond (ei, &succ))
8040 {
8041 for (ei_next (&ei); ei_cond (ei, &succ); ei_next (&ei))
8042 /*for (succ = bb->succ->succ_next; succ != 0; succ = succ->succ_next)*/
8043 frv_io_union (&next_io, &first_io[succ->dest->index]);
8044 }
8045 else
8046 gcc_unreachable ();
8047
8048 frv_extract_membar (&this_io, membar);
8049 if (frv_io_fixed_order_p (&this_io, &next_io))
8050 {
8051 if (dump_file)
8052 fprintf (dump_file,
8053 ";; [Global] Removing membar %d since order of accesses"
8054 " is guaranteed\n", INSN_UID (membar));
8055
8056 delete_insn (membar);
8057 }
8058}
8059
8060/* Remove redundant membars from the current function. */
8061
8062static void
8063frv_optimize_membar (void)
8064{
8065 basic_block bb;
8066 struct frv_io *first_io;
8067 rtx *last_membar;
8068
8069 compute_bb_for_insn ();
5ead67f6
KG
8070 first_io = XCNEWVEC (struct frv_io, last_basic_block);
8071 last_membar = XCNEWVEC (rtx, last_basic_block);
38c28a25
AH
8072
8073 FOR_EACH_BB (bb)
8074 frv_optimize_membar_local (bb, &first_io[bb->index],
8075 &last_membar[bb->index]);
8076
8077 FOR_EACH_BB (bb)
8078 if (last_membar[bb->index] != 0)
8079 frv_optimize_membar_global (bb, first_io, last_membar[bb->index]);
8080
8081 free (first_io);
8082 free (last_membar);
8083}
8084\f
c557edf4
RS
8085/* Used by frv_reorg to keep track of the current packet's address. */
8086static unsigned int frv_packet_address;
36a05131 8087
c557edf4
RS
8088/* If the current packet falls through to a label, try to pad the packet
8089 with nops in order to fit the label's alignment requirements. */
8090
8091static void
8092frv_align_label (void)
8093{
8094 unsigned int alignment, target, nop;
8095 rtx x, last, barrier, label;
8096
8097 /* Walk forward to the start of the next packet. Set ALIGNMENT to the
8098 maximum alignment of that packet, LABEL to the last label between
8099 the packets, and BARRIER to the last barrier. */
8100 last = frv_packet.insns[frv_packet.num_insns - 1];
8101 label = barrier = 0;
8102 alignment = 4;
8103 for (x = NEXT_INSN (last); x != 0 && !INSN_P (x); x = NEXT_INSN (x))
8104 {
8105 if (LABEL_P (x))
36a05131 8106 {
c557edf4
RS
8107 unsigned int subalign = 1 << label_to_alignment (x);
8108 alignment = MAX (alignment, subalign);
8109 label = x;
36a05131 8110 }
c557edf4
RS
8111 if (BARRIER_P (x))
8112 barrier = x;
8113 }
36a05131 8114
c557edf4
RS
8115 /* If -malign-labels, and the packet falls through to an unaligned
8116 label, try introducing a nop to align that label to 8 bytes. */
8117 if (TARGET_ALIGN_LABELS
8118 && label != 0
8119 && barrier == 0
8120 && frv_packet.num_insns < frv_packet.issue_rate)
8121 alignment = MAX (alignment, 8);
36a05131 8122
c557edf4
RS
8123 /* Advance the address to the end of the current packet. */
8124 frv_packet_address += frv_packet.num_insns * 4;
36a05131 8125
c557edf4
RS
8126 /* Work out the target address, after alignment. */
8127 target = (frv_packet_address + alignment - 1) & -alignment;
8128
8129 /* If the packet falls through to the label, try to find an efficient
8130 padding sequence. */
8131 if (barrier == 0)
8132 {
8133 /* First try adding nops to the current packet. */
8134 for (nop = 0; nop < frv_num_nops; nop++)
8135 while (frv_packet_address < target && frv_pack_insn_p (frv_nops[nop]))
8136 {
8137 frv_insert_nop_in_packet (frv_nops[nop]);
8138 frv_packet_address += 4;
8139 }
8140
8141 /* If we still haven't reached the target, add some new packets that
8142 contain only nops. If there are two types of nop, insert an
8143 alternating sequence of frv_nops[0] and frv_nops[1], which will
8144 lead to packets like:
8145
8146 nop.p
8147 mnop.p/fnop.p
8148 nop.p
8149 mnop/fnop
8150
8151 etc. Just emit frv_nops[0] if that's the only nop we have. */
8152 last = frv_packet.insns[frv_packet.num_insns - 1];
8153 nop = 0;
8154 while (frv_packet_address < target)
8155 {
8156 last = emit_insn_after (PATTERN (frv_nops[nop]), last);
8157 frv_packet_address += 4;
8158 if (frv_num_nops > 1)
8159 nop ^= 1;
36a05131
BS
8160 }
8161 }
8162
c557edf4 8163 frv_packet_address = target;
36a05131
BS
8164}
8165
c557edf4
RS
8166/* Subroutine of frv_reorg, called after each packet has been constructed
8167 in frv_packet. */
8168
8169static void
8170frv_reorg_packet (void)
8171{
8172 frv_fill_unused_units (GROUP_I);
8173 frv_fill_unused_units (GROUP_FM);
8174 frv_align_label ();
8175}
8176
8177/* Add an instruction with pattern NOP to frv_nops[]. */
8178
8179static void
8180frv_register_nop (rtx nop)
8181{
8182 nop = make_insn_raw (nop);
8183 NEXT_INSN (nop) = 0;
8184 PREV_INSN (nop) = 0;
8185 frv_nops[frv_num_nops++] = nop;
8186}
8187
8188/* Implement TARGET_MACHINE_DEPENDENT_REORG. Divide the instructions
8189 into packets and check whether we need to insert nops in order to
8190 fulfill the processor's issue requirements. Also, if the user has
8191 requested a certain alignment for a label, try to meet that alignment
8192 by inserting nops in the previous packet. */
8193
8194static void
8195frv_reorg (void)
8196{
38c28a25
AH
8197 if (optimize > 0 && TARGET_OPTIMIZE_MEMBAR && cfun->machine->has_membar_p)
8198 frv_optimize_membar ();
8199
c557edf4
RS
8200 frv_num_nops = 0;
8201 frv_register_nop (gen_nop ());
8202 if (TARGET_MEDIA)
8203 frv_register_nop (gen_mnop ());
8204 if (TARGET_HARD_FLOAT)
8205 frv_register_nop (gen_fnop ());
8206
8207 /* Estimate the length of each branch. Although this may change after
8208 we've inserted nops, it will only do so in big functions. */
8209 shorten_branches (get_insns ());
8210
8211 frv_packet_address = 0;
8212 frv_for_each_packet (frv_reorg_packet);
8213}
36a05131
BS
8214\f
8215#define def_builtin(name, type, code) \
c79efc4d 8216 add_builtin_function ((name), (type), (code), BUILT_IN_MD, NULL, NULL)
36a05131
BS
8217
8218struct builtin_description
8219{
8220 enum insn_code icode;
8221 const char *name;
8222 enum frv_builtins code;
8223 enum rtx_code comparison;
8224 unsigned int flag;
8225};
8226
8227/* Media intrinsics that take a single, constant argument. */
8228
8229static struct builtin_description bdesc_set[] =
8230{
5c5e8419 8231 { CODE_FOR_mhdsets, "__MHDSETS", FRV_BUILTIN_MHDSETS, UNKNOWN, 0 }
36a05131
BS
8232};
8233
87b483a1 8234/* Media intrinsics that take just one argument. */
36a05131
BS
8235
8236static struct builtin_description bdesc_1arg[] =
8237{
5c5e8419
JR
8238 { CODE_FOR_mnot, "__MNOT", FRV_BUILTIN_MNOT, UNKNOWN, 0 },
8239 { CODE_FOR_munpackh, "__MUNPACKH", FRV_BUILTIN_MUNPACKH, UNKNOWN, 0 },
8240 { CODE_FOR_mbtoh, "__MBTOH", FRV_BUILTIN_MBTOH, UNKNOWN, 0 },
8241 { CODE_FOR_mhtob, "__MHTOB", FRV_BUILTIN_MHTOB, UNKNOWN, 0},
8242 { CODE_FOR_mabshs, "__MABSHS", FRV_BUILTIN_MABSHS, UNKNOWN, 0 },
8243 { CODE_FOR_scutss, "__SCUTSS", FRV_BUILTIN_SCUTSS, UNKNOWN, 0 }
36a05131
BS
8244};
8245
87b483a1 8246/* Media intrinsics that take two arguments. */
36a05131
BS
8247
8248static struct builtin_description bdesc_2arg[] =
8249{
5c5e8419
JR
8250 { CODE_FOR_mand, "__MAND", FRV_BUILTIN_MAND, UNKNOWN, 0},
8251 { CODE_FOR_mor, "__MOR", FRV_BUILTIN_MOR, UNKNOWN, 0},
8252 { CODE_FOR_mxor, "__MXOR", FRV_BUILTIN_MXOR, UNKNOWN, 0},
8253 { CODE_FOR_maveh, "__MAVEH", FRV_BUILTIN_MAVEH, UNKNOWN, 0},
8254 { CODE_FOR_msaths, "__MSATHS", FRV_BUILTIN_MSATHS, UNKNOWN, 0},
8255 { CODE_FOR_msathu, "__MSATHU", FRV_BUILTIN_MSATHU, UNKNOWN, 0},
8256 { CODE_FOR_maddhss, "__MADDHSS", FRV_BUILTIN_MADDHSS, UNKNOWN, 0},
8257 { CODE_FOR_maddhus, "__MADDHUS", FRV_BUILTIN_MADDHUS, UNKNOWN, 0},
8258 { CODE_FOR_msubhss, "__MSUBHSS", FRV_BUILTIN_MSUBHSS, UNKNOWN, 0},
8259 { CODE_FOR_msubhus, "__MSUBHUS", FRV_BUILTIN_MSUBHUS, UNKNOWN, 0},
8260 { CODE_FOR_mqaddhss, "__MQADDHSS", FRV_BUILTIN_MQADDHSS, UNKNOWN, 0},
8261 { CODE_FOR_mqaddhus, "__MQADDHUS", FRV_BUILTIN_MQADDHUS, UNKNOWN, 0},
8262 { CODE_FOR_mqsubhss, "__MQSUBHSS", FRV_BUILTIN_MQSUBHSS, UNKNOWN, 0},
8263 { CODE_FOR_mqsubhus, "__MQSUBHUS", FRV_BUILTIN_MQSUBHUS, UNKNOWN, 0},
8264 { CODE_FOR_mpackh, "__MPACKH", FRV_BUILTIN_MPACKH, UNKNOWN, 0},
8265 { CODE_FOR_mcop1, "__Mcop1", FRV_BUILTIN_MCOP1, UNKNOWN, 0},
8266 { CODE_FOR_mcop2, "__Mcop2", FRV_BUILTIN_MCOP2, UNKNOWN, 0},
8267 { CODE_FOR_mwcut, "__MWCUT", FRV_BUILTIN_MWCUT, UNKNOWN, 0},
8268 { CODE_FOR_mqsaths, "__MQSATHS", FRV_BUILTIN_MQSATHS, UNKNOWN, 0},
8269 { CODE_FOR_mqlclrhs, "__MQLCLRHS", FRV_BUILTIN_MQLCLRHS, UNKNOWN, 0},
8270 { CODE_FOR_mqlmths, "__MQLMTHS", FRV_BUILTIN_MQLMTHS, UNKNOWN, 0},
8271 { CODE_FOR_smul, "__SMUL", FRV_BUILTIN_SMUL, UNKNOWN, 0},
8272 { CODE_FOR_umul, "__UMUL", FRV_BUILTIN_UMUL, UNKNOWN, 0},
8273 { CODE_FOR_addss, "__ADDSS", FRV_BUILTIN_ADDSS, UNKNOWN, 0},
8274 { CODE_FOR_subss, "__SUBSS", FRV_BUILTIN_SUBSS, UNKNOWN, 0},
8275 { CODE_FOR_slass, "__SLASS", FRV_BUILTIN_SLASS, UNKNOWN, 0},
8276 { CODE_FOR_scan, "__SCAN", FRV_BUILTIN_SCAN, UNKNOWN, 0}
c557edf4
RS
8277};
8278
8279/* Integer intrinsics that take two arguments and have no return value. */
8280
8281static struct builtin_description bdesc_int_void2arg[] =
8282{
5c5e8419
JR
8283 { CODE_FOR_smass, "__SMASS", FRV_BUILTIN_SMASS, UNKNOWN, 0},
8284 { CODE_FOR_smsss, "__SMSSS", FRV_BUILTIN_SMSSS, UNKNOWN, 0},
8285 { CODE_FOR_smu, "__SMU", FRV_BUILTIN_SMU, UNKNOWN, 0}
c557edf4
RS
8286};
8287
8288static struct builtin_description bdesc_prefetches[] =
8289{
5c5e8419
JR
8290 { CODE_FOR_frv_prefetch0, "__data_prefetch0", FRV_BUILTIN_PREFETCH0, UNKNOWN,
8291 0},
8292 { CODE_FOR_frv_prefetch, "__data_prefetch", FRV_BUILTIN_PREFETCH, UNKNOWN, 0}
36a05131
BS
8293};
8294
8295/* Media intrinsics that take two arguments, the first being an ACC number. */
8296
8297static struct builtin_description bdesc_cut[] =
8298{
5c5e8419
JR
8299 { CODE_FOR_mcut, "__MCUT", FRV_BUILTIN_MCUT, UNKNOWN, 0},
8300 { CODE_FOR_mcutss, "__MCUTSS", FRV_BUILTIN_MCUTSS, UNKNOWN, 0},
8301 { CODE_FOR_mdcutssi, "__MDCUTSSI", FRV_BUILTIN_MDCUTSSI, UNKNOWN, 0}
36a05131
BS
8302};
8303
87b483a1 8304/* Two-argument media intrinsics with an immediate second argument. */
36a05131
BS
8305
8306static struct builtin_description bdesc_2argimm[] =
8307{
5c5e8419
JR
8308 { CODE_FOR_mrotli, "__MROTLI", FRV_BUILTIN_MROTLI, UNKNOWN, 0},
8309 { CODE_FOR_mrotri, "__MROTRI", FRV_BUILTIN_MROTRI, UNKNOWN, 0},
8310 { CODE_FOR_msllhi, "__MSLLHI", FRV_BUILTIN_MSLLHI, UNKNOWN, 0},
8311 { CODE_FOR_msrlhi, "__MSRLHI", FRV_BUILTIN_MSRLHI, UNKNOWN, 0},
8312 { CODE_FOR_msrahi, "__MSRAHI", FRV_BUILTIN_MSRAHI, UNKNOWN, 0},
8313 { CODE_FOR_mexpdhw, "__MEXPDHW", FRV_BUILTIN_MEXPDHW, UNKNOWN, 0},
8314 { CODE_FOR_mexpdhd, "__MEXPDHD", FRV_BUILTIN_MEXPDHD, UNKNOWN, 0},
8315 { CODE_FOR_mdrotli, "__MDROTLI", FRV_BUILTIN_MDROTLI, UNKNOWN, 0},
8316 { CODE_FOR_mcplhi, "__MCPLHI", FRV_BUILTIN_MCPLHI, UNKNOWN, 0},
8317 { CODE_FOR_mcpli, "__MCPLI", FRV_BUILTIN_MCPLI, UNKNOWN, 0},
8318 { CODE_FOR_mhsetlos, "__MHSETLOS", FRV_BUILTIN_MHSETLOS, UNKNOWN, 0},
8319 { CODE_FOR_mhsetloh, "__MHSETLOH", FRV_BUILTIN_MHSETLOH, UNKNOWN, 0},
8320 { CODE_FOR_mhsethis, "__MHSETHIS", FRV_BUILTIN_MHSETHIS, UNKNOWN, 0},
8321 { CODE_FOR_mhsethih, "__MHSETHIH", FRV_BUILTIN_MHSETHIH, UNKNOWN, 0},
8322 { CODE_FOR_mhdseth, "__MHDSETH", FRV_BUILTIN_MHDSETH, UNKNOWN, 0},
8323 { CODE_FOR_mqsllhi, "__MQSLLHI", FRV_BUILTIN_MQSLLHI, UNKNOWN, 0},
8324 { CODE_FOR_mqsrahi, "__MQSRAHI", FRV_BUILTIN_MQSRAHI, UNKNOWN, 0}
36a05131
BS
8325};
8326
8327/* Media intrinsics that take two arguments and return void, the first argument
87b483a1 8328 being a pointer to 4 words in memory. */
36a05131
BS
8329
8330static struct builtin_description bdesc_void2arg[] =
8331{
5c5e8419
JR
8332 { CODE_FOR_mdunpackh, "__MDUNPACKH", FRV_BUILTIN_MDUNPACKH, UNKNOWN, 0},
8333 { CODE_FOR_mbtohe, "__MBTOHE", FRV_BUILTIN_MBTOHE, UNKNOWN, 0},
36a05131
BS
8334};
8335
8336/* Media intrinsics that take three arguments, the first being a const_int that
87b483a1 8337 denotes an accumulator, and that return void. */
36a05131
BS
8338
8339static struct builtin_description bdesc_void3arg[] =
8340{
5c5e8419
JR
8341 { CODE_FOR_mcpxrs, "__MCPXRS", FRV_BUILTIN_MCPXRS, UNKNOWN, 0},
8342 { CODE_FOR_mcpxru, "__MCPXRU", FRV_BUILTIN_MCPXRU, UNKNOWN, 0},
8343 { CODE_FOR_mcpxis, "__MCPXIS", FRV_BUILTIN_MCPXIS, UNKNOWN, 0},
8344 { CODE_FOR_mcpxiu, "__MCPXIU", FRV_BUILTIN_MCPXIU, UNKNOWN, 0},
8345 { CODE_FOR_mmulhs, "__MMULHS", FRV_BUILTIN_MMULHS, UNKNOWN, 0},
8346 { CODE_FOR_mmulhu, "__MMULHU", FRV_BUILTIN_MMULHU, UNKNOWN, 0},
8347 { CODE_FOR_mmulxhs, "__MMULXHS", FRV_BUILTIN_MMULXHS, UNKNOWN, 0},
8348 { CODE_FOR_mmulxhu, "__MMULXHU", FRV_BUILTIN_MMULXHU, UNKNOWN, 0},
8349 { CODE_FOR_mmachs, "__MMACHS", FRV_BUILTIN_MMACHS, UNKNOWN, 0},
8350 { CODE_FOR_mmachu, "__MMACHU", FRV_BUILTIN_MMACHU, UNKNOWN, 0},
8351 { CODE_FOR_mmrdhs, "__MMRDHS", FRV_BUILTIN_MMRDHS, UNKNOWN, 0},
8352 { CODE_FOR_mmrdhu, "__MMRDHU", FRV_BUILTIN_MMRDHU, UNKNOWN, 0},
8353 { CODE_FOR_mqcpxrs, "__MQCPXRS", FRV_BUILTIN_MQCPXRS, UNKNOWN, 0},
8354 { CODE_FOR_mqcpxru, "__MQCPXRU", FRV_BUILTIN_MQCPXRU, UNKNOWN, 0},
8355 { CODE_FOR_mqcpxis, "__MQCPXIS", FRV_BUILTIN_MQCPXIS, UNKNOWN, 0},
8356 { CODE_FOR_mqcpxiu, "__MQCPXIU", FRV_BUILTIN_MQCPXIU, UNKNOWN, 0},
8357 { CODE_FOR_mqmulhs, "__MQMULHS", FRV_BUILTIN_MQMULHS, UNKNOWN, 0},
8358 { CODE_FOR_mqmulhu, "__MQMULHU", FRV_BUILTIN_MQMULHU, UNKNOWN, 0},
8359 { CODE_FOR_mqmulxhs, "__MQMULXHS", FRV_BUILTIN_MQMULXHS, UNKNOWN, 0},
8360 { CODE_FOR_mqmulxhu, "__MQMULXHU", FRV_BUILTIN_MQMULXHU, UNKNOWN, 0},
8361 { CODE_FOR_mqmachs, "__MQMACHS", FRV_BUILTIN_MQMACHS, UNKNOWN, 0},
8362 { CODE_FOR_mqmachu, "__MQMACHU", FRV_BUILTIN_MQMACHU, UNKNOWN, 0},
8363 { CODE_FOR_mqxmachs, "__MQXMACHS", FRV_BUILTIN_MQXMACHS, UNKNOWN, 0},
8364 { CODE_FOR_mqxmacxhs, "__MQXMACXHS", FRV_BUILTIN_MQXMACXHS, UNKNOWN, 0},
8365 { CODE_FOR_mqmacxhs, "__MQMACXHS", FRV_BUILTIN_MQMACXHS, UNKNOWN, 0}
36a05131
BS
8366};
8367
8368/* Media intrinsics that take two accumulator numbers as argument and
8369 return void. */
8370
8371static struct builtin_description bdesc_voidacc[] =
8372{
5c5e8419
JR
8373 { CODE_FOR_maddaccs, "__MADDACCS", FRV_BUILTIN_MADDACCS, UNKNOWN, 0},
8374 { CODE_FOR_msubaccs, "__MSUBACCS", FRV_BUILTIN_MSUBACCS, UNKNOWN, 0},
8375 { CODE_FOR_masaccs, "__MASACCS", FRV_BUILTIN_MASACCS, UNKNOWN, 0},
8376 { CODE_FOR_mdaddaccs, "__MDADDACCS", FRV_BUILTIN_MDADDACCS, UNKNOWN, 0},
8377 { CODE_FOR_mdsubaccs, "__MDSUBACCS", FRV_BUILTIN_MDSUBACCS, UNKNOWN, 0},
8378 { CODE_FOR_mdasaccs, "__MDASACCS", FRV_BUILTIN_MDASACCS, UNKNOWN, 0}
36a05131
BS
8379};
8380
38c28a25
AH
8381/* Intrinsics that load a value and then issue a MEMBAR. The load is
8382 a normal move and the ICODE is for the membar. */
c14ff86e
AH
8383
8384static struct builtin_description bdesc_loads[] =
8385{
38c28a25 8386 { CODE_FOR_optional_membar_qi, "__builtin_read8",
5c5e8419 8387 FRV_BUILTIN_READ8, UNKNOWN, 0},
38c28a25 8388 { CODE_FOR_optional_membar_hi, "__builtin_read16",
5c5e8419 8389 FRV_BUILTIN_READ16, UNKNOWN, 0},
38c28a25 8390 { CODE_FOR_optional_membar_si, "__builtin_read32",
5c5e8419 8391 FRV_BUILTIN_READ32, UNKNOWN, 0},
38c28a25 8392 { CODE_FOR_optional_membar_di, "__builtin_read64",
5c5e8419 8393 FRV_BUILTIN_READ64, UNKNOWN, 0}
c14ff86e
AH
8394};
8395
8396/* Likewise stores. */
8397
8398static struct builtin_description bdesc_stores[] =
8399{
38c28a25 8400 { CODE_FOR_optional_membar_qi, "__builtin_write8",
5c5e8419 8401 FRV_BUILTIN_WRITE8, UNKNOWN, 0},
38c28a25 8402 { CODE_FOR_optional_membar_hi, "__builtin_write16",
5c5e8419 8403 FRV_BUILTIN_WRITE16, UNKNOWN, 0},
38c28a25 8404 { CODE_FOR_optional_membar_si, "__builtin_write32",
5c5e8419 8405 FRV_BUILTIN_WRITE32, UNKNOWN, 0},
38c28a25 8406 { CODE_FOR_optional_membar_di, "__builtin_write64",
5c5e8419 8407 FRV_BUILTIN_WRITE64, UNKNOWN, 0},
c14ff86e
AH
8408};
8409
87b483a1 8410/* Initialize media builtins. */
36a05131 8411
14966b94 8412static void
f2206911 8413frv_init_builtins (void)
36a05131 8414{
36a05131
BS
8415 tree accumulator = integer_type_node;
8416 tree integer = integer_type_node;
8417 tree voidt = void_type_node;
8418 tree uhalf = short_unsigned_type_node;
8419 tree sword1 = long_integer_type_node;
8420 tree uword1 = long_unsigned_type_node;
8421 tree sword2 = long_long_integer_type_node;
8422 tree uword2 = long_long_unsigned_type_node;
8423 tree uword4 = build_pointer_type (uword1);
c14ff86e
AH
8424 tree vptr = build_pointer_type (build_type_variant (void_type_node, 0, 1));
8425 tree ubyte = unsigned_char_type_node;
c557edf4 8426 tree iacc = integer_type_node;
36a05131
BS
8427
8428#define UNARY(RET, T1) \
e84a6fcf 8429 build_function_type_list (RET, T1, NULL_TREE)
36a05131
BS
8430
8431#define BINARY(RET, T1, T2) \
e84a6fcf 8432 build_function_type_list (RET, T1, T2, NULL_TREE)
36a05131
BS
8433
8434#define TRINARY(RET, T1, T2, T3) \
e84a6fcf 8435 build_function_type_list (RET, T1, T2, T3, NULL_TREE)
36a05131 8436
a738d848 8437#define QUAD(RET, T1, T2, T3, T4) \
e84a6fcf 8438 build_function_type_list (RET, T1, T2, T3, NULL_TREE)
a738d848 8439
e84a6fcf 8440 tree void_ftype_void = build_function_type_list (voidt, NULL_TREE);
36a05131
BS
8441
8442 tree void_ftype_acc = UNARY (voidt, accumulator);
8443 tree void_ftype_uw4_uw1 = BINARY (voidt, uword4, uword1);
8444 tree void_ftype_uw4_uw2 = BINARY (voidt, uword4, uword2);
8445 tree void_ftype_acc_uw1 = BINARY (voidt, accumulator, uword1);
8446 tree void_ftype_acc_acc = BINARY (voidt, accumulator, accumulator);
8447 tree void_ftype_acc_uw1_uw1 = TRINARY (voidt, accumulator, uword1, uword1);
8448 tree void_ftype_acc_sw1_sw1 = TRINARY (voidt, accumulator, sword1, sword1);
8449 tree void_ftype_acc_uw2_uw2 = TRINARY (voidt, accumulator, uword2, uword2);
8450 tree void_ftype_acc_sw2_sw2 = TRINARY (voidt, accumulator, sword2, sword2);
8451
8452 tree uw1_ftype_uw1 = UNARY (uword1, uword1);
8453 tree uw1_ftype_sw1 = UNARY (uword1, sword1);
8454 tree uw1_ftype_uw2 = UNARY (uword1, uword2);
8455 tree uw1_ftype_acc = UNARY (uword1, accumulator);
8456 tree uw1_ftype_uh_uh = BINARY (uword1, uhalf, uhalf);
8457 tree uw1_ftype_uw1_uw1 = BINARY (uword1, uword1, uword1);
8458 tree uw1_ftype_uw1_int = BINARY (uword1, uword1, integer);
8459 tree uw1_ftype_acc_uw1 = BINARY (uword1, accumulator, uword1);
8460 tree uw1_ftype_acc_sw1 = BINARY (uword1, accumulator, sword1);
8461 tree uw1_ftype_uw2_uw1 = BINARY (uword1, uword2, uword1);
8462 tree uw1_ftype_uw2_int = BINARY (uword1, uword2, integer);
8463
8464 tree sw1_ftype_int = UNARY (sword1, integer);
8465 tree sw1_ftype_sw1_sw1 = BINARY (sword1, sword1, sword1);
8466 tree sw1_ftype_sw1_int = BINARY (sword1, sword1, integer);
8467
8468 tree uw2_ftype_uw1 = UNARY (uword2, uword1);
8469 tree uw2_ftype_uw1_int = BINARY (uword2, uword1, integer);
8470 tree uw2_ftype_uw2_uw2 = BINARY (uword2, uword2, uword2);
8471 tree uw2_ftype_uw2_int = BINARY (uword2, uword2, integer);
8472 tree uw2_ftype_acc_int = BINARY (uword2, accumulator, integer);
a738d848 8473 tree uw2_ftype_uh_uh_uh_uh = QUAD (uword2, uhalf, uhalf, uhalf, uhalf);
36a05131
BS
8474
8475 tree sw2_ftype_sw2_sw2 = BINARY (sword2, sword2, sword2);
c557edf4
RS
8476 tree sw2_ftype_sw2_int = BINARY (sword2, sword2, integer);
8477 tree uw2_ftype_uw1_uw1 = BINARY (uword2, uword1, uword1);
8478 tree sw2_ftype_sw1_sw1 = BINARY (sword2, sword1, sword1);
8479 tree void_ftype_sw1_sw1 = BINARY (voidt, sword1, sword1);
8480 tree void_ftype_iacc_sw2 = BINARY (voidt, iacc, sword2);
8481 tree void_ftype_iacc_sw1 = BINARY (voidt, iacc, sword1);
8482 tree sw1_ftype_sw1 = UNARY (sword1, sword1);
8483 tree sw2_ftype_iacc = UNARY (sword2, iacc);
8484 tree sw1_ftype_iacc = UNARY (sword1, iacc);
8485 tree void_ftype_ptr = UNARY (voidt, const_ptr_type_node);
c14ff86e
AH
8486 tree uw1_ftype_vptr = UNARY (uword1, vptr);
8487 tree uw2_ftype_vptr = UNARY (uword2, vptr);
8488 tree void_ftype_vptr_ub = BINARY (voidt, vptr, ubyte);
8489 tree void_ftype_vptr_uh = BINARY (voidt, vptr, uhalf);
8490 tree void_ftype_vptr_uw1 = BINARY (voidt, vptr, uword1);
8491 tree void_ftype_vptr_uw2 = BINARY (voidt, vptr, uword2);
36a05131
BS
8492
8493 def_builtin ("__MAND", uw1_ftype_uw1_uw1, FRV_BUILTIN_MAND);
8494 def_builtin ("__MOR", uw1_ftype_uw1_uw1, FRV_BUILTIN_MOR);
8495 def_builtin ("__MXOR", uw1_ftype_uw1_uw1, FRV_BUILTIN_MXOR);
8496 def_builtin ("__MNOT", uw1_ftype_uw1, FRV_BUILTIN_MNOT);
8497 def_builtin ("__MROTLI", uw1_ftype_uw1_int, FRV_BUILTIN_MROTLI);
8498 def_builtin ("__MROTRI", uw1_ftype_uw1_int, FRV_BUILTIN_MROTRI);
8499 def_builtin ("__MWCUT", uw1_ftype_uw2_uw1, FRV_BUILTIN_MWCUT);
8500 def_builtin ("__MAVEH", uw1_ftype_uw1_uw1, FRV_BUILTIN_MAVEH);
8501 def_builtin ("__MSLLHI", uw1_ftype_uw1_int, FRV_BUILTIN_MSLLHI);
8502 def_builtin ("__MSRLHI", uw1_ftype_uw1_int, FRV_BUILTIN_MSRLHI);
8503 def_builtin ("__MSRAHI", sw1_ftype_sw1_int, FRV_BUILTIN_MSRAHI);
8504 def_builtin ("__MSATHS", sw1_ftype_sw1_sw1, FRV_BUILTIN_MSATHS);
8505 def_builtin ("__MSATHU", uw1_ftype_uw1_uw1, FRV_BUILTIN_MSATHU);
8506 def_builtin ("__MADDHSS", sw1_ftype_sw1_sw1, FRV_BUILTIN_MADDHSS);
8507 def_builtin ("__MADDHUS", uw1_ftype_uw1_uw1, FRV_BUILTIN_MADDHUS);
8508 def_builtin ("__MSUBHSS", sw1_ftype_sw1_sw1, FRV_BUILTIN_MSUBHSS);
8509 def_builtin ("__MSUBHUS", uw1_ftype_uw1_uw1, FRV_BUILTIN_MSUBHUS);
8510 def_builtin ("__MMULHS", void_ftype_acc_sw1_sw1, FRV_BUILTIN_MMULHS);
8511 def_builtin ("__MMULHU", void_ftype_acc_uw1_uw1, FRV_BUILTIN_MMULHU);
8512 def_builtin ("__MMULXHS", void_ftype_acc_sw1_sw1, FRV_BUILTIN_MMULXHS);
8513 def_builtin ("__MMULXHU", void_ftype_acc_uw1_uw1, FRV_BUILTIN_MMULXHU);
8514 def_builtin ("__MMACHS", void_ftype_acc_sw1_sw1, FRV_BUILTIN_MMACHS);
8515 def_builtin ("__MMACHU", void_ftype_acc_uw1_uw1, FRV_BUILTIN_MMACHU);
8516 def_builtin ("__MMRDHS", void_ftype_acc_sw1_sw1, FRV_BUILTIN_MMRDHS);
8517 def_builtin ("__MMRDHU", void_ftype_acc_uw1_uw1, FRV_BUILTIN_MMRDHU);
8518 def_builtin ("__MQADDHSS", sw2_ftype_sw2_sw2, FRV_BUILTIN_MQADDHSS);
8519 def_builtin ("__MQADDHUS", uw2_ftype_uw2_uw2, FRV_BUILTIN_MQADDHUS);
8520 def_builtin ("__MQSUBHSS", sw2_ftype_sw2_sw2, FRV_BUILTIN_MQSUBHSS);
8521 def_builtin ("__MQSUBHUS", uw2_ftype_uw2_uw2, FRV_BUILTIN_MQSUBHUS);
8522 def_builtin ("__MQMULHS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQMULHS);
8523 def_builtin ("__MQMULHU", void_ftype_acc_uw2_uw2, FRV_BUILTIN_MQMULHU);
8524 def_builtin ("__MQMULXHS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQMULXHS);
8525 def_builtin ("__MQMULXHU", void_ftype_acc_uw2_uw2, FRV_BUILTIN_MQMULXHU);
8526 def_builtin ("__MQMACHS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQMACHS);
8527 def_builtin ("__MQMACHU", void_ftype_acc_uw2_uw2, FRV_BUILTIN_MQMACHU);
8528 def_builtin ("__MCPXRS", void_ftype_acc_sw1_sw1, FRV_BUILTIN_MCPXRS);
8529 def_builtin ("__MCPXRU", void_ftype_acc_uw1_uw1, FRV_BUILTIN_MCPXRU);
8530 def_builtin ("__MCPXIS", void_ftype_acc_sw1_sw1, FRV_BUILTIN_MCPXIS);
8531 def_builtin ("__MCPXIU", void_ftype_acc_uw1_uw1, FRV_BUILTIN_MCPXIU);
8532 def_builtin ("__MQCPXRS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQCPXRS);
8533 def_builtin ("__MQCPXRU", void_ftype_acc_uw2_uw2, FRV_BUILTIN_MQCPXRU);
8534 def_builtin ("__MQCPXIS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQCPXIS);
8535 def_builtin ("__MQCPXIU", void_ftype_acc_uw2_uw2, FRV_BUILTIN_MQCPXIU);
8536 def_builtin ("__MCUT", uw1_ftype_acc_uw1, FRV_BUILTIN_MCUT);
8537 def_builtin ("__MCUTSS", uw1_ftype_acc_sw1, FRV_BUILTIN_MCUTSS);
8538 def_builtin ("__MEXPDHW", uw1_ftype_uw1_int, FRV_BUILTIN_MEXPDHW);
8539 def_builtin ("__MEXPDHD", uw2_ftype_uw1_int, FRV_BUILTIN_MEXPDHD);
8540 def_builtin ("__MPACKH", uw1_ftype_uh_uh, FRV_BUILTIN_MPACKH);
8541 def_builtin ("__MUNPACKH", uw2_ftype_uw1, FRV_BUILTIN_MUNPACKH);
a738d848 8542 def_builtin ("__MDPACKH", uw2_ftype_uh_uh_uh_uh, FRV_BUILTIN_MDPACKH);
b16c1435 8543 def_builtin ("__MDUNPACKH", void_ftype_uw4_uw2, FRV_BUILTIN_MDUNPACKH);
36a05131
BS
8544 def_builtin ("__MBTOH", uw2_ftype_uw1, FRV_BUILTIN_MBTOH);
8545 def_builtin ("__MHTOB", uw1_ftype_uw2, FRV_BUILTIN_MHTOB);
8546 def_builtin ("__MBTOHE", void_ftype_uw4_uw1, FRV_BUILTIN_MBTOHE);
8547 def_builtin ("__MCLRACC", void_ftype_acc, FRV_BUILTIN_MCLRACC);
8548 def_builtin ("__MCLRACCA", void_ftype_void, FRV_BUILTIN_MCLRACCA);
8549 def_builtin ("__MRDACC", uw1_ftype_acc, FRV_BUILTIN_MRDACC);
8550 def_builtin ("__MRDACCG", uw1_ftype_acc, FRV_BUILTIN_MRDACCG);
8551 def_builtin ("__MWTACC", void_ftype_acc_uw1, FRV_BUILTIN_MWTACC);
8552 def_builtin ("__MWTACCG", void_ftype_acc_uw1, FRV_BUILTIN_MWTACCG);
8553 def_builtin ("__Mcop1", uw1_ftype_uw1_uw1, FRV_BUILTIN_MCOP1);
8554 def_builtin ("__Mcop2", uw1_ftype_uw1_uw1, FRV_BUILTIN_MCOP2);
8555 def_builtin ("__MTRAP", void_ftype_void, FRV_BUILTIN_MTRAP);
8556 def_builtin ("__MQXMACHS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQXMACHS);
8557 def_builtin ("__MQXMACXHS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQXMACXHS);
8558 def_builtin ("__MQMACXHS", void_ftype_acc_sw2_sw2, FRV_BUILTIN_MQMACXHS);
8559 def_builtin ("__MADDACCS", void_ftype_acc_acc, FRV_BUILTIN_MADDACCS);
8560 def_builtin ("__MSUBACCS", void_ftype_acc_acc, FRV_BUILTIN_MSUBACCS);
8561 def_builtin ("__MASACCS", void_ftype_acc_acc, FRV_BUILTIN_MASACCS);
8562 def_builtin ("__MDADDACCS", void_ftype_acc_acc, FRV_BUILTIN_MDADDACCS);
8563 def_builtin ("__MDSUBACCS", void_ftype_acc_acc, FRV_BUILTIN_MDSUBACCS);
8564 def_builtin ("__MDASACCS", void_ftype_acc_acc, FRV_BUILTIN_MDASACCS);
8565 def_builtin ("__MABSHS", uw1_ftype_sw1, FRV_BUILTIN_MABSHS);
8566 def_builtin ("__MDROTLI", uw2_ftype_uw2_int, FRV_BUILTIN_MDROTLI);
8567 def_builtin ("__MCPLHI", uw1_ftype_uw2_int, FRV_BUILTIN_MCPLHI);
8568 def_builtin ("__MCPLI", uw1_ftype_uw2_int, FRV_BUILTIN_MCPLI);
8569 def_builtin ("__MDCUTSSI", uw2_ftype_acc_int, FRV_BUILTIN_MDCUTSSI);
8570 def_builtin ("__MQSATHS", sw2_ftype_sw2_sw2, FRV_BUILTIN_MQSATHS);
8571 def_builtin ("__MHSETLOS", sw1_ftype_sw1_int, FRV_BUILTIN_MHSETLOS);
8572 def_builtin ("__MHSETHIS", sw1_ftype_sw1_int, FRV_BUILTIN_MHSETHIS);
8573 def_builtin ("__MHDSETS", sw1_ftype_int, FRV_BUILTIN_MHDSETS);
8574 def_builtin ("__MHSETLOH", uw1_ftype_uw1_int, FRV_BUILTIN_MHSETLOH);
8575 def_builtin ("__MHSETHIH", uw1_ftype_uw1_int, FRV_BUILTIN_MHSETHIH);
8576 def_builtin ("__MHDSETH", uw1_ftype_uw1_int, FRV_BUILTIN_MHDSETH);
c557edf4
RS
8577 def_builtin ("__MQLCLRHS", sw2_ftype_sw2_sw2, FRV_BUILTIN_MQLCLRHS);
8578 def_builtin ("__MQLMTHS", sw2_ftype_sw2_sw2, FRV_BUILTIN_MQLMTHS);
8579 def_builtin ("__MQSLLHI", uw2_ftype_uw2_int, FRV_BUILTIN_MQSLLHI);
8580 def_builtin ("__MQSRAHI", sw2_ftype_sw2_int, FRV_BUILTIN_MQSRAHI);
8581 def_builtin ("__SMUL", sw2_ftype_sw1_sw1, FRV_BUILTIN_SMUL);
8582 def_builtin ("__UMUL", uw2_ftype_uw1_uw1, FRV_BUILTIN_UMUL);
8583 def_builtin ("__SMASS", void_ftype_sw1_sw1, FRV_BUILTIN_SMASS);
8584 def_builtin ("__SMSSS", void_ftype_sw1_sw1, FRV_BUILTIN_SMSSS);
8585 def_builtin ("__SMU", void_ftype_sw1_sw1, FRV_BUILTIN_SMU);
8586 def_builtin ("__ADDSS", sw1_ftype_sw1_sw1, FRV_BUILTIN_ADDSS);
8587 def_builtin ("__SUBSS", sw1_ftype_sw1_sw1, FRV_BUILTIN_SUBSS);
8588 def_builtin ("__SLASS", sw1_ftype_sw1_sw1, FRV_BUILTIN_SLASS);
8589 def_builtin ("__SCAN", sw1_ftype_sw1_sw1, FRV_BUILTIN_SCAN);
8590 def_builtin ("__SCUTSS", sw1_ftype_sw1, FRV_BUILTIN_SCUTSS);
8591 def_builtin ("__IACCreadll", sw2_ftype_iacc, FRV_BUILTIN_IACCreadll);
8592 def_builtin ("__IACCreadl", sw1_ftype_iacc, FRV_BUILTIN_IACCreadl);
8593 def_builtin ("__IACCsetll", void_ftype_iacc_sw2, FRV_BUILTIN_IACCsetll);
8594 def_builtin ("__IACCsetl", void_ftype_iacc_sw1, FRV_BUILTIN_IACCsetl);
8595 def_builtin ("__data_prefetch0", void_ftype_ptr, FRV_BUILTIN_PREFETCH0);
8596 def_builtin ("__data_prefetch", void_ftype_ptr, FRV_BUILTIN_PREFETCH);
c14ff86e
AH
8597 def_builtin ("__builtin_read8", uw1_ftype_vptr, FRV_BUILTIN_READ8);
8598 def_builtin ("__builtin_read16", uw1_ftype_vptr, FRV_BUILTIN_READ16);
8599 def_builtin ("__builtin_read32", uw1_ftype_vptr, FRV_BUILTIN_READ32);
8600 def_builtin ("__builtin_read64", uw2_ftype_vptr, FRV_BUILTIN_READ64);
8601
8602 def_builtin ("__builtin_write8", void_ftype_vptr_ub, FRV_BUILTIN_WRITE8);
8603 def_builtin ("__builtin_write16", void_ftype_vptr_uh, FRV_BUILTIN_WRITE16);
8604 def_builtin ("__builtin_write32", void_ftype_vptr_uw1, FRV_BUILTIN_WRITE32);
8605 def_builtin ("__builtin_write64", void_ftype_vptr_uw2, FRV_BUILTIN_WRITE64);
36a05131
BS
8606
8607#undef UNARY
8608#undef BINARY
8609#undef TRINARY
a738d848 8610#undef QUAD
36a05131
BS
8611}
8612
c15c90bb
ZW
8613/* Set the names for various arithmetic operations according to the
8614 FRV ABI. */
8615static void
8616frv_init_libfuncs (void)
8617{
8618 set_optab_libfunc (smod_optab, SImode, "__modi");
8619 set_optab_libfunc (umod_optab, SImode, "__umodi");
8620
8621 set_optab_libfunc (add_optab, DImode, "__addll");
8622 set_optab_libfunc (sub_optab, DImode, "__subll");
8623 set_optab_libfunc (smul_optab, DImode, "__mulll");
8624 set_optab_libfunc (sdiv_optab, DImode, "__divll");
8625 set_optab_libfunc (smod_optab, DImode, "__modll");
8626 set_optab_libfunc (umod_optab, DImode, "__umodll");
8627 set_optab_libfunc (and_optab, DImode, "__andll");
8628 set_optab_libfunc (ior_optab, DImode, "__orll");
8629 set_optab_libfunc (xor_optab, DImode, "__xorll");
8630 set_optab_libfunc (one_cmpl_optab, DImode, "__notll");
8631
8632 set_optab_libfunc (add_optab, SFmode, "__addf");
8633 set_optab_libfunc (sub_optab, SFmode, "__subf");
8634 set_optab_libfunc (smul_optab, SFmode, "__mulf");
8635 set_optab_libfunc (sdiv_optab, SFmode, "__divf");
8636
8637 set_optab_libfunc (add_optab, DFmode, "__addd");
8638 set_optab_libfunc (sub_optab, DFmode, "__subd");
8639 set_optab_libfunc (smul_optab, DFmode, "__muld");
8640 set_optab_libfunc (sdiv_optab, DFmode, "__divd");
8641
85363ca0
ZW
8642 set_conv_libfunc (sext_optab, DFmode, SFmode, "__ftod");
8643 set_conv_libfunc (trunc_optab, SFmode, DFmode, "__dtof");
8644
8645 set_conv_libfunc (sfix_optab, SImode, SFmode, "__ftoi");
8646 set_conv_libfunc (sfix_optab, DImode, SFmode, "__ftoll");
8647 set_conv_libfunc (sfix_optab, SImode, DFmode, "__dtoi");
8648 set_conv_libfunc (sfix_optab, DImode, DFmode, "__dtoll");
8649
8650 set_conv_libfunc (ufix_optab, SImode, SFmode, "__ftoui");
09c55720
RS
8651 set_conv_libfunc (ufix_optab, DImode, SFmode, "__ftoull");
8652 set_conv_libfunc (ufix_optab, SImode, DFmode, "__dtoui");
8653 set_conv_libfunc (ufix_optab, DImode, DFmode, "__dtoull");
85363ca0
ZW
8654
8655 set_conv_libfunc (sfloat_optab, SFmode, SImode, "__itof");
8656 set_conv_libfunc (sfloat_optab, SFmode, DImode, "__lltof");
8657 set_conv_libfunc (sfloat_optab, DFmode, SImode, "__itod");
8658 set_conv_libfunc (sfloat_optab, DFmode, DImode, "__lltod");
c15c90bb
ZW
8659}
8660
36a05131
BS
8661/* Convert an integer constant to an accumulator register. ICODE is the
8662 code of the target instruction, OPNUM is the number of the
8663 accumulator operand and OPVAL is the constant integer. Try both
8664 ACC and ACCG registers; only report an error if neither fit the
8665 instruction. */
8666
8667static rtx
f2206911 8668frv_int_to_acc (enum insn_code icode, int opnum, rtx opval)
36a05131
BS
8669{
8670 rtx reg;
c557edf4
RS
8671 int i;
8672
0fa2e4df 8673 /* ACCs and ACCGs are implicit global registers if media intrinsics
c557edf4 8674 are being used. We set up this lazily to avoid creating lots of
c112cf2b 8675 unnecessary call_insn rtl in non-media code. */
c557edf4
RS
8676 for (i = 0; i <= ACC_MASK; i++)
8677 if ((i & ACC_MASK) == i)
8678 global_regs[i + ACC_FIRST] = global_regs[i + ACCG_FIRST] = 1;
36a05131
BS
8679
8680 if (GET_CODE (opval) != CONST_INT)
8681 {
8682 error ("accumulator is not a constant integer");
8683 return NULL_RTX;
8684 }
c557edf4 8685 if ((INTVAL (opval) & ~ACC_MASK) != 0)
36a05131
BS
8686 {
8687 error ("accumulator number is out of bounds");
8688 return NULL_RTX;
8689 }
8690
8691 reg = gen_rtx_REG (insn_data[icode].operand[opnum].mode,
8692 ACC_FIRST + INTVAL (opval));
8693 if (! (*insn_data[icode].operand[opnum].predicate) (reg, VOIDmode))
6fb5fa3c 8694 SET_REGNO (reg, ACCG_FIRST + INTVAL (opval));
36a05131
BS
8695
8696 if (! (*insn_data[icode].operand[opnum].predicate) (reg, VOIDmode))
8697 {
9e637a26 8698 error ("inappropriate accumulator for %qs", insn_data[icode].name);
36a05131
BS
8699 return NULL_RTX;
8700 }
8701 return reg;
8702}
8703
8704/* If an ACC rtx has mode MODE, return the mode that the matching ACCG
8705 should have. */
8706
8707static enum machine_mode
f2206911 8708frv_matching_accg_mode (enum machine_mode mode)
36a05131
BS
8709{
8710 switch (mode)
8711 {
8712 case V4SImode:
8713 return V4QImode;
8714
8715 case DImode:
8716 return HImode;
8717
8718 case SImode:
8719 return QImode;
8720
8721 default:
44e91694 8722 gcc_unreachable ();
36a05131
BS
8723 }
8724}
8725
38c28a25
AH
8726/* Given that a __builtin_read or __builtin_write function is accessing
8727 address ADDRESS, return the value that should be used as operand 1
8728 of the membar. */
8729
8730static rtx
8731frv_io_address_cookie (rtx address)
8732{
8733 return (GET_CODE (address) == CONST_INT
8734 ? GEN_INT (INTVAL (address) / 8 * 8)
8735 : const0_rtx);
8736}
8737
36a05131
BS
8738/* Return the accumulator guard that should be paired with accumulator
8739 register ACC. The mode of the returned register is in the same
8740 class as ACC, but is four times smaller. */
8741
8742rtx
f2206911 8743frv_matching_accg_for_acc (rtx acc)
36a05131
BS
8744{
8745 return gen_rtx_REG (frv_matching_accg_mode (GET_MODE (acc)),
8746 REGNO (acc) - ACC_FIRST + ACCG_FIRST);
8747}
8748
2396bce1
EC
8749/* Read the requested argument from the call EXP given by INDEX.
8750 Return the value as an rtx. */
36a05131
BS
8751
8752static rtx
2396bce1 8753frv_read_argument (tree exp, unsigned int index)
36a05131 8754{
5c5e8419 8755 return expand_normal (CALL_EXPR_ARG (exp, index));
36a05131
BS
8756}
8757
c557edf4
RS
8758/* Like frv_read_argument, but interpret the argument as the number
8759 of an IACC register and return a (reg:MODE ...) rtx for it. */
8760
8761static rtx
2396bce1
EC
8762frv_read_iacc_argument (enum machine_mode mode, tree call,
8763 unsigned int index)
c557edf4
RS
8764{
8765 int i, regno;
8766 rtx op;
8767
2396bce1 8768 op = frv_read_argument (call, index);
c557edf4
RS
8769 if (GET_CODE (op) != CONST_INT
8770 || INTVAL (op) < 0
8771 || INTVAL (op) > IACC_LAST - IACC_FIRST
8772 || ((INTVAL (op) * 4) & (GET_MODE_SIZE (mode) - 1)) != 0)
8773 {
8774 error ("invalid IACC argument");
8775 op = const0_rtx;
8776 }
8777
0fa2e4df 8778 /* IACCs are implicit global registers. We set up this lazily to
c112cf2b 8779 avoid creating lots of unnecessary call_insn rtl when IACCs aren't
c557edf4
RS
8780 being used. */
8781 regno = INTVAL (op) + IACC_FIRST;
8782 for (i = 0; i < HARD_REGNO_NREGS (regno, mode); i++)
8783 global_regs[regno + i] = 1;
8784
8785 return gen_rtx_REG (mode, regno);
8786}
8787
36a05131
BS
8788/* Return true if OPVAL can be used for operand OPNUM of instruction ICODE.
8789 The instruction should require a constant operand of some sort. The
8790 function prints an error if OPVAL is not valid. */
8791
8792static int
f2206911 8793frv_check_constant_argument (enum insn_code icode, int opnum, rtx opval)
36a05131
BS
8794{
8795 if (GET_CODE (opval) != CONST_INT)
8796 {
9e637a26 8797 error ("%qs expects a constant argument", insn_data[icode].name);
36a05131
BS
8798 return FALSE;
8799 }
8800 if (! (*insn_data[icode].operand[opnum].predicate) (opval, VOIDmode))
8801 {
9e637a26 8802 error ("constant argument out of range for %qs", insn_data[icode].name);
36a05131
BS
8803 return FALSE;
8804 }
8805 return TRUE;
8806}
8807
8808/* Return a legitimate rtx for instruction ICODE's return value. Use TARGET
8809 if it's not null, has the right mode, and satisfies operand 0's
8810 predicate. */
8811
8812static rtx
f2206911 8813frv_legitimize_target (enum insn_code icode, rtx target)
36a05131
BS
8814{
8815 enum machine_mode mode = insn_data[icode].operand[0].mode;
8816
8817 if (! target
8818 || GET_MODE (target) != mode
8819 || ! (*insn_data[icode].operand[0].predicate) (target, mode))
8820 return gen_reg_rtx (mode);
8821 else
8822 return target;
8823}
8824
8825/* Given that ARG is being passed as operand OPNUM to instruction ICODE,
839a4992 8826 check whether ARG satisfies the operand's constraints. If it doesn't,
36a05131
BS
8827 copy ARG to a temporary register and return that. Otherwise return ARG
8828 itself. */
8829
8830static rtx
f2206911 8831frv_legitimize_argument (enum insn_code icode, int opnum, rtx arg)
36a05131
BS
8832{
8833 enum machine_mode mode = insn_data[icode].operand[opnum].mode;
8834
8835 if ((*insn_data[icode].operand[opnum].predicate) (arg, mode))
8836 return arg;
8837 else
8838 return copy_to_mode_reg (mode, arg);
8839}
8840
c14ff86e
AH
8841/* Return a volatile memory reference of mode MODE whose address is ARG. */
8842
8843static rtx
8844frv_volatile_memref (enum machine_mode mode, rtx arg)
8845{
8846 rtx mem;
8847
8848 mem = gen_rtx_MEM (mode, memory_address (mode, arg));
8849 MEM_VOLATILE_P (mem) = 1;
8850 return mem;
8851}
8852
36a05131
BS
8853/* Expand builtins that take a single, constant argument. At the moment,
8854 only MHDSETS falls into this category. */
8855
8856static rtx
2396bce1 8857frv_expand_set_builtin (enum insn_code icode, tree call, rtx target)
36a05131
BS
8858{
8859 rtx pat;
2396bce1 8860 rtx op0 = frv_read_argument (call, 0);
36a05131
BS
8861
8862 if (! frv_check_constant_argument (icode, 1, op0))
8863 return NULL_RTX;
8864
8865 target = frv_legitimize_target (icode, target);
8866 pat = GEN_FCN (icode) (target, op0);
8867 if (! pat)
8868 return NULL_RTX;
8869
8870 emit_insn (pat);
8871 return target;
8872}
8873
87b483a1 8874/* Expand builtins that take one operand. */
36a05131
BS
8875
8876static rtx
2396bce1 8877frv_expand_unop_builtin (enum insn_code icode, tree call, rtx target)
36a05131
BS
8878{
8879 rtx pat;
2396bce1 8880 rtx op0 = frv_read_argument (call, 0);
36a05131
BS
8881
8882 target = frv_legitimize_target (icode, target);
8883 op0 = frv_legitimize_argument (icode, 1, op0);
8884 pat = GEN_FCN (icode) (target, op0);
8885 if (! pat)
8886 return NULL_RTX;
8887
8888 emit_insn (pat);
8889 return target;
8890}
8891
87b483a1 8892/* Expand builtins that take two operands. */
36a05131
BS
8893
8894static rtx
2396bce1 8895frv_expand_binop_builtin (enum insn_code icode, tree call, rtx target)
36a05131
BS
8896{
8897 rtx pat;
2396bce1
EC
8898 rtx op0 = frv_read_argument (call, 0);
8899 rtx op1 = frv_read_argument (call, 1);
36a05131
BS
8900
8901 target = frv_legitimize_target (icode, target);
8902 op0 = frv_legitimize_argument (icode, 1, op0);
8903 op1 = frv_legitimize_argument (icode, 2, op1);
8904 pat = GEN_FCN (icode) (target, op0, op1);
8905 if (! pat)
8906 return NULL_RTX;
8907
8908 emit_insn (pat);
8909 return target;
8910}
8911
8912/* Expand cut-style builtins, which take two operands and an implicit ACCG
87b483a1 8913 one. */
36a05131
BS
8914
8915static rtx
2396bce1 8916frv_expand_cut_builtin (enum insn_code icode, tree call, rtx target)
36a05131
BS
8917{
8918 rtx pat;
2396bce1
EC
8919 rtx op0 = frv_read_argument (call, 0);
8920 rtx op1 = frv_read_argument (call, 1);
36a05131
BS
8921 rtx op2;
8922
8923 target = frv_legitimize_target (icode, target);
8924 op0 = frv_int_to_acc (icode, 1, op0);
8925 if (! op0)
8926 return NULL_RTX;
8927
8928 if (icode == CODE_FOR_mdcutssi || GET_CODE (op1) == CONST_INT)
8929 {
8930 if (! frv_check_constant_argument (icode, 2, op1))
8931 return NULL_RTX;
8932 }
8933 else
8934 op1 = frv_legitimize_argument (icode, 2, op1);
8935
8936 op2 = frv_matching_accg_for_acc (op0);
8937 pat = GEN_FCN (icode) (target, op0, op1, op2);
8938 if (! pat)
8939 return NULL_RTX;
8940
8941 emit_insn (pat);
8942 return target;
8943}
8944
87b483a1 8945/* Expand builtins that take two operands and the second is immediate. */
36a05131
BS
8946
8947static rtx
2396bce1 8948frv_expand_binopimm_builtin (enum insn_code icode, tree call, rtx target)
36a05131
BS
8949{
8950 rtx pat;
2396bce1
EC
8951 rtx op0 = frv_read_argument (call, 0);
8952 rtx op1 = frv_read_argument (call, 1);
36a05131
BS
8953
8954 if (! frv_check_constant_argument (icode, 2, op1))
8955 return NULL_RTX;
8956
8957 target = frv_legitimize_target (icode, target);
8958 op0 = frv_legitimize_argument (icode, 1, op0);
8959 pat = GEN_FCN (icode) (target, op0, op1);
8960 if (! pat)
8961 return NULL_RTX;
8962
8963 emit_insn (pat);
8964 return target;
8965}
8966
8967/* Expand builtins that take two operands, the first operand being a pointer to
87b483a1 8968 ints and return void. */
36a05131
BS
8969
8970static rtx
2396bce1 8971frv_expand_voidbinop_builtin (enum insn_code icode, tree call)
36a05131
BS
8972{
8973 rtx pat;
2396bce1
EC
8974 rtx op0 = frv_read_argument (call, 0);
8975 rtx op1 = frv_read_argument (call, 1);
36a05131
BS
8976 enum machine_mode mode0 = insn_data[icode].operand[0].mode;
8977 rtx addr;
8978
8979 if (GET_CODE (op0) != MEM)
8980 {
8981 rtx reg = op0;
8982
8983 if (! offsettable_address_p (0, mode0, op0))
8984 {
8985 reg = gen_reg_rtx (Pmode);
8986 emit_insn (gen_rtx_SET (VOIDmode, reg, op0));
8987 }
8988
8989 op0 = gen_rtx_MEM (SImode, reg);
8990 }
8991
8992 addr = XEXP (op0, 0);
8993 if (! offsettable_address_p (0, mode0, addr))
8994 addr = copy_to_mode_reg (Pmode, op0);
8995
8996 op0 = change_address (op0, V4SImode, addr);
8997 op1 = frv_legitimize_argument (icode, 1, op1);
8998 pat = GEN_FCN (icode) (op0, op1);
8999 if (! pat)
9000 return 0;
9001
9002 emit_insn (pat);
9003 return 0;
9004}
9005
c557edf4
RS
9006/* Expand builtins that take two long operands and return void. */
9007
9008static rtx
2396bce1 9009frv_expand_int_void2arg (enum insn_code icode, tree call)
c557edf4
RS
9010{
9011 rtx pat;
2396bce1
EC
9012 rtx op0 = frv_read_argument (call, 0);
9013 rtx op1 = frv_read_argument (call, 1);
c557edf4
RS
9014
9015 op0 = frv_legitimize_argument (icode, 1, op0);
9016 op1 = frv_legitimize_argument (icode, 1, op1);
9017 pat = GEN_FCN (icode) (op0, op1);
9018 if (! pat)
9019 return NULL_RTX;
9020
9021 emit_insn (pat);
9022 return NULL_RTX;
9023}
9024
9025/* Expand prefetch builtins. These take a single address as argument. */
9026
9027static rtx
2396bce1 9028frv_expand_prefetches (enum insn_code icode, tree call)
c557edf4
RS
9029{
9030 rtx pat;
2396bce1 9031 rtx op0 = frv_read_argument (call, 0);
c557edf4
RS
9032
9033 pat = GEN_FCN (icode) (force_reg (Pmode, op0));
9034 if (! pat)
9035 return 0;
9036
9037 emit_insn (pat);
9038 return 0;
9039}
9040
36a05131
BS
9041/* Expand builtins that take three operands and return void. The first
9042 argument must be a constant that describes a pair or quad accumulators. A
9043 fourth argument is created that is the accumulator guard register that
9044 corresponds to the accumulator. */
9045
9046static rtx
2396bce1 9047frv_expand_voidtriop_builtin (enum insn_code icode, tree call)
36a05131
BS
9048{
9049 rtx pat;
2396bce1
EC
9050 rtx op0 = frv_read_argument (call, 0);
9051 rtx op1 = frv_read_argument (call, 1);
9052 rtx op2 = frv_read_argument (call, 2);
36a05131
BS
9053 rtx op3;
9054
9055 op0 = frv_int_to_acc (icode, 0, op0);
9056 if (! op0)
9057 return NULL_RTX;
9058
9059 op1 = frv_legitimize_argument (icode, 1, op1);
9060 op2 = frv_legitimize_argument (icode, 2, op2);
9061 op3 = frv_matching_accg_for_acc (op0);
9062 pat = GEN_FCN (icode) (op0, op1, op2, op3);
9063 if (! pat)
9064 return NULL_RTX;
9065
9066 emit_insn (pat);
9067 return NULL_RTX;
9068}
9069
9070/* Expand builtins that perform accumulator-to-accumulator operations.
9071 These builtins take two accumulator numbers as argument and return
9072 void. */
9073
9074static rtx
2396bce1 9075frv_expand_voidaccop_builtin (enum insn_code icode, tree call)
36a05131
BS
9076{
9077 rtx pat;
2396bce1
EC
9078 rtx op0 = frv_read_argument (call, 0);
9079 rtx op1 = frv_read_argument (call, 1);
36a05131
BS
9080 rtx op2;
9081 rtx op3;
9082
9083 op0 = frv_int_to_acc (icode, 0, op0);
9084 if (! op0)
9085 return NULL_RTX;
9086
9087 op1 = frv_int_to_acc (icode, 1, op1);
9088 if (! op1)
9089 return NULL_RTX;
9090
9091 op2 = frv_matching_accg_for_acc (op0);
9092 op3 = frv_matching_accg_for_acc (op1);
9093 pat = GEN_FCN (icode) (op0, op1, op2, op3);
9094 if (! pat)
9095 return NULL_RTX;
9096
9097 emit_insn (pat);
9098 return NULL_RTX;
9099}
9100
38c28a25
AH
9101/* Expand a __builtin_read* function. ICODE is the instruction code for the
9102 membar and TARGET_MODE is the mode that the loaded value should have. */
c14ff86e
AH
9103
9104static rtx
38c28a25 9105frv_expand_load_builtin (enum insn_code icode, enum machine_mode target_mode,
2396bce1 9106 tree call, rtx target)
c14ff86e 9107{
2396bce1 9108 rtx op0 = frv_read_argument (call, 0);
38c28a25
AH
9109 rtx cookie = frv_io_address_cookie (op0);
9110
9111 if (target == 0 || !REG_P (target))
9112 target = gen_reg_rtx (target_mode);
9113 op0 = frv_volatile_memref (insn_data[icode].operand[0].mode, op0);
9114 convert_move (target, op0, 1);
9115 emit_insn (GEN_FCN (icode) (copy_rtx (op0), cookie, GEN_INT (FRV_IO_READ)));
9116 cfun->machine->has_membar_p = 1;
c14ff86e
AH
9117 return target;
9118}
9119
38c28a25 9120/* Likewise __builtin_write* functions. */
c14ff86e
AH
9121
9122static rtx
2396bce1 9123frv_expand_store_builtin (enum insn_code icode, tree call)
c14ff86e 9124{
2396bce1
EC
9125 rtx op0 = frv_read_argument (call, 0);
9126 rtx op1 = frv_read_argument (call, 1);
38c28a25 9127 rtx cookie = frv_io_address_cookie (op0);
c14ff86e 9128
38c28a25
AH
9129 op0 = frv_volatile_memref (insn_data[icode].operand[0].mode, op0);
9130 convert_move (op0, force_reg (insn_data[icode].operand[0].mode, op1), 1);
9131 emit_insn (GEN_FCN (icode) (copy_rtx (op0), cookie, GEN_INT (FRV_IO_WRITE)));
9132 cfun->machine->has_membar_p = 1;
c14ff86e
AH
9133 return NULL_RTX;
9134}
9135
a738d848
RS
9136/* Expand the MDPACKH builtin. It takes four unsigned short arguments and
9137 each argument forms one word of the two double-word input registers.
2396bce1
EC
9138 CALL is the tree for the call and TARGET, if nonnull, suggests a good place
9139 to put the return value. */
a738d848
RS
9140
9141static rtx
2396bce1 9142frv_expand_mdpackh_builtin (tree call, rtx target)
a738d848
RS
9143{
9144 enum insn_code icode = CODE_FOR_mdpackh;
9145 rtx pat, op0, op1;
2396bce1
EC
9146 rtx arg1 = frv_read_argument (call, 0);
9147 rtx arg2 = frv_read_argument (call, 1);
9148 rtx arg3 = frv_read_argument (call, 2);
9149 rtx arg4 = frv_read_argument (call, 3);
a738d848
RS
9150
9151 target = frv_legitimize_target (icode, target);
9152 op0 = gen_reg_rtx (DImode);
9153 op1 = gen_reg_rtx (DImode);
9154
0fa2e4df 9155 /* The high half of each word is not explicitly initialized, so indicate
a738d848 9156 that the input operands are not live before this point. */
c41c1387
RS
9157 emit_clobber (op0);
9158 emit_clobber (op1);
a738d848
RS
9159
9160 /* Move each argument into the low half of its associated input word. */
9161 emit_move_insn (simplify_gen_subreg (HImode, op0, DImode, 2), arg1);
9162 emit_move_insn (simplify_gen_subreg (HImode, op0, DImode, 6), arg2);
9163 emit_move_insn (simplify_gen_subreg (HImode, op1, DImode, 2), arg3);
9164 emit_move_insn (simplify_gen_subreg (HImode, op1, DImode, 6), arg4);
9165
9166 pat = GEN_FCN (icode) (target, op0, op1);
9167 if (! pat)
9168 return NULL_RTX;
9169
9170 emit_insn (pat);
9171 return target;
9172}
9173
36a05131
BS
9174/* Expand the MCLRACC builtin. This builtin takes a single accumulator
9175 number as argument. */
9176
9177static rtx
2396bce1 9178frv_expand_mclracc_builtin (tree call)
36a05131
BS
9179{
9180 enum insn_code icode = CODE_FOR_mclracc;
9181 rtx pat;
2396bce1 9182 rtx op0 = frv_read_argument (call, 0);
36a05131
BS
9183
9184 op0 = frv_int_to_acc (icode, 0, op0);
9185 if (! op0)
9186 return NULL_RTX;
9187
9188 pat = GEN_FCN (icode) (op0);
9189 if (pat)
9190 emit_insn (pat);
9191
9192 return NULL_RTX;
9193}
9194
9195/* Expand builtins that take no arguments. */
9196
9197static rtx
f2206911 9198frv_expand_noargs_builtin (enum insn_code icode)
36a05131 9199{
a556fd39 9200 rtx pat = GEN_FCN (icode) (const0_rtx);
36a05131
BS
9201 if (pat)
9202 emit_insn (pat);
9203
9204 return NULL_RTX;
9205}
9206
9207/* Expand MRDACC and MRDACCG. These builtins take a single accumulator
9208 number or accumulator guard number as argument and return an SI integer. */
9209
9210static rtx
2396bce1 9211frv_expand_mrdacc_builtin (enum insn_code icode, tree call)
36a05131
BS
9212{
9213 rtx pat;
9214 rtx target = gen_reg_rtx (SImode);
2396bce1 9215 rtx op0 = frv_read_argument (call, 0);
36a05131
BS
9216
9217 op0 = frv_int_to_acc (icode, 1, op0);
9218 if (! op0)
9219 return NULL_RTX;
9220
9221 pat = GEN_FCN (icode) (target, op0);
9222 if (! pat)
9223 return NULL_RTX;
9224
9225 emit_insn (pat);
9226 return target;
9227}
9228
9229/* Expand MWTACC and MWTACCG. These builtins take an accumulator or
9230 accumulator guard as their first argument and an SImode value as their
9231 second. */
9232
9233static rtx
2396bce1 9234frv_expand_mwtacc_builtin (enum insn_code icode, tree call)
36a05131
BS
9235{
9236 rtx pat;
2396bce1
EC
9237 rtx op0 = frv_read_argument (call, 0);
9238 rtx op1 = frv_read_argument (call, 1);
36a05131
BS
9239
9240 op0 = frv_int_to_acc (icode, 0, op0);
9241 if (! op0)
9242 return NULL_RTX;
9243
9244 op1 = frv_legitimize_argument (icode, 1, op1);
9245 pat = GEN_FCN (icode) (op0, op1);
9246 if (pat)
9247 emit_insn (pat);
9248
9249 return NULL_RTX;
9250}
9251
c557edf4
RS
9252/* Emit a move from SRC to DEST in SImode chunks. This can be used
9253 to move DImode values into and out of IACC0. */
9254
9255static void
9256frv_split_iacc_move (rtx dest, rtx src)
9257{
9258 enum machine_mode inner;
9259 int i;
9260
9261 inner = GET_MODE (dest);
9262 for (i = 0; i < GET_MODE_SIZE (inner); i += GET_MODE_SIZE (SImode))
9263 emit_move_insn (simplify_gen_subreg (SImode, dest, inner, i),
9264 simplify_gen_subreg (SImode, src, inner, i));
9265}
9266
87b483a1 9267/* Expand builtins. */
36a05131 9268
14966b94 9269static rtx
f2206911
KC
9270frv_expand_builtin (tree exp,
9271 rtx target,
9272 rtx subtarget ATTRIBUTE_UNUSED,
9273 enum machine_mode mode ATTRIBUTE_UNUSED,
9274 int ignore ATTRIBUTE_UNUSED)
36a05131 9275{
5039610b 9276 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
36a05131
BS
9277 unsigned fcode = (unsigned)DECL_FUNCTION_CODE (fndecl);
9278 unsigned i;
9279 struct builtin_description *d;
9280
c557edf4 9281 if (fcode < FRV_BUILTIN_FIRST_NONMEDIA && !TARGET_MEDIA)
36a05131
BS
9282 {
9283 error ("media functions are not available unless -mmedia is used");
9284 return NULL_RTX;
9285 }
9286
9287 switch (fcode)
9288 {
9289 case FRV_BUILTIN_MCOP1:
9290 case FRV_BUILTIN_MCOP2:
9291 case FRV_BUILTIN_MDUNPACKH:
9292 case FRV_BUILTIN_MBTOHE:
9293 if (! TARGET_MEDIA_REV1)
9294 {
9295 error ("this media function is only available on the fr500");
9296 return NULL_RTX;
9297 }
9298 break;
9299
9300 case FRV_BUILTIN_MQXMACHS:
9301 case FRV_BUILTIN_MQXMACXHS:
9302 case FRV_BUILTIN_MQMACXHS:
9303 case FRV_BUILTIN_MADDACCS:
9304 case FRV_BUILTIN_MSUBACCS:
9305 case FRV_BUILTIN_MASACCS:
9306 case FRV_BUILTIN_MDADDACCS:
9307 case FRV_BUILTIN_MDSUBACCS:
9308 case FRV_BUILTIN_MDASACCS:
9309 case FRV_BUILTIN_MABSHS:
9310 case FRV_BUILTIN_MDROTLI:
9311 case FRV_BUILTIN_MCPLHI:
9312 case FRV_BUILTIN_MCPLI:
9313 case FRV_BUILTIN_MDCUTSSI:
9314 case FRV_BUILTIN_MQSATHS:
9315 case FRV_BUILTIN_MHSETLOS:
9316 case FRV_BUILTIN_MHSETLOH:
9317 case FRV_BUILTIN_MHSETHIS:
9318 case FRV_BUILTIN_MHSETHIH:
9319 case FRV_BUILTIN_MHDSETS:
9320 case FRV_BUILTIN_MHDSETH:
9321 if (! TARGET_MEDIA_REV2)
9322 {
c557edf4
RS
9323 error ("this media function is only available on the fr400"
9324 " and fr550");
9325 return NULL_RTX;
9326 }
9327 break;
9328
9329 case FRV_BUILTIN_SMASS:
9330 case FRV_BUILTIN_SMSSS:
9331 case FRV_BUILTIN_SMU:
9332 case FRV_BUILTIN_ADDSS:
9333 case FRV_BUILTIN_SUBSS:
9334 case FRV_BUILTIN_SLASS:
9335 case FRV_BUILTIN_SCUTSS:
9336 case FRV_BUILTIN_IACCreadll:
9337 case FRV_BUILTIN_IACCreadl:
9338 case FRV_BUILTIN_IACCsetll:
9339 case FRV_BUILTIN_IACCsetl:
9340 if (!TARGET_FR405_BUILTINS)
9341 {
9342 error ("this builtin function is only available"
9343 " on the fr405 and fr450");
9344 return NULL_RTX;
9345 }
9346 break;
9347
9348 case FRV_BUILTIN_PREFETCH:
9349 if (!TARGET_FR500_FR550_BUILTINS)
9350 {
9351 error ("this builtin function is only available on the fr500"
9352 " and fr550");
9353 return NULL_RTX;
9354 }
9355 break;
9356
9357 case FRV_BUILTIN_MQLCLRHS:
9358 case FRV_BUILTIN_MQLMTHS:
9359 case FRV_BUILTIN_MQSLLHI:
9360 case FRV_BUILTIN_MQSRAHI:
9361 if (!TARGET_MEDIA_FR450)
9362 {
9363 error ("this builtin function is only available on the fr450");
36a05131
BS
9364 return NULL_RTX;
9365 }
9366 break;
9367
9368 default:
9369 break;
9370 }
9371
87b483a1 9372 /* Expand unique builtins. */
36a05131
BS
9373
9374 switch (fcode)
9375 {
9376 case FRV_BUILTIN_MTRAP:
9377 return frv_expand_noargs_builtin (CODE_FOR_mtrap);
9378
9379 case FRV_BUILTIN_MCLRACC:
2396bce1 9380 return frv_expand_mclracc_builtin (exp);
36a05131
BS
9381
9382 case FRV_BUILTIN_MCLRACCA:
9383 if (TARGET_ACC_8)
9384 return frv_expand_noargs_builtin (CODE_FOR_mclracca8);
9385 else
9386 return frv_expand_noargs_builtin (CODE_FOR_mclracca4);
9387
9388 case FRV_BUILTIN_MRDACC:
2396bce1 9389 return frv_expand_mrdacc_builtin (CODE_FOR_mrdacc, exp);
36a05131
BS
9390
9391 case FRV_BUILTIN_MRDACCG:
2396bce1 9392 return frv_expand_mrdacc_builtin (CODE_FOR_mrdaccg, exp);
36a05131
BS
9393
9394 case FRV_BUILTIN_MWTACC:
2396bce1 9395 return frv_expand_mwtacc_builtin (CODE_FOR_mwtacc, exp);
36a05131
BS
9396
9397 case FRV_BUILTIN_MWTACCG:
2396bce1 9398 return frv_expand_mwtacc_builtin (CODE_FOR_mwtaccg, exp);
36a05131 9399
a738d848 9400 case FRV_BUILTIN_MDPACKH:
2396bce1 9401 return frv_expand_mdpackh_builtin (exp, target);
a738d848 9402
c557edf4
RS
9403 case FRV_BUILTIN_IACCreadll:
9404 {
2396bce1 9405 rtx src = frv_read_iacc_argument (DImode, exp, 0);
c557edf4
RS
9406 if (target == 0 || !REG_P (target))
9407 target = gen_reg_rtx (DImode);
9408 frv_split_iacc_move (target, src);
9409 return target;
9410 }
9411
9412 case FRV_BUILTIN_IACCreadl:
2396bce1 9413 return frv_read_iacc_argument (SImode, exp, 0);
c557edf4
RS
9414
9415 case FRV_BUILTIN_IACCsetll:
9416 {
2396bce1
EC
9417 rtx dest = frv_read_iacc_argument (DImode, exp, 0);
9418 rtx src = frv_read_argument (exp, 1);
c557edf4
RS
9419 frv_split_iacc_move (dest, force_reg (DImode, src));
9420 return 0;
9421 }
9422
9423 case FRV_BUILTIN_IACCsetl:
9424 {
2396bce1
EC
9425 rtx dest = frv_read_iacc_argument (SImode, exp, 0);
9426 rtx src = frv_read_argument (exp, 1);
c557edf4
RS
9427 emit_move_insn (dest, force_reg (SImode, src));
9428 return 0;
9429 }
9430
36a05131
BS
9431 default:
9432 break;
9433 }
9434
87b483a1 9435 /* Expand groups of builtins. */
36a05131 9436
e97a46ce 9437 for (i = 0, d = bdesc_set; i < ARRAY_SIZE (bdesc_set); i++, d++)
36a05131 9438 if (d->code == fcode)
2396bce1 9439 return frv_expand_set_builtin (d->icode, exp, target);
36a05131 9440
e97a46ce 9441 for (i = 0, d = bdesc_1arg; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
36a05131 9442 if (d->code == fcode)
2396bce1 9443 return frv_expand_unop_builtin (d->icode, exp, target);
36a05131 9444
e97a46ce 9445 for (i = 0, d = bdesc_2arg; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
36a05131 9446 if (d->code == fcode)
2396bce1 9447 return frv_expand_binop_builtin (d->icode, exp, target);
36a05131 9448
e97a46ce 9449 for (i = 0, d = bdesc_cut; i < ARRAY_SIZE (bdesc_cut); i++, d++)
36a05131 9450 if (d->code == fcode)
2396bce1 9451 return frv_expand_cut_builtin (d->icode, exp, target);
36a05131 9452
e97a46ce
KG
9453 for (i = 0, d = bdesc_2argimm; i < ARRAY_SIZE (bdesc_2argimm); i++, d++)
9454 if (d->code == fcode)
2396bce1 9455 return frv_expand_binopimm_builtin (d->icode, exp, target);
36a05131 9456
e97a46ce
KG
9457 for (i = 0, d = bdesc_void2arg; i < ARRAY_SIZE (bdesc_void2arg); i++, d++)
9458 if (d->code == fcode)
2396bce1 9459 return frv_expand_voidbinop_builtin (d->icode, exp);
36a05131 9460
e97a46ce
KG
9461 for (i = 0, d = bdesc_void3arg; i < ARRAY_SIZE (bdesc_void3arg); i++, d++)
9462 if (d->code == fcode)
2396bce1 9463 return frv_expand_voidtriop_builtin (d->icode, exp);
e97a46ce
KG
9464
9465 for (i = 0, d = bdesc_voidacc; i < ARRAY_SIZE (bdesc_voidacc); i++, d++)
9466 if (d->code == fcode)
2396bce1 9467 return frv_expand_voidaccop_builtin (d->icode, exp);
36a05131 9468
c557edf4
RS
9469 for (i = 0, d = bdesc_int_void2arg;
9470 i < ARRAY_SIZE (bdesc_int_void2arg); i++, d++)
9471 if (d->code == fcode)
2396bce1 9472 return frv_expand_int_void2arg (d->icode, exp);
c557edf4
RS
9473
9474 for (i = 0, d = bdesc_prefetches;
9475 i < ARRAY_SIZE (bdesc_prefetches); i++, d++)
9476 if (d->code == fcode)
2396bce1 9477 return frv_expand_prefetches (d->icode, exp);
c557edf4 9478
c14ff86e
AH
9479 for (i = 0, d = bdesc_loads; i < ARRAY_SIZE (bdesc_loads); i++, d++)
9480 if (d->code == fcode)
38c28a25 9481 return frv_expand_load_builtin (d->icode, TYPE_MODE (TREE_TYPE (exp)),
2396bce1 9482 exp, target);
c14ff86e
AH
9483
9484 for (i = 0, d = bdesc_stores; i < ARRAY_SIZE (bdesc_stores); i++, d++)
9485 if (d->code == fcode)
2396bce1 9486 return frv_expand_store_builtin (d->icode, exp);
c14ff86e 9487
36a05131
BS
9488 return 0;
9489}
14966b94 9490
b3fbfc07 9491static bool
3101faab 9492frv_in_small_data_p (const_tree decl)
b3fbfc07 9493{
0f6e5d45 9494 HOST_WIDE_INT size;
3101faab 9495 const_tree section_name;
0f6e5d45
RH
9496
9497 /* Don't apply the -G flag to internal compiler structures. We
9498 should leave such structures in the main data section, partly
9499 for efficiency and partly because the size of some of them
9500 (such as C++ typeinfos) is not known until later. */
9501 if (TREE_CODE (decl) != VAR_DECL || DECL_ARTIFICIAL (decl))
9502 return false;
9503
0f6e5d45
RH
9504 /* If we already know which section the decl should be in, see if
9505 it's a small data section. */
9506 section_name = DECL_SECTION_NAME (decl);
9507 if (section_name)
9508 {
44e91694 9509 gcc_assert (TREE_CODE (section_name) == STRING_CST);
0f6e5d45
RH
9510 if (frv_string_begins_with (section_name, ".sdata"))
9511 return true;
9512 if (frv_string_begins_with (section_name, ".sbss"))
9513 return true;
68c0ab4f 9514 return false;
0f6e5d45 9515 }
b3fbfc07 9516
68c0ab4f 9517 size = int_size_in_bytes (TREE_TYPE (decl));
fa37ed29 9518 if (size > 0 && size <= g_switch_value)
68c0ab4f
RS
9519 return true;
9520
0f6e5d45 9521 return false;
b3fbfc07 9522}
3c50106f
RH
9523\f
9524static bool
f2206911
KC
9525frv_rtx_costs (rtx x,
9526 int code ATTRIBUTE_UNUSED,
9527 int outer_code ATTRIBUTE_UNUSED,
68f932c4 9528 int opno ATTRIBUTE_UNUSED,
f40751dd
JH
9529 int *total,
9530 bool speed ATTRIBUTE_UNUSED)
3c50106f 9531{
34208acf
AO
9532 if (outer_code == MEM)
9533 {
9534 /* Don't differentiate between memory addresses. All the ones
9535 we accept have equal cost. */
9536 *total = COSTS_N_INSNS (0);
9537 return true;
9538 }
9539
3c50106f
RH
9540 switch (code)
9541 {
9542 case CONST_INT:
2300b9dd 9543 /* Make 12-bit integers really cheap. */
2f5b1308 9544 if (IN_RANGE (INTVAL (x), -2048, 2047))
3c50106f
RH
9545 {
9546 *total = 0;
9547 return true;
9548 }
87b483a1 9549 /* Fall through. */
3c50106f
RH
9550
9551 case CONST:
9552 case LABEL_REF:
9553 case SYMBOL_REF:
9554 case CONST_DOUBLE:
9555 *total = COSTS_N_INSNS (2);
9556 return true;
9557
9558 case PLUS:
9559 case MINUS:
9560 case AND:
9561 case IOR:
9562 case XOR:
9563 case ASHIFT:
9564 case ASHIFTRT:
9565 case LSHIFTRT:
9566 case NOT:
9567 case NEG:
9568 case COMPARE:
9569 if (GET_MODE (x) == SImode)
9570 *total = COSTS_N_INSNS (1);
9571 else if (GET_MODE (x) == DImode)
9572 *total = COSTS_N_INSNS (2);
9573 else
9574 *total = COSTS_N_INSNS (3);
9575 return true;
9576
9577 case MULT:
9578 if (GET_MODE (x) == SImode)
9579 *total = COSTS_N_INSNS (2);
9580 else
9581 *total = COSTS_N_INSNS (6); /* guess */
9582 return true;
9583
9584 case DIV:
9585 case UDIV:
9586 case MOD:
9587 case UMOD:
9588 *total = COSTS_N_INSNS (18);
9589 return true;
9590
34208acf
AO
9591 case MEM:
9592 *total = COSTS_N_INSNS (3);
9593 return true;
9594
3c50106f
RH
9595 default:
9596 return false;
9597 }
9598}
90a63880
RH
9599\f
9600static void
f2206911 9601frv_asm_out_constructor (rtx symbol, int priority ATTRIBUTE_UNUSED)
90a63880 9602{
d6b5193b 9603 switch_to_section (ctors_section);
90a63880 9604 assemble_align (POINTER_SIZE);
34208acf
AO
9605 if (TARGET_FDPIC)
9606 {
44e91694
NS
9607 int ok = frv_assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, 1);
9608
9609 gcc_assert (ok);
34208acf
AO
9610 return;
9611 }
90a63880
RH
9612 assemble_integer_with_op ("\t.picptr\t", symbol);
9613}
9614
9615static void
f2206911 9616frv_asm_out_destructor (rtx symbol, int priority ATTRIBUTE_UNUSED)
90a63880 9617{
d6b5193b 9618 switch_to_section (dtors_section);
90a63880 9619 assemble_align (POINTER_SIZE);
34208acf
AO
9620 if (TARGET_FDPIC)
9621 {
44e91694 9622 int ok = frv_assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, 1);
2396bce1 9623
44e91694 9624 gcc_assert (ok);
34208acf
AO
9625 return;
9626 }
90a63880
RH
9627 assemble_integer_with_op ("\t.picptr\t", symbol);
9628}
8ac411c7
KH
9629
9630/* Worker function for TARGET_STRUCT_VALUE_RTX. */
9631
9632static rtx
9633frv_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
9634 int incoming ATTRIBUTE_UNUSED)
9635{
9636 return gen_rtx_REG (Pmode, FRV_STRUCT_VALUE_REGNUM);
9637}
c557edf4 9638
bef8809e
AH
9639#define TLS_BIAS (2048 - 16)
9640
fdbe66f2 9641/* This is called from dwarf2out.c via TARGET_ASM_OUTPUT_DWARF_DTPREL.
bef8809e
AH
9642 We need to emit DTP-relative relocations. */
9643
fdbe66f2 9644static void
bef8809e
AH
9645frv_output_dwarf_dtprel (FILE *file, int size, rtx x)
9646{
44e91694 9647 gcc_assert (size == 4);
bef8809e
AH
9648 fputs ("\t.picptr\ttlsmoff(", file);
9649 /* We want the unbiased TLS offset, so add the bias to the
9650 expression, such that the implicit biasing cancels out. */
0a81f074 9651 output_addr_const (file, plus_constant (Pmode, x, TLS_BIAS));
bef8809e
AH
9652 fputs (")", file);
9653}
9654
c557edf4 9655#include "gt-frv.h"