]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/config/m68k/m68k.c
poly_int: IN_TARGET_CODE
[thirdparty/gcc.git] / gcc / config / m68k / m68k.c
1 /* Subroutines for insn-output.c for Motorola 68000 family.
2 Copyright (C) 1987-2017 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #define IN_TARGET_CODE 1
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "cfghooks.h"
27 #include "tree.h"
28 #include "stringpool.h"
29 #include "attribs.h"
30 #include "rtl.h"
31 #include "df.h"
32 #include "alias.h"
33 #include "fold-const.h"
34 #include "calls.h"
35 #include "stor-layout.h"
36 #include "varasm.h"
37 #include "regs.h"
38 #include "insn-config.h"
39 #include "conditions.h"
40 #include "output.h"
41 #include "insn-attr.h"
42 #include "recog.h"
43 #include "diagnostic-core.h"
44 #include "flags.h"
45 #include "expmed.h"
46 #include "dojump.h"
47 #include "explow.h"
48 #include "memmodel.h"
49 #include "emit-rtl.h"
50 #include "stmt.h"
51 #include "expr.h"
52 #include "reload.h"
53 #include "tm_p.h"
54 #include "target.h"
55 #include "debug.h"
56 #include "cfgrtl.h"
57 #include "cfganal.h"
58 #include "lcm.h"
59 #include "cfgbuild.h"
60 #include "cfgcleanup.h"
61 /* ??? Need to add a dependency between m68k.o and sched-int.h. */
62 #include "sched-int.h"
63 #include "insn-codes.h"
64 #include "opts.h"
65 #include "optabs.h"
66 #include "builtins.h"
67 #include "rtl-iter.h"
68
69 /* This file should be included last. */
70 #include "target-def.h"
71
72 enum reg_class regno_reg_class[] =
73 {
74 DATA_REGS, DATA_REGS, DATA_REGS, DATA_REGS,
75 DATA_REGS, DATA_REGS, DATA_REGS, DATA_REGS,
76 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
77 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
78 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
79 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
80 ADDR_REGS
81 };
82
83
84 /* The minimum number of integer registers that we want to save with the
85 movem instruction. Using two movel instructions instead of a single
86 moveml is about 15% faster for the 68020 and 68030 at no expense in
87 code size. */
88 #define MIN_MOVEM_REGS 3
89
90 /* The minimum number of floating point registers that we want to save
91 with the fmovem instruction. */
92 #define MIN_FMOVEM_REGS 1
93
94 /* Structure describing stack frame layout. */
95 struct m68k_frame
96 {
97 /* Stack pointer to frame pointer offset. */
98 HOST_WIDE_INT offset;
99
100 /* Offset of FPU registers. */
101 HOST_WIDE_INT foffset;
102
103 /* Frame size in bytes (rounded up). */
104 HOST_WIDE_INT size;
105
106 /* Data and address register. */
107 int reg_no;
108 unsigned int reg_mask;
109
110 /* FPU registers. */
111 int fpu_no;
112 unsigned int fpu_mask;
113
114 /* Offsets relative to ARG_POINTER. */
115 HOST_WIDE_INT frame_pointer_offset;
116 HOST_WIDE_INT stack_pointer_offset;
117
118 /* Function which the above information refers to. */
119 int funcdef_no;
120 };
121
122 /* Current frame information calculated by m68k_compute_frame_layout(). */
123 static struct m68k_frame current_frame;
124
125 /* Structure describing an m68k address.
126
127 If CODE is UNKNOWN, the address is BASE + INDEX * SCALE + OFFSET,
128 with null fields evaluating to 0. Here:
129
130 - BASE satisfies m68k_legitimate_base_reg_p
131 - INDEX satisfies m68k_legitimate_index_reg_p
132 - OFFSET satisfies m68k_legitimate_constant_address_p
133
134 INDEX is either HImode or SImode. The other fields are SImode.
135
136 If CODE is PRE_DEC, the address is -(BASE). If CODE is POST_INC,
137 the address is (BASE)+. */
138 struct m68k_address {
139 enum rtx_code code;
140 rtx base;
141 rtx index;
142 rtx offset;
143 int scale;
144 };
145
146 static int m68k_sched_adjust_cost (rtx_insn *, int, rtx_insn *, int,
147 unsigned int);
148 static int m68k_sched_issue_rate (void);
149 static int m68k_sched_variable_issue (FILE *, int, rtx_insn *, int);
150 static void m68k_sched_md_init_global (FILE *, int, int);
151 static void m68k_sched_md_finish_global (FILE *, int);
152 static void m68k_sched_md_init (FILE *, int, int);
153 static void m68k_sched_dfa_pre_advance_cycle (void);
154 static void m68k_sched_dfa_post_advance_cycle (void);
155 static int m68k_sched_first_cycle_multipass_dfa_lookahead (void);
156
157 static bool m68k_can_eliminate (const int, const int);
158 static void m68k_conditional_register_usage (void);
159 static bool m68k_legitimate_address_p (machine_mode, rtx, bool);
160 static void m68k_option_override (void);
161 static void m68k_override_options_after_change (void);
162 static rtx find_addr_reg (rtx);
163 static const char *singlemove_string (rtx *);
164 static void m68k_output_mi_thunk (FILE *, tree, HOST_WIDE_INT,
165 HOST_WIDE_INT, tree);
166 static rtx m68k_struct_value_rtx (tree, int);
167 static tree m68k_handle_fndecl_attribute (tree *node, tree name,
168 tree args, int flags,
169 bool *no_add_attrs);
170 static void m68k_compute_frame_layout (void);
171 static bool m68k_save_reg (unsigned int regno, bool interrupt_handler);
172 static bool m68k_ok_for_sibcall_p (tree, tree);
173 static bool m68k_tls_symbol_p (rtx);
174 static rtx m68k_legitimize_address (rtx, rtx, machine_mode);
175 static bool m68k_rtx_costs (rtx, machine_mode, int, int, int *, bool);
176 #if M68K_HONOR_TARGET_STRICT_ALIGNMENT
177 static bool m68k_return_in_memory (const_tree, const_tree);
178 #endif
179 static void m68k_output_dwarf_dtprel (FILE *, int, rtx) ATTRIBUTE_UNUSED;
180 static void m68k_trampoline_init (rtx, tree, rtx);
181 static int m68k_return_pops_args (tree, tree, int);
182 static rtx m68k_delegitimize_address (rtx);
183 static void m68k_function_arg_advance (cumulative_args_t, machine_mode,
184 const_tree, bool);
185 static rtx m68k_function_arg (cumulative_args_t, machine_mode,
186 const_tree, bool);
187 static bool m68k_cannot_force_const_mem (machine_mode mode, rtx x);
188 static bool m68k_output_addr_const_extra (FILE *, rtx);
189 static void m68k_init_sync_libfuncs (void) ATTRIBUTE_UNUSED;
190 static enum flt_eval_method
191 m68k_excess_precision (enum excess_precision_type);
192 static unsigned int m68k_hard_regno_nregs (unsigned int, machine_mode);
193 static bool m68k_hard_regno_mode_ok (unsigned int, machine_mode);
194 static bool m68k_modes_tieable_p (machine_mode, machine_mode);
195 \f
196 /* Initialize the GCC target structure. */
197
198 #if INT_OP_GROUP == INT_OP_DOT_WORD
199 #undef TARGET_ASM_ALIGNED_HI_OP
200 #define TARGET_ASM_ALIGNED_HI_OP "\t.word\t"
201 #endif
202
203 #if INT_OP_GROUP == INT_OP_NO_DOT
204 #undef TARGET_ASM_BYTE_OP
205 #define TARGET_ASM_BYTE_OP "\tbyte\t"
206 #undef TARGET_ASM_ALIGNED_HI_OP
207 #define TARGET_ASM_ALIGNED_HI_OP "\tshort\t"
208 #undef TARGET_ASM_ALIGNED_SI_OP
209 #define TARGET_ASM_ALIGNED_SI_OP "\tlong\t"
210 #endif
211
212 #if INT_OP_GROUP == INT_OP_DC
213 #undef TARGET_ASM_BYTE_OP
214 #define TARGET_ASM_BYTE_OP "\tdc.b\t"
215 #undef TARGET_ASM_ALIGNED_HI_OP
216 #define TARGET_ASM_ALIGNED_HI_OP "\tdc.w\t"
217 #undef TARGET_ASM_ALIGNED_SI_OP
218 #define TARGET_ASM_ALIGNED_SI_OP "\tdc.l\t"
219 #endif
220
221 #undef TARGET_ASM_UNALIGNED_HI_OP
222 #define TARGET_ASM_UNALIGNED_HI_OP TARGET_ASM_ALIGNED_HI_OP
223 #undef TARGET_ASM_UNALIGNED_SI_OP
224 #define TARGET_ASM_UNALIGNED_SI_OP TARGET_ASM_ALIGNED_SI_OP
225
226 #undef TARGET_ASM_OUTPUT_MI_THUNK
227 #define TARGET_ASM_OUTPUT_MI_THUNK m68k_output_mi_thunk
228 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
229 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK hook_bool_const_tree_hwi_hwi_const_tree_true
230
231 #undef TARGET_ASM_FILE_START_APP_OFF
232 #define TARGET_ASM_FILE_START_APP_OFF true
233
234 #undef TARGET_LEGITIMIZE_ADDRESS
235 #define TARGET_LEGITIMIZE_ADDRESS m68k_legitimize_address
236
237 #undef TARGET_SCHED_ADJUST_COST
238 #define TARGET_SCHED_ADJUST_COST m68k_sched_adjust_cost
239
240 #undef TARGET_SCHED_ISSUE_RATE
241 #define TARGET_SCHED_ISSUE_RATE m68k_sched_issue_rate
242
243 #undef TARGET_SCHED_VARIABLE_ISSUE
244 #define TARGET_SCHED_VARIABLE_ISSUE m68k_sched_variable_issue
245
246 #undef TARGET_SCHED_INIT_GLOBAL
247 #define TARGET_SCHED_INIT_GLOBAL m68k_sched_md_init_global
248
249 #undef TARGET_SCHED_FINISH_GLOBAL
250 #define TARGET_SCHED_FINISH_GLOBAL m68k_sched_md_finish_global
251
252 #undef TARGET_SCHED_INIT
253 #define TARGET_SCHED_INIT m68k_sched_md_init
254
255 #undef TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE
256 #define TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE m68k_sched_dfa_pre_advance_cycle
257
258 #undef TARGET_SCHED_DFA_POST_ADVANCE_CYCLE
259 #define TARGET_SCHED_DFA_POST_ADVANCE_CYCLE m68k_sched_dfa_post_advance_cycle
260
261 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD
262 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD \
263 m68k_sched_first_cycle_multipass_dfa_lookahead
264
265 #undef TARGET_OPTION_OVERRIDE
266 #define TARGET_OPTION_OVERRIDE m68k_option_override
267
268 #undef TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE
269 #define TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE m68k_override_options_after_change
270
271 #undef TARGET_RTX_COSTS
272 #define TARGET_RTX_COSTS m68k_rtx_costs
273
274 #undef TARGET_ATTRIBUTE_TABLE
275 #define TARGET_ATTRIBUTE_TABLE m68k_attribute_table
276
277 #undef TARGET_PROMOTE_PROTOTYPES
278 #define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
279
280 #undef TARGET_STRUCT_VALUE_RTX
281 #define TARGET_STRUCT_VALUE_RTX m68k_struct_value_rtx
282
283 #undef TARGET_CANNOT_FORCE_CONST_MEM
284 #define TARGET_CANNOT_FORCE_CONST_MEM m68k_cannot_force_const_mem
285
286 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
287 #define TARGET_FUNCTION_OK_FOR_SIBCALL m68k_ok_for_sibcall_p
288
289 #if M68K_HONOR_TARGET_STRICT_ALIGNMENT
290 #undef TARGET_RETURN_IN_MEMORY
291 #define TARGET_RETURN_IN_MEMORY m68k_return_in_memory
292 #endif
293
294 #ifdef HAVE_AS_TLS
295 #undef TARGET_HAVE_TLS
296 #define TARGET_HAVE_TLS (true)
297
298 #undef TARGET_ASM_OUTPUT_DWARF_DTPREL
299 #define TARGET_ASM_OUTPUT_DWARF_DTPREL m68k_output_dwarf_dtprel
300 #endif
301
302 #undef TARGET_LRA_P
303 #define TARGET_LRA_P hook_bool_void_false
304
305 #undef TARGET_LEGITIMATE_ADDRESS_P
306 #define TARGET_LEGITIMATE_ADDRESS_P m68k_legitimate_address_p
307
308 #undef TARGET_CAN_ELIMINATE
309 #define TARGET_CAN_ELIMINATE m68k_can_eliminate
310
311 #undef TARGET_CONDITIONAL_REGISTER_USAGE
312 #define TARGET_CONDITIONAL_REGISTER_USAGE m68k_conditional_register_usage
313
314 #undef TARGET_TRAMPOLINE_INIT
315 #define TARGET_TRAMPOLINE_INIT m68k_trampoline_init
316
317 #undef TARGET_RETURN_POPS_ARGS
318 #define TARGET_RETURN_POPS_ARGS m68k_return_pops_args
319
320 #undef TARGET_DELEGITIMIZE_ADDRESS
321 #define TARGET_DELEGITIMIZE_ADDRESS m68k_delegitimize_address
322
323 #undef TARGET_FUNCTION_ARG
324 #define TARGET_FUNCTION_ARG m68k_function_arg
325
326 #undef TARGET_FUNCTION_ARG_ADVANCE
327 #define TARGET_FUNCTION_ARG_ADVANCE m68k_function_arg_advance
328
329 #undef TARGET_LEGITIMATE_CONSTANT_P
330 #define TARGET_LEGITIMATE_CONSTANT_P m68k_legitimate_constant_p
331
332 #undef TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA
333 #define TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA m68k_output_addr_const_extra
334
335 #undef TARGET_C_EXCESS_PRECISION
336 #define TARGET_C_EXCESS_PRECISION m68k_excess_precision
337
338 /* The value stored by TAS. */
339 #undef TARGET_ATOMIC_TEST_AND_SET_TRUEVAL
340 #define TARGET_ATOMIC_TEST_AND_SET_TRUEVAL 128
341
342 #undef TARGET_HARD_REGNO_NREGS
343 #define TARGET_HARD_REGNO_NREGS m68k_hard_regno_nregs
344 #undef TARGET_HARD_REGNO_MODE_OK
345 #define TARGET_HARD_REGNO_MODE_OK m68k_hard_regno_mode_ok
346
347 #undef TARGET_MODES_TIEABLE_P
348 #define TARGET_MODES_TIEABLE_P m68k_modes_tieable_p
349
350 static const struct attribute_spec m68k_attribute_table[] =
351 {
352 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
353 affects_type_identity, handler, exclude } */
354 { "interrupt", 0, 0, true, false, false, false,
355 m68k_handle_fndecl_attribute, NULL },
356 { "interrupt_handler", 0, 0, true, false, false, false,
357 m68k_handle_fndecl_attribute, NULL },
358 { "interrupt_thread", 0, 0, true, false, false, false,
359 m68k_handle_fndecl_attribute, NULL },
360 { NULL, 0, 0, false, false, false, false, NULL, NULL }
361 };
362
363 struct gcc_target targetm = TARGET_INITIALIZER;
364 \f
365 /* Base flags for 68k ISAs. */
366 #define FL_FOR_isa_00 FL_ISA_68000
367 #define FL_FOR_isa_10 (FL_FOR_isa_00 | FL_ISA_68010)
368 /* FL_68881 controls the default setting of -m68881. gcc has traditionally
369 generated 68881 code for 68020 and 68030 targets unless explicitly told
370 not to. */
371 #define FL_FOR_isa_20 (FL_FOR_isa_10 | FL_ISA_68020 \
372 | FL_BITFIELD | FL_68881 | FL_CAS)
373 #define FL_FOR_isa_40 (FL_FOR_isa_20 | FL_ISA_68040)
374 #define FL_FOR_isa_cpu32 (FL_FOR_isa_10 | FL_ISA_68020)
375
376 /* Base flags for ColdFire ISAs. */
377 #define FL_FOR_isa_a (FL_COLDFIRE | FL_ISA_A)
378 #define FL_FOR_isa_aplus (FL_FOR_isa_a | FL_ISA_APLUS | FL_CF_USP)
379 /* Note ISA_B doesn't necessarily include USP (user stack pointer) support. */
380 #define FL_FOR_isa_b (FL_FOR_isa_a | FL_ISA_B | FL_CF_HWDIV)
381 /* ISA_C is not upwardly compatible with ISA_B. */
382 #define FL_FOR_isa_c (FL_FOR_isa_a | FL_ISA_C | FL_CF_USP)
383
384 enum m68k_isa
385 {
386 /* Traditional 68000 instruction sets. */
387 isa_00,
388 isa_10,
389 isa_20,
390 isa_40,
391 isa_cpu32,
392 /* ColdFire instruction set variants. */
393 isa_a,
394 isa_aplus,
395 isa_b,
396 isa_c,
397 isa_max
398 };
399
400 /* Information about one of the -march, -mcpu or -mtune arguments. */
401 struct m68k_target_selection
402 {
403 /* The argument being described. */
404 const char *name;
405
406 /* For -mcpu, this is the device selected by the option.
407 For -mtune and -march, it is a representative device
408 for the microarchitecture or ISA respectively. */
409 enum target_device device;
410
411 /* The M68K_DEVICE fields associated with DEVICE. See the comment
412 in m68k-devices.def for details. FAMILY is only valid for -mcpu. */
413 const char *family;
414 enum uarch_type microarch;
415 enum m68k_isa isa;
416 unsigned long flags;
417 };
418
419 /* A list of all devices in m68k-devices.def. Used for -mcpu selection. */
420 static const struct m68k_target_selection all_devices[] =
421 {
422 #define M68K_DEVICE(NAME,ENUM_VALUE,FAMILY,MULTILIB,MICROARCH,ISA,FLAGS) \
423 { NAME, ENUM_VALUE, FAMILY, u##MICROARCH, ISA, FLAGS | FL_FOR_##ISA },
424 #include "m68k-devices.def"
425 #undef M68K_DEVICE
426 { NULL, unk_device, NULL, unk_arch, isa_max, 0 }
427 };
428
429 /* A list of all ISAs, mapping each one to a representative device.
430 Used for -march selection. */
431 static const struct m68k_target_selection all_isas[] =
432 {
433 #define M68K_ISA(NAME,DEVICE,MICROARCH,ISA,FLAGS) \
434 { NAME, DEVICE, NULL, u##MICROARCH, ISA, FLAGS },
435 #include "m68k-isas.def"
436 #undef M68K_ISA
437 { NULL, unk_device, NULL, unk_arch, isa_max, 0 }
438 };
439
440 /* A list of all microarchitectures, mapping each one to a representative
441 device. Used for -mtune selection. */
442 static const struct m68k_target_selection all_microarchs[] =
443 {
444 #define M68K_MICROARCH(NAME,DEVICE,MICROARCH,ISA,FLAGS) \
445 { NAME, DEVICE, NULL, u##MICROARCH, ISA, FLAGS },
446 #include "m68k-microarchs.def"
447 #undef M68K_MICROARCH
448 { NULL, unk_device, NULL, unk_arch, isa_max, 0 }
449 };
450 \f
451 /* The entries associated with the -mcpu, -march and -mtune settings,
452 or null for options that have not been used. */
453 const struct m68k_target_selection *m68k_cpu_entry;
454 const struct m68k_target_selection *m68k_arch_entry;
455 const struct m68k_target_selection *m68k_tune_entry;
456
457 /* Which CPU we are generating code for. */
458 enum target_device m68k_cpu;
459
460 /* Which microarchitecture to tune for. */
461 enum uarch_type m68k_tune;
462
463 /* Which FPU to use. */
464 enum fpu_type m68k_fpu;
465
466 /* The set of FL_* flags that apply to the target processor. */
467 unsigned int m68k_cpu_flags;
468
469 /* The set of FL_* flags that apply to the processor to be tuned for. */
470 unsigned int m68k_tune_flags;
471
472 /* Asm templates for calling or jumping to an arbitrary symbolic address,
473 or NULL if such calls or jumps are not supported. The address is held
474 in operand 0. */
475 const char *m68k_symbolic_call;
476 const char *m68k_symbolic_jump;
477
478 /* Enum variable that corresponds to m68k_symbolic_call values. */
479 enum M68K_SYMBOLIC_CALL m68k_symbolic_call_var;
480
481 \f
482 /* Implement TARGET_OPTION_OVERRIDE. */
483
484 static void
485 m68k_option_override (void)
486 {
487 const struct m68k_target_selection *entry;
488 unsigned long target_mask;
489
490 if (global_options_set.x_m68k_arch_option)
491 m68k_arch_entry = &all_isas[m68k_arch_option];
492
493 if (global_options_set.x_m68k_cpu_option)
494 m68k_cpu_entry = &all_devices[(int) m68k_cpu_option];
495
496 if (global_options_set.x_m68k_tune_option)
497 m68k_tune_entry = &all_microarchs[(int) m68k_tune_option];
498
499 /* User can choose:
500
501 -mcpu=
502 -march=
503 -mtune=
504
505 -march=ARCH should generate code that runs any processor
506 implementing architecture ARCH. -mcpu=CPU should override -march
507 and should generate code that runs on processor CPU, making free
508 use of any instructions that CPU understands. -mtune=UARCH applies
509 on top of -mcpu or -march and optimizes the code for UARCH. It does
510 not change the target architecture. */
511 if (m68k_cpu_entry)
512 {
513 /* Complain if the -march setting is for a different microarchitecture,
514 or includes flags that the -mcpu setting doesn't. */
515 if (m68k_arch_entry
516 && (m68k_arch_entry->microarch != m68k_cpu_entry->microarch
517 || (m68k_arch_entry->flags & ~m68k_cpu_entry->flags) != 0))
518 warning (0, "-mcpu=%s conflicts with -march=%s",
519 m68k_cpu_entry->name, m68k_arch_entry->name);
520
521 entry = m68k_cpu_entry;
522 }
523 else
524 entry = m68k_arch_entry;
525
526 if (!entry)
527 entry = all_devices + TARGET_CPU_DEFAULT;
528
529 m68k_cpu_flags = entry->flags;
530
531 /* Use the architecture setting to derive default values for
532 certain flags. */
533 target_mask = 0;
534
535 /* ColdFire is lenient about alignment. */
536 if (!TARGET_COLDFIRE)
537 target_mask |= MASK_STRICT_ALIGNMENT;
538
539 if ((m68k_cpu_flags & FL_BITFIELD) != 0)
540 target_mask |= MASK_BITFIELD;
541 if ((m68k_cpu_flags & FL_CF_HWDIV) != 0)
542 target_mask |= MASK_CF_HWDIV;
543 if ((m68k_cpu_flags & (FL_68881 | FL_CF_FPU)) != 0)
544 target_mask |= MASK_HARD_FLOAT;
545 target_flags |= target_mask & ~target_flags_explicit;
546
547 /* Set the directly-usable versions of the -mcpu and -mtune settings. */
548 m68k_cpu = entry->device;
549 if (m68k_tune_entry)
550 {
551 m68k_tune = m68k_tune_entry->microarch;
552 m68k_tune_flags = m68k_tune_entry->flags;
553 }
554 #ifdef M68K_DEFAULT_TUNE
555 else if (!m68k_cpu_entry && !m68k_arch_entry)
556 {
557 enum target_device dev;
558 dev = all_microarchs[M68K_DEFAULT_TUNE].device;
559 m68k_tune_flags = all_devices[dev].flags;
560 }
561 #endif
562 else
563 {
564 m68k_tune = entry->microarch;
565 m68k_tune_flags = entry->flags;
566 }
567
568 /* Set the type of FPU. */
569 m68k_fpu = (!TARGET_HARD_FLOAT ? FPUTYPE_NONE
570 : (m68k_cpu_flags & FL_COLDFIRE) != 0 ? FPUTYPE_COLDFIRE
571 : FPUTYPE_68881);
572
573 /* Sanity check to ensure that msep-data and mid-sahred-library are not
574 * both specified together. Doing so simply doesn't make sense.
575 */
576 if (TARGET_SEP_DATA && TARGET_ID_SHARED_LIBRARY)
577 error ("cannot specify both -msep-data and -mid-shared-library");
578
579 /* If we're generating code for a separate A5 relative data segment,
580 * we've got to enable -fPIC as well. This might be relaxable to
581 * -fpic but it hasn't been tested properly.
582 */
583 if (TARGET_SEP_DATA || TARGET_ID_SHARED_LIBRARY)
584 flag_pic = 2;
585
586 /* -mpcrel -fPIC uses 32-bit pc-relative displacements. Raise an
587 error if the target does not support them. */
588 if (TARGET_PCREL && !TARGET_68020 && flag_pic == 2)
589 error ("-mpcrel -fPIC is not currently supported on selected cpu");
590
591 /* ??? A historic way of turning on pic, or is this intended to
592 be an embedded thing that doesn't have the same name binding
593 significance that it does on hosted ELF systems? */
594 if (TARGET_PCREL && flag_pic == 0)
595 flag_pic = 1;
596
597 if (!flag_pic)
598 {
599 m68k_symbolic_call_var = M68K_SYMBOLIC_CALL_JSR;
600
601 m68k_symbolic_jump = "jra %a0";
602 }
603 else if (TARGET_ID_SHARED_LIBRARY)
604 /* All addresses must be loaded from the GOT. */
605 ;
606 else if (TARGET_68020 || TARGET_ISAB || TARGET_ISAC)
607 {
608 if (TARGET_PCREL)
609 m68k_symbolic_call_var = M68K_SYMBOLIC_CALL_BSR_C;
610 else
611 m68k_symbolic_call_var = M68K_SYMBOLIC_CALL_BSR_P;
612
613 if (TARGET_ISAC)
614 /* No unconditional long branch */;
615 else if (TARGET_PCREL)
616 m68k_symbolic_jump = "bra%.l %c0";
617 else
618 m68k_symbolic_jump = "bra%.l %p0";
619 /* Turn off function cse if we are doing PIC. We always want
620 function call to be done as `bsr foo@PLTPC'. */
621 /* ??? It's traditional to do this for -mpcrel too, but it isn't
622 clear how intentional that is. */
623 flag_no_function_cse = 1;
624 }
625
626 switch (m68k_symbolic_call_var)
627 {
628 case M68K_SYMBOLIC_CALL_JSR:
629 m68k_symbolic_call = "jsr %a0";
630 break;
631
632 case M68K_SYMBOLIC_CALL_BSR_C:
633 m68k_symbolic_call = "bsr%.l %c0";
634 break;
635
636 case M68K_SYMBOLIC_CALL_BSR_P:
637 m68k_symbolic_call = "bsr%.l %p0";
638 break;
639
640 case M68K_SYMBOLIC_CALL_NONE:
641 gcc_assert (m68k_symbolic_call == NULL);
642 break;
643
644 default:
645 gcc_unreachable ();
646 }
647
648 #ifndef ASM_OUTPUT_ALIGN_WITH_NOP
649 if (align_labels > 2)
650 {
651 warning (0, "-falign-labels=%d is not supported", align_labels);
652 align_labels = 0;
653 }
654 if (align_loops > 2)
655 {
656 warning (0, "-falign-loops=%d is not supported", align_loops);
657 align_loops = 0;
658 }
659 #endif
660
661 if ((opt_fstack_limit_symbol_arg != NULL || opt_fstack_limit_register_no >= 0)
662 && !TARGET_68020)
663 {
664 warning (0, "-fstack-limit- options are not supported on this cpu");
665 opt_fstack_limit_symbol_arg = NULL;
666 opt_fstack_limit_register_no = -1;
667 }
668
669 SUBTARGET_OVERRIDE_OPTIONS;
670
671 /* Setup scheduling options. */
672 if (TUNE_CFV1)
673 m68k_sched_cpu = CPU_CFV1;
674 else if (TUNE_CFV2)
675 m68k_sched_cpu = CPU_CFV2;
676 else if (TUNE_CFV3)
677 m68k_sched_cpu = CPU_CFV3;
678 else if (TUNE_CFV4)
679 m68k_sched_cpu = CPU_CFV4;
680 else
681 {
682 m68k_sched_cpu = CPU_UNKNOWN;
683 flag_schedule_insns = 0;
684 flag_schedule_insns_after_reload = 0;
685 flag_modulo_sched = 0;
686 flag_live_range_shrinkage = 0;
687 }
688
689 if (m68k_sched_cpu != CPU_UNKNOWN)
690 {
691 if ((m68k_cpu_flags & (FL_CF_EMAC | FL_CF_EMAC_B)) != 0)
692 m68k_sched_mac = MAC_CF_EMAC;
693 else if ((m68k_cpu_flags & FL_CF_MAC) != 0)
694 m68k_sched_mac = MAC_CF_MAC;
695 else
696 m68k_sched_mac = MAC_NO;
697 }
698 }
699
700 /* Implement TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE. */
701
702 static void
703 m68k_override_options_after_change (void)
704 {
705 if (m68k_sched_cpu == CPU_UNKNOWN)
706 {
707 flag_schedule_insns = 0;
708 flag_schedule_insns_after_reload = 0;
709 flag_modulo_sched = 0;
710 flag_live_range_shrinkage = 0;
711 }
712 }
713
714 /* Generate a macro of the form __mPREFIX_cpu_NAME, where PREFIX is the
715 given argument and NAME is the argument passed to -mcpu. Return NULL
716 if -mcpu was not passed. */
717
718 const char *
719 m68k_cpp_cpu_ident (const char *prefix)
720 {
721 if (!m68k_cpu_entry)
722 return NULL;
723 return concat ("__m", prefix, "_cpu_", m68k_cpu_entry->name, NULL);
724 }
725
726 /* Generate a macro of the form __mPREFIX_family_NAME, where PREFIX is the
727 given argument and NAME is the name of the representative device for
728 the -mcpu argument's family. Return NULL if -mcpu was not passed. */
729
730 const char *
731 m68k_cpp_cpu_family (const char *prefix)
732 {
733 if (!m68k_cpu_entry)
734 return NULL;
735 return concat ("__m", prefix, "_family_", m68k_cpu_entry->family, NULL);
736 }
737 \f
738 /* Return m68k_fk_interrupt_handler if FUNC has an "interrupt" or
739 "interrupt_handler" attribute and interrupt_thread if FUNC has an
740 "interrupt_thread" attribute. Otherwise, return
741 m68k_fk_normal_function. */
742
743 enum m68k_function_kind
744 m68k_get_function_kind (tree func)
745 {
746 tree a;
747
748 gcc_assert (TREE_CODE (func) == FUNCTION_DECL);
749
750 a = lookup_attribute ("interrupt", DECL_ATTRIBUTES (func));
751 if (a != NULL_TREE)
752 return m68k_fk_interrupt_handler;
753
754 a = lookup_attribute ("interrupt_handler", DECL_ATTRIBUTES (func));
755 if (a != NULL_TREE)
756 return m68k_fk_interrupt_handler;
757
758 a = lookup_attribute ("interrupt_thread", DECL_ATTRIBUTES (func));
759 if (a != NULL_TREE)
760 return m68k_fk_interrupt_thread;
761
762 return m68k_fk_normal_function;
763 }
764
765 /* Handle an attribute requiring a FUNCTION_DECL; arguments as in
766 struct attribute_spec.handler. */
767 static tree
768 m68k_handle_fndecl_attribute (tree *node, tree name,
769 tree args ATTRIBUTE_UNUSED,
770 int flags ATTRIBUTE_UNUSED,
771 bool *no_add_attrs)
772 {
773 if (TREE_CODE (*node) != FUNCTION_DECL)
774 {
775 warning (OPT_Wattributes, "%qE attribute only applies to functions",
776 name);
777 *no_add_attrs = true;
778 }
779
780 if (m68k_get_function_kind (*node) != m68k_fk_normal_function)
781 {
782 error ("multiple interrupt attributes not allowed");
783 *no_add_attrs = true;
784 }
785
786 if (!TARGET_FIDOA
787 && !strcmp (IDENTIFIER_POINTER (name), "interrupt_thread"))
788 {
789 error ("interrupt_thread is available only on fido");
790 *no_add_attrs = true;
791 }
792
793 return NULL_TREE;
794 }
795
796 static void
797 m68k_compute_frame_layout (void)
798 {
799 int regno, saved;
800 unsigned int mask;
801 enum m68k_function_kind func_kind =
802 m68k_get_function_kind (current_function_decl);
803 bool interrupt_handler = func_kind == m68k_fk_interrupt_handler;
804 bool interrupt_thread = func_kind == m68k_fk_interrupt_thread;
805
806 /* Only compute the frame once per function.
807 Don't cache information until reload has been completed. */
808 if (current_frame.funcdef_no == current_function_funcdef_no
809 && reload_completed)
810 return;
811
812 current_frame.size = (get_frame_size () + 3) & -4;
813
814 mask = saved = 0;
815
816 /* Interrupt thread does not need to save any register. */
817 if (!interrupt_thread)
818 for (regno = 0; regno < 16; regno++)
819 if (m68k_save_reg (regno, interrupt_handler))
820 {
821 mask |= 1 << (regno - D0_REG);
822 saved++;
823 }
824 current_frame.offset = saved * 4;
825 current_frame.reg_no = saved;
826 current_frame.reg_mask = mask;
827
828 current_frame.foffset = 0;
829 mask = saved = 0;
830 if (TARGET_HARD_FLOAT)
831 {
832 /* Interrupt thread does not need to save any register. */
833 if (!interrupt_thread)
834 for (regno = 16; regno < 24; regno++)
835 if (m68k_save_reg (regno, interrupt_handler))
836 {
837 mask |= 1 << (regno - FP0_REG);
838 saved++;
839 }
840 current_frame.foffset = saved * TARGET_FP_REG_SIZE;
841 current_frame.offset += current_frame.foffset;
842 }
843 current_frame.fpu_no = saved;
844 current_frame.fpu_mask = mask;
845
846 /* Remember what function this frame refers to. */
847 current_frame.funcdef_no = current_function_funcdef_no;
848 }
849
850 /* Worker function for TARGET_CAN_ELIMINATE. */
851
852 bool
853 m68k_can_eliminate (const int from ATTRIBUTE_UNUSED, const int to)
854 {
855 return (to == STACK_POINTER_REGNUM ? ! frame_pointer_needed : true);
856 }
857
858 HOST_WIDE_INT
859 m68k_initial_elimination_offset (int from, int to)
860 {
861 int argptr_offset;
862 /* The arg pointer points 8 bytes before the start of the arguments,
863 as defined by FIRST_PARM_OFFSET. This makes it coincident with the
864 frame pointer in most frames. */
865 argptr_offset = frame_pointer_needed ? 0 : UNITS_PER_WORD;
866 if (from == ARG_POINTER_REGNUM && to == FRAME_POINTER_REGNUM)
867 return argptr_offset;
868
869 m68k_compute_frame_layout ();
870
871 gcc_assert (to == STACK_POINTER_REGNUM);
872 switch (from)
873 {
874 case ARG_POINTER_REGNUM:
875 return current_frame.offset + current_frame.size - argptr_offset;
876 case FRAME_POINTER_REGNUM:
877 return current_frame.offset + current_frame.size;
878 default:
879 gcc_unreachable ();
880 }
881 }
882
883 /* Refer to the array `regs_ever_live' to determine which registers
884 to save; `regs_ever_live[I]' is nonzero if register number I
885 is ever used in the function. This function is responsible for
886 knowing which registers should not be saved even if used.
887 Return true if we need to save REGNO. */
888
889 static bool
890 m68k_save_reg (unsigned int regno, bool interrupt_handler)
891 {
892 if (flag_pic && regno == PIC_REG)
893 {
894 if (crtl->saves_all_registers)
895 return true;
896 if (crtl->uses_pic_offset_table)
897 return true;
898 /* Reload may introduce constant pool references into a function
899 that thitherto didn't need a PIC register. Note that the test
900 above will not catch that case because we will only set
901 crtl->uses_pic_offset_table when emitting
902 the address reloads. */
903 if (crtl->uses_const_pool)
904 return true;
905 }
906
907 if (crtl->calls_eh_return)
908 {
909 unsigned int i;
910 for (i = 0; ; i++)
911 {
912 unsigned int test = EH_RETURN_DATA_REGNO (i);
913 if (test == INVALID_REGNUM)
914 break;
915 if (test == regno)
916 return true;
917 }
918 }
919
920 /* Fixed regs we never touch. */
921 if (fixed_regs[regno])
922 return false;
923
924 /* The frame pointer (if it is such) is handled specially. */
925 if (regno == FRAME_POINTER_REGNUM && frame_pointer_needed)
926 return false;
927
928 /* Interrupt handlers must also save call_used_regs
929 if they are live or when calling nested functions. */
930 if (interrupt_handler)
931 {
932 if (df_regs_ever_live_p (regno))
933 return true;
934
935 if (!crtl->is_leaf && call_used_regs[regno])
936 return true;
937 }
938
939 /* Never need to save registers that aren't touched. */
940 if (!df_regs_ever_live_p (regno))
941 return false;
942
943 /* Otherwise save everything that isn't call-clobbered. */
944 return !call_used_regs[regno];
945 }
946
947 /* Emit RTL for a MOVEM or FMOVEM instruction. BASE + OFFSET represents
948 the lowest memory address. COUNT is the number of registers to be
949 moved, with register REGNO + I being moved if bit I of MASK is set.
950 STORE_P specifies the direction of the move and ADJUST_STACK_P says
951 whether or not this is pre-decrement (if STORE_P) or post-increment
952 (if !STORE_P) operation. */
953
954 static rtx_insn *
955 m68k_emit_movem (rtx base, HOST_WIDE_INT offset,
956 unsigned int count, unsigned int regno,
957 unsigned int mask, bool store_p, bool adjust_stack_p)
958 {
959 int i;
960 rtx body, addr, src, operands[2];
961 machine_mode mode;
962
963 body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (adjust_stack_p + count));
964 mode = reg_raw_mode[regno];
965 i = 0;
966
967 if (adjust_stack_p)
968 {
969 src = plus_constant (Pmode, base,
970 (count
971 * GET_MODE_SIZE (mode)
972 * (HOST_WIDE_INT) (store_p ? -1 : 1)));
973 XVECEXP (body, 0, i++) = gen_rtx_SET (base, src);
974 }
975
976 for (; mask != 0; mask >>= 1, regno++)
977 if (mask & 1)
978 {
979 addr = plus_constant (Pmode, base, offset);
980 operands[!store_p] = gen_frame_mem (mode, addr);
981 operands[store_p] = gen_rtx_REG (mode, regno);
982 XVECEXP (body, 0, i++)
983 = gen_rtx_SET (operands[0], operands[1]);
984 offset += GET_MODE_SIZE (mode);
985 }
986 gcc_assert (i == XVECLEN (body, 0));
987
988 return emit_insn (body);
989 }
990
991 /* Make INSN a frame-related instruction. */
992
993 static void
994 m68k_set_frame_related (rtx_insn *insn)
995 {
996 rtx body;
997 int i;
998
999 RTX_FRAME_RELATED_P (insn) = 1;
1000 body = PATTERN (insn);
1001 if (GET_CODE (body) == PARALLEL)
1002 for (i = 0; i < XVECLEN (body, 0); i++)
1003 RTX_FRAME_RELATED_P (XVECEXP (body, 0, i)) = 1;
1004 }
1005
1006 /* Emit RTL for the "prologue" define_expand. */
1007
1008 void
1009 m68k_expand_prologue (void)
1010 {
1011 HOST_WIDE_INT fsize_with_regs;
1012 rtx limit, src, dest;
1013
1014 m68k_compute_frame_layout ();
1015
1016 if (flag_stack_usage_info)
1017 current_function_static_stack_size
1018 = current_frame.size + current_frame.offset;
1019
1020 /* If the stack limit is a symbol, we can check it here,
1021 before actually allocating the space. */
1022 if (crtl->limit_stack
1023 && GET_CODE (stack_limit_rtx) == SYMBOL_REF)
1024 {
1025 limit = plus_constant (Pmode, stack_limit_rtx, current_frame.size + 4);
1026 if (!m68k_legitimate_constant_p (Pmode, limit))
1027 {
1028 emit_move_insn (gen_rtx_REG (Pmode, D0_REG), limit);
1029 limit = gen_rtx_REG (Pmode, D0_REG);
1030 }
1031 emit_insn (gen_ctrapsi4 (gen_rtx_LTU (VOIDmode,
1032 stack_pointer_rtx, limit),
1033 stack_pointer_rtx, limit,
1034 const1_rtx));
1035 }
1036
1037 fsize_with_regs = current_frame.size;
1038 if (TARGET_COLDFIRE)
1039 {
1040 /* ColdFire's move multiple instructions do not allow pre-decrement
1041 addressing. Add the size of movem saves to the initial stack
1042 allocation instead. */
1043 if (current_frame.reg_no >= MIN_MOVEM_REGS)
1044 fsize_with_regs += current_frame.reg_no * GET_MODE_SIZE (SImode);
1045 if (current_frame.fpu_no >= MIN_FMOVEM_REGS)
1046 fsize_with_regs += current_frame.fpu_no * GET_MODE_SIZE (DFmode);
1047 }
1048
1049 if (frame_pointer_needed)
1050 {
1051 if (fsize_with_regs == 0 && TUNE_68040)
1052 {
1053 /* On the 68040, two separate moves are faster than link.w 0. */
1054 dest = gen_frame_mem (Pmode,
1055 gen_rtx_PRE_DEC (Pmode, stack_pointer_rtx));
1056 m68k_set_frame_related (emit_move_insn (dest, frame_pointer_rtx));
1057 m68k_set_frame_related (emit_move_insn (frame_pointer_rtx,
1058 stack_pointer_rtx));
1059 }
1060 else if (fsize_with_regs < 0x8000 || TARGET_68020)
1061 m68k_set_frame_related
1062 (emit_insn (gen_link (frame_pointer_rtx,
1063 GEN_INT (-4 - fsize_with_regs))));
1064 else
1065 {
1066 m68k_set_frame_related
1067 (emit_insn (gen_link (frame_pointer_rtx, GEN_INT (-4))));
1068 m68k_set_frame_related
1069 (emit_insn (gen_addsi3 (stack_pointer_rtx,
1070 stack_pointer_rtx,
1071 GEN_INT (-fsize_with_regs))));
1072 }
1073
1074 /* If the frame pointer is needed, emit a special barrier that
1075 will prevent the scheduler from moving stores to the frame
1076 before the stack adjustment. */
1077 emit_insn (gen_stack_tie (stack_pointer_rtx, frame_pointer_rtx));
1078 }
1079 else if (fsize_with_regs != 0)
1080 m68k_set_frame_related
1081 (emit_insn (gen_addsi3 (stack_pointer_rtx,
1082 stack_pointer_rtx,
1083 GEN_INT (-fsize_with_regs))));
1084
1085 if (current_frame.fpu_mask)
1086 {
1087 gcc_assert (current_frame.fpu_no >= MIN_FMOVEM_REGS);
1088 if (TARGET_68881)
1089 m68k_set_frame_related
1090 (m68k_emit_movem (stack_pointer_rtx,
1091 current_frame.fpu_no * -GET_MODE_SIZE (XFmode),
1092 current_frame.fpu_no, FP0_REG,
1093 current_frame.fpu_mask, true, true));
1094 else
1095 {
1096 int offset;
1097
1098 /* If we're using moveml to save the integer registers,
1099 the stack pointer will point to the bottom of the moveml
1100 save area. Find the stack offset of the first FP register. */
1101 if (current_frame.reg_no < MIN_MOVEM_REGS)
1102 offset = 0;
1103 else
1104 offset = current_frame.reg_no * GET_MODE_SIZE (SImode);
1105 m68k_set_frame_related
1106 (m68k_emit_movem (stack_pointer_rtx, offset,
1107 current_frame.fpu_no, FP0_REG,
1108 current_frame.fpu_mask, true, false));
1109 }
1110 }
1111
1112 /* If the stack limit is not a symbol, check it here.
1113 This has the disadvantage that it may be too late... */
1114 if (crtl->limit_stack)
1115 {
1116 if (REG_P (stack_limit_rtx))
1117 emit_insn (gen_ctrapsi4 (gen_rtx_LTU (VOIDmode, stack_pointer_rtx,
1118 stack_limit_rtx),
1119 stack_pointer_rtx, stack_limit_rtx,
1120 const1_rtx));
1121
1122 else if (GET_CODE (stack_limit_rtx) != SYMBOL_REF)
1123 warning (0, "stack limit expression is not supported");
1124 }
1125
1126 if (current_frame.reg_no < MIN_MOVEM_REGS)
1127 {
1128 /* Store each register separately in the same order moveml does. */
1129 int i;
1130
1131 for (i = 16; i-- > 0; )
1132 if (current_frame.reg_mask & (1 << i))
1133 {
1134 src = gen_rtx_REG (SImode, D0_REG + i);
1135 dest = gen_frame_mem (SImode,
1136 gen_rtx_PRE_DEC (Pmode, stack_pointer_rtx));
1137 m68k_set_frame_related (emit_insn (gen_movsi (dest, src)));
1138 }
1139 }
1140 else
1141 {
1142 if (TARGET_COLDFIRE)
1143 /* The required register save space has already been allocated.
1144 The first register should be stored at (%sp). */
1145 m68k_set_frame_related
1146 (m68k_emit_movem (stack_pointer_rtx, 0,
1147 current_frame.reg_no, D0_REG,
1148 current_frame.reg_mask, true, false));
1149 else
1150 m68k_set_frame_related
1151 (m68k_emit_movem (stack_pointer_rtx,
1152 current_frame.reg_no * -GET_MODE_SIZE (SImode),
1153 current_frame.reg_no, D0_REG,
1154 current_frame.reg_mask, true, true));
1155 }
1156
1157 if (!TARGET_SEP_DATA
1158 && crtl->uses_pic_offset_table)
1159 emit_insn (gen_load_got (pic_offset_table_rtx));
1160 }
1161 \f
1162 /* Return true if a simple (return) instruction is sufficient for this
1163 instruction (i.e. if no epilogue is needed). */
1164
1165 bool
1166 m68k_use_return_insn (void)
1167 {
1168 if (!reload_completed || frame_pointer_needed || get_frame_size () != 0)
1169 return false;
1170
1171 m68k_compute_frame_layout ();
1172 return current_frame.offset == 0;
1173 }
1174
1175 /* Emit RTL for the "epilogue" or "sibcall_epilogue" define_expand;
1176 SIBCALL_P says which.
1177
1178 The function epilogue should not depend on the current stack pointer!
1179 It should use the frame pointer only, if there is a frame pointer.
1180 This is mandatory because of alloca; we also take advantage of it to
1181 omit stack adjustments before returning. */
1182
1183 void
1184 m68k_expand_epilogue (bool sibcall_p)
1185 {
1186 HOST_WIDE_INT fsize, fsize_with_regs;
1187 bool big, restore_from_sp;
1188
1189 m68k_compute_frame_layout ();
1190
1191 fsize = current_frame.size;
1192 big = false;
1193 restore_from_sp = false;
1194
1195 /* FIXME : crtl->is_leaf below is too strong.
1196 What we really need to know there is if there could be pending
1197 stack adjustment needed at that point. */
1198 restore_from_sp = (!frame_pointer_needed
1199 || (!cfun->calls_alloca && crtl->is_leaf));
1200
1201 /* fsize_with_regs is the size we need to adjust the sp when
1202 popping the frame. */
1203 fsize_with_regs = fsize;
1204 if (TARGET_COLDFIRE && restore_from_sp)
1205 {
1206 /* ColdFire's move multiple instructions do not allow post-increment
1207 addressing. Add the size of movem loads to the final deallocation
1208 instead. */
1209 if (current_frame.reg_no >= MIN_MOVEM_REGS)
1210 fsize_with_regs += current_frame.reg_no * GET_MODE_SIZE (SImode);
1211 if (current_frame.fpu_no >= MIN_FMOVEM_REGS)
1212 fsize_with_regs += current_frame.fpu_no * GET_MODE_SIZE (DFmode);
1213 }
1214
1215 if (current_frame.offset + fsize >= 0x8000
1216 && !restore_from_sp
1217 && (current_frame.reg_mask || current_frame.fpu_mask))
1218 {
1219 if (TARGET_COLDFIRE
1220 && (current_frame.reg_no >= MIN_MOVEM_REGS
1221 || current_frame.fpu_no >= MIN_FMOVEM_REGS))
1222 {
1223 /* ColdFire's move multiple instructions do not support the
1224 (d8,Ax,Xi) addressing mode, so we're as well using a normal
1225 stack-based restore. */
1226 emit_move_insn (gen_rtx_REG (Pmode, A1_REG),
1227 GEN_INT (-(current_frame.offset + fsize)));
1228 emit_insn (gen_blockage ());
1229 emit_insn (gen_addsi3 (stack_pointer_rtx,
1230 gen_rtx_REG (Pmode, A1_REG),
1231 frame_pointer_rtx));
1232 restore_from_sp = true;
1233 }
1234 else
1235 {
1236 emit_move_insn (gen_rtx_REG (Pmode, A1_REG), GEN_INT (-fsize));
1237 fsize = 0;
1238 big = true;
1239 }
1240 }
1241
1242 if (current_frame.reg_no < MIN_MOVEM_REGS)
1243 {
1244 /* Restore each register separately in the same order moveml does. */
1245 int i;
1246 HOST_WIDE_INT offset;
1247
1248 offset = current_frame.offset + fsize;
1249 for (i = 0; i < 16; i++)
1250 if (current_frame.reg_mask & (1 << i))
1251 {
1252 rtx addr;
1253
1254 if (big)
1255 {
1256 /* Generate the address -OFFSET(%fp,%a1.l). */
1257 addr = gen_rtx_REG (Pmode, A1_REG);
1258 addr = gen_rtx_PLUS (Pmode, addr, frame_pointer_rtx);
1259 addr = plus_constant (Pmode, addr, -offset);
1260 }
1261 else if (restore_from_sp)
1262 addr = gen_rtx_POST_INC (Pmode, stack_pointer_rtx);
1263 else
1264 addr = plus_constant (Pmode, frame_pointer_rtx, -offset);
1265 emit_move_insn (gen_rtx_REG (SImode, D0_REG + i),
1266 gen_frame_mem (SImode, addr));
1267 offset -= GET_MODE_SIZE (SImode);
1268 }
1269 }
1270 else if (current_frame.reg_mask)
1271 {
1272 if (big)
1273 m68k_emit_movem (gen_rtx_PLUS (Pmode,
1274 gen_rtx_REG (Pmode, A1_REG),
1275 frame_pointer_rtx),
1276 -(current_frame.offset + fsize),
1277 current_frame.reg_no, D0_REG,
1278 current_frame.reg_mask, false, false);
1279 else if (restore_from_sp)
1280 m68k_emit_movem (stack_pointer_rtx, 0,
1281 current_frame.reg_no, D0_REG,
1282 current_frame.reg_mask, false,
1283 !TARGET_COLDFIRE);
1284 else
1285 m68k_emit_movem (frame_pointer_rtx,
1286 -(current_frame.offset + fsize),
1287 current_frame.reg_no, D0_REG,
1288 current_frame.reg_mask, false, false);
1289 }
1290
1291 if (current_frame.fpu_no > 0)
1292 {
1293 if (big)
1294 m68k_emit_movem (gen_rtx_PLUS (Pmode,
1295 gen_rtx_REG (Pmode, A1_REG),
1296 frame_pointer_rtx),
1297 -(current_frame.foffset + fsize),
1298 current_frame.fpu_no, FP0_REG,
1299 current_frame.fpu_mask, false, false);
1300 else if (restore_from_sp)
1301 {
1302 if (TARGET_COLDFIRE)
1303 {
1304 int offset;
1305
1306 /* If we used moveml to restore the integer registers, the
1307 stack pointer will still point to the bottom of the moveml
1308 save area. Find the stack offset of the first FP
1309 register. */
1310 if (current_frame.reg_no < MIN_MOVEM_REGS)
1311 offset = 0;
1312 else
1313 offset = current_frame.reg_no * GET_MODE_SIZE (SImode);
1314 m68k_emit_movem (stack_pointer_rtx, offset,
1315 current_frame.fpu_no, FP0_REG,
1316 current_frame.fpu_mask, false, false);
1317 }
1318 else
1319 m68k_emit_movem (stack_pointer_rtx, 0,
1320 current_frame.fpu_no, FP0_REG,
1321 current_frame.fpu_mask, false, true);
1322 }
1323 else
1324 m68k_emit_movem (frame_pointer_rtx,
1325 -(current_frame.foffset + fsize),
1326 current_frame.fpu_no, FP0_REG,
1327 current_frame.fpu_mask, false, false);
1328 }
1329
1330 emit_insn (gen_blockage ());
1331 if (frame_pointer_needed)
1332 emit_insn (gen_unlink (frame_pointer_rtx));
1333 else if (fsize_with_regs)
1334 emit_insn (gen_addsi3 (stack_pointer_rtx,
1335 stack_pointer_rtx,
1336 GEN_INT (fsize_with_regs)));
1337
1338 if (crtl->calls_eh_return)
1339 emit_insn (gen_addsi3 (stack_pointer_rtx,
1340 stack_pointer_rtx,
1341 EH_RETURN_STACKADJ_RTX));
1342
1343 if (!sibcall_p)
1344 emit_jump_insn (ret_rtx);
1345 }
1346 \f
1347 /* Return true if X is a valid comparison operator for the dbcc
1348 instruction.
1349
1350 Note it rejects floating point comparison operators.
1351 (In the future we could use Fdbcc).
1352
1353 It also rejects some comparisons when CC_NO_OVERFLOW is set. */
1354
1355 int
1356 valid_dbcc_comparison_p_2 (rtx x, machine_mode mode ATTRIBUTE_UNUSED)
1357 {
1358 switch (GET_CODE (x))
1359 {
1360 case EQ: case NE: case GTU: case LTU:
1361 case GEU: case LEU:
1362 return 1;
1363
1364 /* Reject some when CC_NO_OVERFLOW is set. This may be over
1365 conservative */
1366 case GT: case LT: case GE: case LE:
1367 return ! (cc_prev_status.flags & CC_NO_OVERFLOW);
1368 default:
1369 return 0;
1370 }
1371 }
1372
1373 /* Return nonzero if flags are currently in the 68881 flag register. */
1374 int
1375 flags_in_68881 (void)
1376 {
1377 /* We could add support for these in the future */
1378 return cc_status.flags & CC_IN_68881;
1379 }
1380
1381 /* Return true if PARALLEL contains register REGNO. */
1382 static bool
1383 m68k_reg_present_p (const_rtx parallel, unsigned int regno)
1384 {
1385 int i;
1386
1387 if (REG_P (parallel) && REGNO (parallel) == regno)
1388 return true;
1389
1390 if (GET_CODE (parallel) != PARALLEL)
1391 return false;
1392
1393 for (i = 0; i < XVECLEN (parallel, 0); ++i)
1394 {
1395 const_rtx x;
1396
1397 x = XEXP (XVECEXP (parallel, 0, i), 0);
1398 if (REG_P (x) && REGNO (x) == regno)
1399 return true;
1400 }
1401
1402 return false;
1403 }
1404
1405 /* Implement TARGET_FUNCTION_OK_FOR_SIBCALL_P. */
1406
1407 static bool
1408 m68k_ok_for_sibcall_p (tree decl, tree exp)
1409 {
1410 enum m68k_function_kind kind;
1411
1412 /* We cannot use sibcalls for nested functions because we use the
1413 static chain register for indirect calls. */
1414 if (CALL_EXPR_STATIC_CHAIN (exp))
1415 return false;
1416
1417 if (!VOID_TYPE_P (TREE_TYPE (DECL_RESULT (cfun->decl))))
1418 {
1419 /* Check that the return value locations are the same. For
1420 example that we aren't returning a value from the sibling in
1421 a D0 register but then need to transfer it to a A0 register. */
1422 rtx cfun_value;
1423 rtx call_value;
1424
1425 cfun_value = FUNCTION_VALUE (TREE_TYPE (DECL_RESULT (cfun->decl)),
1426 cfun->decl);
1427 call_value = FUNCTION_VALUE (TREE_TYPE (exp), decl);
1428
1429 /* Check that the values are equal or that the result the callee
1430 function returns is superset of what the current function returns. */
1431 if (!(rtx_equal_p (cfun_value, call_value)
1432 || (REG_P (cfun_value)
1433 && m68k_reg_present_p (call_value, REGNO (cfun_value)))))
1434 return false;
1435 }
1436
1437 kind = m68k_get_function_kind (current_function_decl);
1438 if (kind == m68k_fk_normal_function)
1439 /* We can always sibcall from a normal function, because it's
1440 undefined if it is calling an interrupt function. */
1441 return true;
1442
1443 /* Otherwise we can only sibcall if the function kind is known to be
1444 the same. */
1445 if (decl && m68k_get_function_kind (decl) == kind)
1446 return true;
1447
1448 return false;
1449 }
1450
1451 /* On the m68k all args are always pushed. */
1452
1453 static rtx
1454 m68k_function_arg (cumulative_args_t cum ATTRIBUTE_UNUSED,
1455 machine_mode mode ATTRIBUTE_UNUSED,
1456 const_tree type ATTRIBUTE_UNUSED,
1457 bool named ATTRIBUTE_UNUSED)
1458 {
1459 return NULL_RTX;
1460 }
1461
1462 static void
1463 m68k_function_arg_advance (cumulative_args_t cum_v, machine_mode mode,
1464 const_tree type, bool named ATTRIBUTE_UNUSED)
1465 {
1466 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
1467
1468 *cum += (mode != BLKmode
1469 ? (GET_MODE_SIZE (mode) + 3) & ~3
1470 : (int_size_in_bytes (type) + 3) & ~3);
1471 }
1472
1473 /* Convert X to a legitimate function call memory reference and return the
1474 result. */
1475
1476 rtx
1477 m68k_legitimize_call_address (rtx x)
1478 {
1479 gcc_assert (MEM_P (x));
1480 if (call_operand (XEXP (x, 0), VOIDmode))
1481 return x;
1482 return replace_equiv_address (x, force_reg (Pmode, XEXP (x, 0)));
1483 }
1484
1485 /* Likewise for sibling calls. */
1486
1487 rtx
1488 m68k_legitimize_sibcall_address (rtx x)
1489 {
1490 gcc_assert (MEM_P (x));
1491 if (sibcall_operand (XEXP (x, 0), VOIDmode))
1492 return x;
1493
1494 emit_move_insn (gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM), XEXP (x, 0));
1495 return replace_equiv_address (x, gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM));
1496 }
1497
1498 /* Convert X to a legitimate address and return it if successful. Otherwise
1499 return X.
1500
1501 For the 68000, we handle X+REG by loading X into a register R and
1502 using R+REG. R will go in an address reg and indexing will be used.
1503 However, if REG is a broken-out memory address or multiplication,
1504 nothing needs to be done because REG can certainly go in an address reg. */
1505
1506 static rtx
1507 m68k_legitimize_address (rtx x, rtx oldx, machine_mode mode)
1508 {
1509 if (m68k_tls_symbol_p (x))
1510 return m68k_legitimize_tls_address (x);
1511
1512 if (GET_CODE (x) == PLUS)
1513 {
1514 int ch = (x) != (oldx);
1515 int copied = 0;
1516
1517 #define COPY_ONCE(Y) if (!copied) { Y = copy_rtx (Y); copied = ch = 1; }
1518
1519 if (GET_CODE (XEXP (x, 0)) == MULT)
1520 {
1521 COPY_ONCE (x);
1522 XEXP (x, 0) = force_operand (XEXP (x, 0), 0);
1523 }
1524 if (GET_CODE (XEXP (x, 1)) == MULT)
1525 {
1526 COPY_ONCE (x);
1527 XEXP (x, 1) = force_operand (XEXP (x, 1), 0);
1528 }
1529 if (ch)
1530 {
1531 if (GET_CODE (XEXP (x, 1)) == REG
1532 && GET_CODE (XEXP (x, 0)) == REG)
1533 {
1534 if (TARGET_COLDFIRE_FPU && GET_MODE_CLASS (mode) == MODE_FLOAT)
1535 {
1536 COPY_ONCE (x);
1537 x = force_operand (x, 0);
1538 }
1539 return x;
1540 }
1541 if (memory_address_p (mode, x))
1542 return x;
1543 }
1544 if (GET_CODE (XEXP (x, 0)) == REG
1545 || (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
1546 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
1547 && GET_MODE (XEXP (XEXP (x, 0), 0)) == HImode))
1548 {
1549 rtx temp = gen_reg_rtx (Pmode);
1550 rtx val = force_operand (XEXP (x, 1), 0);
1551 emit_move_insn (temp, val);
1552 COPY_ONCE (x);
1553 XEXP (x, 1) = temp;
1554 if (TARGET_COLDFIRE_FPU && GET_MODE_CLASS (mode) == MODE_FLOAT
1555 && GET_CODE (XEXP (x, 0)) == REG)
1556 x = force_operand (x, 0);
1557 }
1558 else if (GET_CODE (XEXP (x, 1)) == REG
1559 || (GET_CODE (XEXP (x, 1)) == SIGN_EXTEND
1560 && GET_CODE (XEXP (XEXP (x, 1), 0)) == REG
1561 && GET_MODE (XEXP (XEXP (x, 1), 0)) == HImode))
1562 {
1563 rtx temp = gen_reg_rtx (Pmode);
1564 rtx val = force_operand (XEXP (x, 0), 0);
1565 emit_move_insn (temp, val);
1566 COPY_ONCE (x);
1567 XEXP (x, 0) = temp;
1568 if (TARGET_COLDFIRE_FPU && GET_MODE_CLASS (mode) == MODE_FLOAT
1569 && GET_CODE (XEXP (x, 1)) == REG)
1570 x = force_operand (x, 0);
1571 }
1572 }
1573
1574 return x;
1575 }
1576
1577
1578 /* Output a dbCC; jCC sequence. Note we do not handle the
1579 floating point version of this sequence (Fdbcc). We also
1580 do not handle alternative conditions when CC_NO_OVERFLOW is
1581 set. It is assumed that valid_dbcc_comparison_p and flags_in_68881 will
1582 kick those out before we get here. */
1583
1584 void
1585 output_dbcc_and_branch (rtx *operands)
1586 {
1587 switch (GET_CODE (operands[3]))
1588 {
1589 case EQ:
1590 output_asm_insn ("dbeq %0,%l1\n\tjeq %l2", operands);
1591 break;
1592
1593 case NE:
1594 output_asm_insn ("dbne %0,%l1\n\tjne %l2", operands);
1595 break;
1596
1597 case GT:
1598 output_asm_insn ("dbgt %0,%l1\n\tjgt %l2", operands);
1599 break;
1600
1601 case GTU:
1602 output_asm_insn ("dbhi %0,%l1\n\tjhi %l2", operands);
1603 break;
1604
1605 case LT:
1606 output_asm_insn ("dblt %0,%l1\n\tjlt %l2", operands);
1607 break;
1608
1609 case LTU:
1610 output_asm_insn ("dbcs %0,%l1\n\tjcs %l2", operands);
1611 break;
1612
1613 case GE:
1614 output_asm_insn ("dbge %0,%l1\n\tjge %l2", operands);
1615 break;
1616
1617 case GEU:
1618 output_asm_insn ("dbcc %0,%l1\n\tjcc %l2", operands);
1619 break;
1620
1621 case LE:
1622 output_asm_insn ("dble %0,%l1\n\tjle %l2", operands);
1623 break;
1624
1625 case LEU:
1626 output_asm_insn ("dbls %0,%l1\n\tjls %l2", operands);
1627 break;
1628
1629 default:
1630 gcc_unreachable ();
1631 }
1632
1633 /* If the decrement is to be done in SImode, then we have
1634 to compensate for the fact that dbcc decrements in HImode. */
1635 switch (GET_MODE (operands[0]))
1636 {
1637 case E_SImode:
1638 output_asm_insn ("clr%.w %0\n\tsubq%.l #1,%0\n\tjpl %l1", operands);
1639 break;
1640
1641 case E_HImode:
1642 break;
1643
1644 default:
1645 gcc_unreachable ();
1646 }
1647 }
1648
1649 const char *
1650 output_scc_di (rtx op, rtx operand1, rtx operand2, rtx dest)
1651 {
1652 rtx loperands[7];
1653 enum rtx_code op_code = GET_CODE (op);
1654
1655 /* This does not produce a useful cc. */
1656 CC_STATUS_INIT;
1657
1658 /* The m68k cmp.l instruction requires operand1 to be a reg as used
1659 below. Swap the operands and change the op if these requirements
1660 are not fulfilled. */
1661 if (GET_CODE (operand2) == REG && GET_CODE (operand1) != REG)
1662 {
1663 rtx tmp = operand1;
1664
1665 operand1 = operand2;
1666 operand2 = tmp;
1667 op_code = swap_condition (op_code);
1668 }
1669 loperands[0] = operand1;
1670 if (GET_CODE (operand1) == REG)
1671 loperands[1] = gen_rtx_REG (SImode, REGNO (operand1) + 1);
1672 else
1673 loperands[1] = adjust_address (operand1, SImode, 4);
1674 if (operand2 != const0_rtx)
1675 {
1676 loperands[2] = operand2;
1677 if (GET_CODE (operand2) == REG)
1678 loperands[3] = gen_rtx_REG (SImode, REGNO (operand2) + 1);
1679 else
1680 loperands[3] = adjust_address (operand2, SImode, 4);
1681 }
1682 loperands[4] = gen_label_rtx ();
1683 if (operand2 != const0_rtx)
1684 output_asm_insn ("cmp%.l %2,%0\n\tjne %l4\n\tcmp%.l %3,%1", loperands);
1685 else
1686 {
1687 if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (loperands[0]))
1688 output_asm_insn ("tst%.l %0", loperands);
1689 else
1690 output_asm_insn ("cmp%.w #0,%0", loperands);
1691
1692 output_asm_insn ("jne %l4", loperands);
1693
1694 if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (loperands[1]))
1695 output_asm_insn ("tst%.l %1", loperands);
1696 else
1697 output_asm_insn ("cmp%.w #0,%1", loperands);
1698 }
1699
1700 loperands[5] = dest;
1701
1702 switch (op_code)
1703 {
1704 case EQ:
1705 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1706 CODE_LABEL_NUMBER (loperands[4]));
1707 output_asm_insn ("seq %5", loperands);
1708 break;
1709
1710 case NE:
1711 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1712 CODE_LABEL_NUMBER (loperands[4]));
1713 output_asm_insn ("sne %5", loperands);
1714 break;
1715
1716 case GT:
1717 loperands[6] = gen_label_rtx ();
1718 output_asm_insn ("shi %5\n\tjra %l6", loperands);
1719 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1720 CODE_LABEL_NUMBER (loperands[4]));
1721 output_asm_insn ("sgt %5", loperands);
1722 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1723 CODE_LABEL_NUMBER (loperands[6]));
1724 break;
1725
1726 case GTU:
1727 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1728 CODE_LABEL_NUMBER (loperands[4]));
1729 output_asm_insn ("shi %5", loperands);
1730 break;
1731
1732 case LT:
1733 loperands[6] = gen_label_rtx ();
1734 output_asm_insn ("scs %5\n\tjra %l6", loperands);
1735 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1736 CODE_LABEL_NUMBER (loperands[4]));
1737 output_asm_insn ("slt %5", loperands);
1738 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1739 CODE_LABEL_NUMBER (loperands[6]));
1740 break;
1741
1742 case LTU:
1743 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1744 CODE_LABEL_NUMBER (loperands[4]));
1745 output_asm_insn ("scs %5", loperands);
1746 break;
1747
1748 case GE:
1749 loperands[6] = gen_label_rtx ();
1750 output_asm_insn ("scc %5\n\tjra %l6", loperands);
1751 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1752 CODE_LABEL_NUMBER (loperands[4]));
1753 output_asm_insn ("sge %5", loperands);
1754 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1755 CODE_LABEL_NUMBER (loperands[6]));
1756 break;
1757
1758 case GEU:
1759 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1760 CODE_LABEL_NUMBER (loperands[4]));
1761 output_asm_insn ("scc %5", loperands);
1762 break;
1763
1764 case LE:
1765 loperands[6] = gen_label_rtx ();
1766 output_asm_insn ("sls %5\n\tjra %l6", loperands);
1767 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1768 CODE_LABEL_NUMBER (loperands[4]));
1769 output_asm_insn ("sle %5", loperands);
1770 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1771 CODE_LABEL_NUMBER (loperands[6]));
1772 break;
1773
1774 case LEU:
1775 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1776 CODE_LABEL_NUMBER (loperands[4]));
1777 output_asm_insn ("sls %5", loperands);
1778 break;
1779
1780 default:
1781 gcc_unreachable ();
1782 }
1783 return "";
1784 }
1785
1786 const char *
1787 output_btst (rtx *operands, rtx countop, rtx dataop, rtx_insn *insn, int signpos)
1788 {
1789 operands[0] = countop;
1790 operands[1] = dataop;
1791
1792 if (GET_CODE (countop) == CONST_INT)
1793 {
1794 register int count = INTVAL (countop);
1795 /* If COUNT is bigger than size of storage unit in use,
1796 advance to the containing unit of same size. */
1797 if (count > signpos)
1798 {
1799 int offset = (count & ~signpos) / 8;
1800 count = count & signpos;
1801 operands[1] = dataop = adjust_address (dataop, QImode, offset);
1802 }
1803 if (count == signpos)
1804 cc_status.flags = CC_NOT_POSITIVE | CC_Z_IN_NOT_N;
1805 else
1806 cc_status.flags = CC_NOT_NEGATIVE | CC_Z_IN_NOT_N;
1807
1808 /* These three statements used to use next_insns_test_no...
1809 but it appears that this should do the same job. */
1810 if (count == 31
1811 && next_insn_tests_no_inequality (insn))
1812 return "tst%.l %1";
1813 if (count == 15
1814 && next_insn_tests_no_inequality (insn))
1815 return "tst%.w %1";
1816 if (count == 7
1817 && next_insn_tests_no_inequality (insn))
1818 return "tst%.b %1";
1819 /* Try to use `movew to ccr' followed by the appropriate branch insn.
1820 On some m68k variants unfortunately that's slower than btst.
1821 On 68000 and higher, that should also work for all HImode operands. */
1822 if (TUNE_CPU32 || TARGET_COLDFIRE || optimize_size)
1823 {
1824 if (count == 3 && DATA_REG_P (operands[1])
1825 && next_insn_tests_no_inequality (insn))
1826 {
1827 cc_status.flags = CC_NOT_NEGATIVE | CC_Z_IN_NOT_N | CC_NO_OVERFLOW;
1828 return "move%.w %1,%%ccr";
1829 }
1830 if (count == 2 && DATA_REG_P (operands[1])
1831 && next_insn_tests_no_inequality (insn))
1832 {
1833 cc_status.flags = CC_NOT_NEGATIVE | CC_INVERTED | CC_NO_OVERFLOW;
1834 return "move%.w %1,%%ccr";
1835 }
1836 /* count == 1 followed by bvc/bvs and
1837 count == 0 followed by bcc/bcs are also possible, but need
1838 m68k-specific CC_Z_IN_NOT_V and CC_Z_IN_NOT_C flags. */
1839 }
1840
1841 cc_status.flags = CC_NOT_NEGATIVE;
1842 }
1843 return "btst %0,%1";
1844 }
1845 \f
1846 /* Return true if X is a legitimate base register. STRICT_P says
1847 whether we need strict checking. */
1848
1849 bool
1850 m68k_legitimate_base_reg_p (rtx x, bool strict_p)
1851 {
1852 /* Allow SUBREG everywhere we allow REG. This results in better code. */
1853 if (!strict_p && GET_CODE (x) == SUBREG)
1854 x = SUBREG_REG (x);
1855
1856 return (REG_P (x)
1857 && (strict_p
1858 ? REGNO_OK_FOR_BASE_P (REGNO (x))
1859 : REGNO_OK_FOR_BASE_NONSTRICT_P (REGNO (x))));
1860 }
1861
1862 /* Return true if X is a legitimate index register. STRICT_P says
1863 whether we need strict checking. */
1864
1865 bool
1866 m68k_legitimate_index_reg_p (rtx x, bool strict_p)
1867 {
1868 if (!strict_p && GET_CODE (x) == SUBREG)
1869 x = SUBREG_REG (x);
1870
1871 return (REG_P (x)
1872 && (strict_p
1873 ? REGNO_OK_FOR_INDEX_P (REGNO (x))
1874 : REGNO_OK_FOR_INDEX_NONSTRICT_P (REGNO (x))));
1875 }
1876
1877 /* Return true if X is a legitimate index expression for a (d8,An,Xn) or
1878 (bd,An,Xn) addressing mode. Fill in the INDEX and SCALE fields of
1879 ADDRESS if so. STRICT_P says whether we need strict checking. */
1880
1881 static bool
1882 m68k_decompose_index (rtx x, bool strict_p, struct m68k_address *address)
1883 {
1884 int scale;
1885
1886 /* Check for a scale factor. */
1887 scale = 1;
1888 if ((TARGET_68020 || TARGET_COLDFIRE)
1889 && GET_CODE (x) == MULT
1890 && GET_CODE (XEXP (x, 1)) == CONST_INT
1891 && (INTVAL (XEXP (x, 1)) == 2
1892 || INTVAL (XEXP (x, 1)) == 4
1893 || (INTVAL (XEXP (x, 1)) == 8
1894 && (TARGET_COLDFIRE_FPU || !TARGET_COLDFIRE))))
1895 {
1896 scale = INTVAL (XEXP (x, 1));
1897 x = XEXP (x, 0);
1898 }
1899
1900 /* Check for a word extension. */
1901 if (!TARGET_COLDFIRE
1902 && GET_CODE (x) == SIGN_EXTEND
1903 && GET_MODE (XEXP (x, 0)) == HImode)
1904 x = XEXP (x, 0);
1905
1906 if (m68k_legitimate_index_reg_p (x, strict_p))
1907 {
1908 address->scale = scale;
1909 address->index = x;
1910 return true;
1911 }
1912
1913 return false;
1914 }
1915
1916 /* Return true if X is an illegitimate symbolic constant. */
1917
1918 bool
1919 m68k_illegitimate_symbolic_constant_p (rtx x)
1920 {
1921 rtx base, offset;
1922
1923 if (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P)
1924 {
1925 split_const (x, &base, &offset);
1926 if (GET_CODE (base) == SYMBOL_REF
1927 && !offset_within_block_p (base, INTVAL (offset)))
1928 return true;
1929 }
1930 return m68k_tls_reference_p (x, false);
1931 }
1932
1933 /* Implement TARGET_CANNOT_FORCE_CONST_MEM. */
1934
1935 static bool
1936 m68k_cannot_force_const_mem (machine_mode mode ATTRIBUTE_UNUSED, rtx x)
1937 {
1938 return m68k_illegitimate_symbolic_constant_p (x);
1939 }
1940
1941 /* Return true if X is a legitimate constant address that can reach
1942 bytes in the range [X, X + REACH). STRICT_P says whether we need
1943 strict checking. */
1944
1945 static bool
1946 m68k_legitimate_constant_address_p (rtx x, unsigned int reach, bool strict_p)
1947 {
1948 rtx base, offset;
1949
1950 if (!CONSTANT_ADDRESS_P (x))
1951 return false;
1952
1953 if (flag_pic
1954 && !(strict_p && TARGET_PCREL)
1955 && symbolic_operand (x, VOIDmode))
1956 return false;
1957
1958 if (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P && reach > 1)
1959 {
1960 split_const (x, &base, &offset);
1961 if (GET_CODE (base) == SYMBOL_REF
1962 && !offset_within_block_p (base, INTVAL (offset) + reach - 1))
1963 return false;
1964 }
1965
1966 return !m68k_tls_reference_p (x, false);
1967 }
1968
1969 /* Return true if X is a LABEL_REF for a jump table. Assume that unplaced
1970 labels will become jump tables. */
1971
1972 static bool
1973 m68k_jump_table_ref_p (rtx x)
1974 {
1975 if (GET_CODE (x) != LABEL_REF)
1976 return false;
1977
1978 rtx_insn *insn = as_a <rtx_insn *> (XEXP (x, 0));
1979 if (!NEXT_INSN (insn) && !PREV_INSN (insn))
1980 return true;
1981
1982 insn = next_nonnote_insn (insn);
1983 return insn && JUMP_TABLE_DATA_P (insn);
1984 }
1985
1986 /* Return true if X is a legitimate address for values of mode MODE.
1987 STRICT_P says whether strict checking is needed. If the address
1988 is valid, describe its components in *ADDRESS. */
1989
1990 static bool
1991 m68k_decompose_address (machine_mode mode, rtx x,
1992 bool strict_p, struct m68k_address *address)
1993 {
1994 unsigned int reach;
1995
1996 memset (address, 0, sizeof (*address));
1997
1998 if (mode == BLKmode)
1999 reach = 1;
2000 else
2001 reach = GET_MODE_SIZE (mode);
2002
2003 /* Check for (An) (mode 2). */
2004 if (m68k_legitimate_base_reg_p (x, strict_p))
2005 {
2006 address->base = x;
2007 return true;
2008 }
2009
2010 /* Check for -(An) and (An)+ (modes 3 and 4). */
2011 if ((GET_CODE (x) == PRE_DEC || GET_CODE (x) == POST_INC)
2012 && m68k_legitimate_base_reg_p (XEXP (x, 0), strict_p))
2013 {
2014 address->code = GET_CODE (x);
2015 address->base = XEXP (x, 0);
2016 return true;
2017 }
2018
2019 /* Check for (d16,An) (mode 5). */
2020 if (GET_CODE (x) == PLUS
2021 && GET_CODE (XEXP (x, 1)) == CONST_INT
2022 && IN_RANGE (INTVAL (XEXP (x, 1)), -0x8000, 0x8000 - reach)
2023 && m68k_legitimate_base_reg_p (XEXP (x, 0), strict_p))
2024 {
2025 address->base = XEXP (x, 0);
2026 address->offset = XEXP (x, 1);
2027 return true;
2028 }
2029
2030 /* Check for GOT loads. These are (bd,An,Xn) addresses if
2031 TARGET_68020 && flag_pic == 2, otherwise they are (d16,An)
2032 addresses. */
2033 if (GET_CODE (x) == PLUS
2034 && XEXP (x, 0) == pic_offset_table_rtx)
2035 {
2036 /* As we are processing a PLUS, do not unwrap RELOC32 symbols --
2037 they are invalid in this context. */
2038 if (m68k_unwrap_symbol (XEXP (x, 1), false) != XEXP (x, 1))
2039 {
2040 address->base = XEXP (x, 0);
2041 address->offset = XEXP (x, 1);
2042 return true;
2043 }
2044 }
2045
2046 /* The ColdFire FPU only accepts addressing modes 2-5. */
2047 if (TARGET_COLDFIRE_FPU && GET_MODE_CLASS (mode) == MODE_FLOAT)
2048 return false;
2049
2050 /* Check for (xxx).w and (xxx).l. Also, in the TARGET_PCREL case,
2051 check for (d16,PC) or (bd,PC,Xn) with a suppressed index register.
2052 All these modes are variations of mode 7. */
2053 if (m68k_legitimate_constant_address_p (x, reach, strict_p))
2054 {
2055 address->offset = x;
2056 return true;
2057 }
2058
2059 /* Check for (d8,PC,Xn), a mode 7 form. This case is needed for
2060 tablejumps.
2061
2062 ??? do_tablejump creates these addresses before placing the target
2063 label, so we have to assume that unplaced labels are jump table
2064 references. It seems unlikely that we would ever generate indexed
2065 accesses to unplaced labels in other cases. */
2066 if (GET_CODE (x) == PLUS
2067 && m68k_jump_table_ref_p (XEXP (x, 1))
2068 && m68k_decompose_index (XEXP (x, 0), strict_p, address))
2069 {
2070 address->offset = XEXP (x, 1);
2071 return true;
2072 }
2073
2074 /* Everything hereafter deals with (d8,An,Xn.SIZE*SCALE) or
2075 (bd,An,Xn.SIZE*SCALE) addresses. */
2076
2077 if (TARGET_68020)
2078 {
2079 /* Check for a nonzero base displacement. */
2080 if (GET_CODE (x) == PLUS
2081 && m68k_legitimate_constant_address_p (XEXP (x, 1), reach, strict_p))
2082 {
2083 address->offset = XEXP (x, 1);
2084 x = XEXP (x, 0);
2085 }
2086
2087 /* Check for a suppressed index register. */
2088 if (m68k_legitimate_base_reg_p (x, strict_p))
2089 {
2090 address->base = x;
2091 return true;
2092 }
2093
2094 /* Check for a suppressed base register. Do not allow this case
2095 for non-symbolic offsets as it effectively gives gcc freedom
2096 to treat data registers as base registers, which can generate
2097 worse code. */
2098 if (address->offset
2099 && symbolic_operand (address->offset, VOIDmode)
2100 && m68k_decompose_index (x, strict_p, address))
2101 return true;
2102 }
2103 else
2104 {
2105 /* Check for a nonzero base displacement. */
2106 if (GET_CODE (x) == PLUS
2107 && GET_CODE (XEXP (x, 1)) == CONST_INT
2108 && IN_RANGE (INTVAL (XEXP (x, 1)), -0x80, 0x80 - reach))
2109 {
2110 address->offset = XEXP (x, 1);
2111 x = XEXP (x, 0);
2112 }
2113 }
2114
2115 /* We now expect the sum of a base and an index. */
2116 if (GET_CODE (x) == PLUS)
2117 {
2118 if (m68k_legitimate_base_reg_p (XEXP (x, 0), strict_p)
2119 && m68k_decompose_index (XEXP (x, 1), strict_p, address))
2120 {
2121 address->base = XEXP (x, 0);
2122 return true;
2123 }
2124
2125 if (m68k_legitimate_base_reg_p (XEXP (x, 1), strict_p)
2126 && m68k_decompose_index (XEXP (x, 0), strict_p, address))
2127 {
2128 address->base = XEXP (x, 1);
2129 return true;
2130 }
2131 }
2132 return false;
2133 }
2134
2135 /* Return true if X is a legitimate address for values of mode MODE.
2136 STRICT_P says whether strict checking is needed. */
2137
2138 bool
2139 m68k_legitimate_address_p (machine_mode mode, rtx x, bool strict_p)
2140 {
2141 struct m68k_address address;
2142
2143 return m68k_decompose_address (mode, x, strict_p, &address);
2144 }
2145
2146 /* Return true if X is a memory, describing its address in ADDRESS if so.
2147 Apply strict checking if called during or after reload. */
2148
2149 static bool
2150 m68k_legitimate_mem_p (rtx x, struct m68k_address *address)
2151 {
2152 return (MEM_P (x)
2153 && m68k_decompose_address (GET_MODE (x), XEXP (x, 0),
2154 reload_in_progress || reload_completed,
2155 address));
2156 }
2157
2158 /* Implement TARGET_LEGITIMATE_CONSTANT_P. */
2159
2160 bool
2161 m68k_legitimate_constant_p (machine_mode mode, rtx x)
2162 {
2163 return mode != XFmode && !m68k_illegitimate_symbolic_constant_p (x);
2164 }
2165
2166 /* Return true if X matches the 'Q' constraint. It must be a memory
2167 with a base address and no constant offset or index. */
2168
2169 bool
2170 m68k_matches_q_p (rtx x)
2171 {
2172 struct m68k_address address;
2173
2174 return (m68k_legitimate_mem_p (x, &address)
2175 && address.code == UNKNOWN
2176 && address.base
2177 && !address.offset
2178 && !address.index);
2179 }
2180
2181 /* Return true if X matches the 'U' constraint. It must be a base address
2182 with a constant offset and no index. */
2183
2184 bool
2185 m68k_matches_u_p (rtx x)
2186 {
2187 struct m68k_address address;
2188
2189 return (m68k_legitimate_mem_p (x, &address)
2190 && address.code == UNKNOWN
2191 && address.base
2192 && address.offset
2193 && !address.index);
2194 }
2195
2196 /* Return GOT pointer. */
2197
2198 static rtx
2199 m68k_get_gp (void)
2200 {
2201 if (pic_offset_table_rtx == NULL_RTX)
2202 pic_offset_table_rtx = gen_rtx_REG (Pmode, PIC_REG);
2203
2204 crtl->uses_pic_offset_table = 1;
2205
2206 return pic_offset_table_rtx;
2207 }
2208
2209 /* M68K relocations, used to distinguish GOT and TLS relocations in UNSPEC
2210 wrappers. */
2211 enum m68k_reloc { RELOC_GOT, RELOC_TLSGD, RELOC_TLSLDM, RELOC_TLSLDO,
2212 RELOC_TLSIE, RELOC_TLSLE };
2213
2214 #define TLS_RELOC_P(RELOC) ((RELOC) != RELOC_GOT)
2215
2216 /* Wrap symbol X into unspec representing relocation RELOC.
2217 BASE_REG - register that should be added to the result.
2218 TEMP_REG - if non-null, temporary register. */
2219
2220 static rtx
2221 m68k_wrap_symbol (rtx x, enum m68k_reloc reloc, rtx base_reg, rtx temp_reg)
2222 {
2223 bool use_x_p;
2224
2225 use_x_p = (base_reg == pic_offset_table_rtx) ? TARGET_XGOT : TARGET_XTLS;
2226
2227 if (TARGET_COLDFIRE && use_x_p)
2228 /* When compiling with -mx{got, tls} switch the code will look like this:
2229
2230 move.l <X>@<RELOC>,<TEMP_REG>
2231 add.l <BASE_REG>,<TEMP_REG> */
2232 {
2233 /* Wrap X in UNSPEC_??? to tip m68k_output_addr_const_extra
2234 to put @RELOC after reference. */
2235 x = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, x, GEN_INT (reloc)),
2236 UNSPEC_RELOC32);
2237 x = gen_rtx_CONST (Pmode, x);
2238
2239 if (temp_reg == NULL)
2240 {
2241 gcc_assert (can_create_pseudo_p ());
2242 temp_reg = gen_reg_rtx (Pmode);
2243 }
2244
2245 emit_move_insn (temp_reg, x);
2246 emit_insn (gen_addsi3 (temp_reg, temp_reg, base_reg));
2247 x = temp_reg;
2248 }
2249 else
2250 {
2251 x = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, x, GEN_INT (reloc)),
2252 UNSPEC_RELOC16);
2253 x = gen_rtx_CONST (Pmode, x);
2254
2255 x = gen_rtx_PLUS (Pmode, base_reg, x);
2256 }
2257
2258 return x;
2259 }
2260
2261 /* Helper for m68k_unwrap_symbol.
2262 Also, if unwrapping was successful (that is if (ORIG != <return value>)),
2263 sets *RELOC_PTR to relocation type for the symbol. */
2264
2265 static rtx
2266 m68k_unwrap_symbol_1 (rtx orig, bool unwrap_reloc32_p,
2267 enum m68k_reloc *reloc_ptr)
2268 {
2269 if (GET_CODE (orig) == CONST)
2270 {
2271 rtx x;
2272 enum m68k_reloc dummy;
2273
2274 x = XEXP (orig, 0);
2275
2276 if (reloc_ptr == NULL)
2277 reloc_ptr = &dummy;
2278
2279 /* Handle an addend. */
2280 if ((GET_CODE (x) == PLUS || GET_CODE (x) == MINUS)
2281 && CONST_INT_P (XEXP (x, 1)))
2282 x = XEXP (x, 0);
2283
2284 if (GET_CODE (x) == UNSPEC)
2285 {
2286 switch (XINT (x, 1))
2287 {
2288 case UNSPEC_RELOC16:
2289 orig = XVECEXP (x, 0, 0);
2290 *reloc_ptr = (enum m68k_reloc) INTVAL (XVECEXP (x, 0, 1));
2291 break;
2292
2293 case UNSPEC_RELOC32:
2294 if (unwrap_reloc32_p)
2295 {
2296 orig = XVECEXP (x, 0, 0);
2297 *reloc_ptr = (enum m68k_reloc) INTVAL (XVECEXP (x, 0, 1));
2298 }
2299 break;
2300
2301 default:
2302 break;
2303 }
2304 }
2305 }
2306
2307 return orig;
2308 }
2309
2310 /* Unwrap symbol from UNSPEC_RELOC16 and, if unwrap_reloc32_p,
2311 UNSPEC_RELOC32 wrappers. */
2312
2313 rtx
2314 m68k_unwrap_symbol (rtx orig, bool unwrap_reloc32_p)
2315 {
2316 return m68k_unwrap_symbol_1 (orig, unwrap_reloc32_p, NULL);
2317 }
2318
2319 /* Prescan insn before outputing assembler for it. */
2320
2321 void
2322 m68k_final_prescan_insn (rtx_insn *insn ATTRIBUTE_UNUSED,
2323 rtx *operands, int n_operands)
2324 {
2325 int i;
2326
2327 /* Combine and, possibly, other optimizations may do good job
2328 converting
2329 (const (unspec [(symbol)]))
2330 into
2331 (const (plus (unspec [(symbol)])
2332 (const_int N))).
2333 The problem with this is emitting @TLS or @GOT decorations.
2334 The decoration is emitted when processing (unspec), so the
2335 result would be "#symbol@TLSLE+N" instead of "#symbol+N@TLSLE".
2336
2337 It seems that the easiest solution to this is to convert such
2338 operands to
2339 (const (unspec [(plus (symbol)
2340 (const_int N))])).
2341 Note, that the top level of operand remains intact, so we don't have
2342 to patch up anything outside of the operand. */
2343
2344 subrtx_var_iterator::array_type array;
2345 for (i = 0; i < n_operands; ++i)
2346 {
2347 rtx op;
2348
2349 op = operands[i];
2350
2351 FOR_EACH_SUBRTX_VAR (iter, array, op, ALL)
2352 {
2353 rtx x = *iter;
2354 if (m68k_unwrap_symbol (x, true) != x)
2355 {
2356 rtx plus;
2357
2358 gcc_assert (GET_CODE (x) == CONST);
2359 plus = XEXP (x, 0);
2360
2361 if (GET_CODE (plus) == PLUS || GET_CODE (plus) == MINUS)
2362 {
2363 rtx unspec;
2364 rtx addend;
2365
2366 unspec = XEXP (plus, 0);
2367 gcc_assert (GET_CODE (unspec) == UNSPEC);
2368 addend = XEXP (plus, 1);
2369 gcc_assert (CONST_INT_P (addend));
2370
2371 /* We now have all the pieces, rearrange them. */
2372
2373 /* Move symbol to plus. */
2374 XEXP (plus, 0) = XVECEXP (unspec, 0, 0);
2375
2376 /* Move plus inside unspec. */
2377 XVECEXP (unspec, 0, 0) = plus;
2378
2379 /* Move unspec to top level of const. */
2380 XEXP (x, 0) = unspec;
2381 }
2382 iter.skip_subrtxes ();
2383 }
2384 }
2385 }
2386 }
2387
2388 /* Move X to a register and add REG_EQUAL note pointing to ORIG.
2389 If REG is non-null, use it; generate new pseudo otherwise. */
2390
2391 static rtx
2392 m68k_move_to_reg (rtx x, rtx orig, rtx reg)
2393 {
2394 rtx_insn *insn;
2395
2396 if (reg == NULL_RTX)
2397 {
2398 gcc_assert (can_create_pseudo_p ());
2399 reg = gen_reg_rtx (Pmode);
2400 }
2401
2402 insn = emit_move_insn (reg, x);
2403 /* Put a REG_EQUAL note on this insn, so that it can be optimized
2404 by loop. */
2405 set_unique_reg_note (insn, REG_EQUAL, orig);
2406
2407 return reg;
2408 }
2409
2410 /* Does the same as m68k_wrap_symbol, but returns a memory reference to
2411 GOT slot. */
2412
2413 static rtx
2414 m68k_wrap_symbol_into_got_ref (rtx x, enum m68k_reloc reloc, rtx temp_reg)
2415 {
2416 x = m68k_wrap_symbol (x, reloc, m68k_get_gp (), temp_reg);
2417
2418 x = gen_rtx_MEM (Pmode, x);
2419 MEM_READONLY_P (x) = 1;
2420
2421 return x;
2422 }
2423
2424 /* Legitimize PIC addresses. If the address is already
2425 position-independent, we return ORIG. Newly generated
2426 position-independent addresses go to REG. If we need more
2427 than one register, we lose.
2428
2429 An address is legitimized by making an indirect reference
2430 through the Global Offset Table with the name of the symbol
2431 used as an offset.
2432
2433 The assembler and linker are responsible for placing the
2434 address of the symbol in the GOT. The function prologue
2435 is responsible for initializing a5 to the starting address
2436 of the GOT.
2437
2438 The assembler is also responsible for translating a symbol name
2439 into a constant displacement from the start of the GOT.
2440
2441 A quick example may make things a little clearer:
2442
2443 When not generating PIC code to store the value 12345 into _foo
2444 we would generate the following code:
2445
2446 movel #12345, _foo
2447
2448 When generating PIC two transformations are made. First, the compiler
2449 loads the address of foo into a register. So the first transformation makes:
2450
2451 lea _foo, a0
2452 movel #12345, a0@
2453
2454 The code in movsi will intercept the lea instruction and call this
2455 routine which will transform the instructions into:
2456
2457 movel a5@(_foo:w), a0
2458 movel #12345, a0@
2459
2460
2461 That (in a nutshell) is how *all* symbol and label references are
2462 handled. */
2463
2464 rtx
2465 legitimize_pic_address (rtx orig, machine_mode mode ATTRIBUTE_UNUSED,
2466 rtx reg)
2467 {
2468 rtx pic_ref = orig;
2469
2470 /* First handle a simple SYMBOL_REF or LABEL_REF */
2471 if (GET_CODE (orig) == SYMBOL_REF || GET_CODE (orig) == LABEL_REF)
2472 {
2473 gcc_assert (reg);
2474
2475 pic_ref = m68k_wrap_symbol_into_got_ref (orig, RELOC_GOT, reg);
2476 pic_ref = m68k_move_to_reg (pic_ref, orig, reg);
2477 }
2478 else if (GET_CODE (orig) == CONST)
2479 {
2480 rtx base;
2481
2482 /* Make sure this has not already been legitimized. */
2483 if (m68k_unwrap_symbol (orig, true) != orig)
2484 return orig;
2485
2486 gcc_assert (reg);
2487
2488 /* legitimize both operands of the PLUS */
2489 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
2490
2491 base = legitimize_pic_address (XEXP (XEXP (orig, 0), 0), Pmode, reg);
2492 orig = legitimize_pic_address (XEXP (XEXP (orig, 0), 1), Pmode,
2493 base == reg ? 0 : reg);
2494
2495 if (GET_CODE (orig) == CONST_INT)
2496 pic_ref = plus_constant (Pmode, base, INTVAL (orig));
2497 else
2498 pic_ref = gen_rtx_PLUS (Pmode, base, orig);
2499 }
2500
2501 return pic_ref;
2502 }
2503
2504 /* The __tls_get_addr symbol. */
2505 static GTY(()) rtx m68k_tls_get_addr;
2506
2507 /* Return SYMBOL_REF for __tls_get_addr. */
2508
2509 static rtx
2510 m68k_get_tls_get_addr (void)
2511 {
2512 if (m68k_tls_get_addr == NULL_RTX)
2513 m68k_tls_get_addr = init_one_libfunc ("__tls_get_addr");
2514
2515 return m68k_tls_get_addr;
2516 }
2517
2518 /* Return libcall result in A0 instead of usual D0. */
2519 static bool m68k_libcall_value_in_a0_p = false;
2520
2521 /* Emit instruction sequence that calls __tls_get_addr. X is
2522 the TLS symbol we are referencing and RELOC is the symbol type to use
2523 (either TLSGD or TLSLDM). EQV is the REG_EQUAL note for the sequence
2524 emitted. A pseudo register with result of __tls_get_addr call is
2525 returned. */
2526
2527 static rtx
2528 m68k_call_tls_get_addr (rtx x, rtx eqv, enum m68k_reloc reloc)
2529 {
2530 rtx a0;
2531 rtx_insn *insns;
2532 rtx dest;
2533
2534 /* Emit the call sequence. */
2535 start_sequence ();
2536
2537 /* FIXME: Unfortunately, emit_library_call_value does not
2538 consider (plus (%a5) (const (unspec))) to be a good enough
2539 operand for push, so it forces it into a register. The bad
2540 thing about this is that combiner, due to copy propagation and other
2541 optimizations, sometimes can not later fix this. As a consequence,
2542 additional register may be allocated resulting in a spill.
2543 For reference, see args processing loops in
2544 calls.c:emit_library_call_value_1.
2545 For testcase, see gcc.target/m68k/tls-{gd, ld}.c */
2546 x = m68k_wrap_symbol (x, reloc, m68k_get_gp (), NULL_RTX);
2547
2548 /* __tls_get_addr() is not a libcall, but emitting a libcall_value
2549 is the simpliest way of generating a call. The difference between
2550 __tls_get_addr() and libcall is that the result is returned in D0
2551 instead of A0. To workaround this, we use m68k_libcall_value_in_a0_p
2552 which temporarily switches returning the result to A0. */
2553
2554 m68k_libcall_value_in_a0_p = true;
2555 a0 = emit_library_call_value (m68k_get_tls_get_addr (), NULL_RTX, LCT_PURE,
2556 Pmode, x, Pmode);
2557 m68k_libcall_value_in_a0_p = false;
2558
2559 insns = get_insns ();
2560 end_sequence ();
2561
2562 gcc_assert (can_create_pseudo_p ());
2563 dest = gen_reg_rtx (Pmode);
2564 emit_libcall_block (insns, dest, a0, eqv);
2565
2566 return dest;
2567 }
2568
2569 /* The __tls_get_addr symbol. */
2570 static GTY(()) rtx m68k_read_tp;
2571
2572 /* Return SYMBOL_REF for __m68k_read_tp. */
2573
2574 static rtx
2575 m68k_get_m68k_read_tp (void)
2576 {
2577 if (m68k_read_tp == NULL_RTX)
2578 m68k_read_tp = init_one_libfunc ("__m68k_read_tp");
2579
2580 return m68k_read_tp;
2581 }
2582
2583 /* Emit instruction sequence that calls __m68k_read_tp.
2584 A pseudo register with result of __m68k_read_tp call is returned. */
2585
2586 static rtx
2587 m68k_call_m68k_read_tp (void)
2588 {
2589 rtx a0;
2590 rtx eqv;
2591 rtx_insn *insns;
2592 rtx dest;
2593
2594 start_sequence ();
2595
2596 /* __m68k_read_tp() is not a libcall, but emitting a libcall_value
2597 is the simpliest way of generating a call. The difference between
2598 __m68k_read_tp() and libcall is that the result is returned in D0
2599 instead of A0. To workaround this, we use m68k_libcall_value_in_a0_p
2600 which temporarily switches returning the result to A0. */
2601
2602 /* Emit the call sequence. */
2603 m68k_libcall_value_in_a0_p = true;
2604 a0 = emit_library_call_value (m68k_get_m68k_read_tp (), NULL_RTX, LCT_PURE,
2605 Pmode);
2606 m68k_libcall_value_in_a0_p = false;
2607 insns = get_insns ();
2608 end_sequence ();
2609
2610 /* Attach a unique REG_EQUIV, to allow the RTL optimizers to
2611 share the m68k_read_tp result with other IE/LE model accesses. */
2612 eqv = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const1_rtx), UNSPEC_RELOC32);
2613
2614 gcc_assert (can_create_pseudo_p ());
2615 dest = gen_reg_rtx (Pmode);
2616 emit_libcall_block (insns, dest, a0, eqv);
2617
2618 return dest;
2619 }
2620
2621 /* Return a legitimized address for accessing TLS SYMBOL_REF X.
2622 For explanations on instructions sequences see TLS/NPTL ABI for m68k and
2623 ColdFire. */
2624
2625 rtx
2626 m68k_legitimize_tls_address (rtx orig)
2627 {
2628 switch (SYMBOL_REF_TLS_MODEL (orig))
2629 {
2630 case TLS_MODEL_GLOBAL_DYNAMIC:
2631 orig = m68k_call_tls_get_addr (orig, orig, RELOC_TLSGD);
2632 break;
2633
2634 case TLS_MODEL_LOCAL_DYNAMIC:
2635 {
2636 rtx eqv;
2637 rtx a0;
2638 rtx x;
2639
2640 /* Attach a unique REG_EQUIV, to allow the RTL optimizers to
2641 share the LDM result with other LD model accesses. */
2642 eqv = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx),
2643 UNSPEC_RELOC32);
2644
2645 a0 = m68k_call_tls_get_addr (orig, eqv, RELOC_TLSLDM);
2646
2647 x = m68k_wrap_symbol (orig, RELOC_TLSLDO, a0, NULL_RTX);
2648
2649 if (can_create_pseudo_p ())
2650 x = m68k_move_to_reg (x, orig, NULL_RTX);
2651
2652 orig = x;
2653 break;
2654 }
2655
2656 case TLS_MODEL_INITIAL_EXEC:
2657 {
2658 rtx a0;
2659 rtx x;
2660
2661 a0 = m68k_call_m68k_read_tp ();
2662
2663 x = m68k_wrap_symbol_into_got_ref (orig, RELOC_TLSIE, NULL_RTX);
2664 x = gen_rtx_PLUS (Pmode, x, a0);
2665
2666 if (can_create_pseudo_p ())
2667 x = m68k_move_to_reg (x, orig, NULL_RTX);
2668
2669 orig = x;
2670 break;
2671 }
2672
2673 case TLS_MODEL_LOCAL_EXEC:
2674 {
2675 rtx a0;
2676 rtx x;
2677
2678 a0 = m68k_call_m68k_read_tp ();
2679
2680 x = m68k_wrap_symbol (orig, RELOC_TLSLE, a0, NULL_RTX);
2681
2682 if (can_create_pseudo_p ())
2683 x = m68k_move_to_reg (x, orig, NULL_RTX);
2684
2685 orig = x;
2686 break;
2687 }
2688
2689 default:
2690 gcc_unreachable ();
2691 }
2692
2693 return orig;
2694 }
2695
2696 /* Return true if X is a TLS symbol. */
2697
2698 static bool
2699 m68k_tls_symbol_p (rtx x)
2700 {
2701 if (!TARGET_HAVE_TLS)
2702 return false;
2703
2704 if (GET_CODE (x) != SYMBOL_REF)
2705 return false;
2706
2707 return SYMBOL_REF_TLS_MODEL (x) != 0;
2708 }
2709
2710 /* If !LEGITIMATE_P, return true if X is a TLS symbol reference,
2711 though illegitimate one.
2712 If LEGITIMATE_P, return true if X is a legitimate TLS symbol reference. */
2713
2714 bool
2715 m68k_tls_reference_p (rtx x, bool legitimate_p)
2716 {
2717 if (!TARGET_HAVE_TLS)
2718 return false;
2719
2720 if (!legitimate_p)
2721 {
2722 subrtx_var_iterator::array_type array;
2723 FOR_EACH_SUBRTX_VAR (iter, array, x, ALL)
2724 {
2725 rtx x = *iter;
2726
2727 /* Note: this is not the same as m68k_tls_symbol_p. */
2728 if (GET_CODE (x) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (x) != 0)
2729 return true;
2730
2731 /* Don't recurse into legitimate TLS references. */
2732 if (m68k_tls_reference_p (x, true))
2733 iter.skip_subrtxes ();
2734 }
2735 return false;
2736 }
2737 else
2738 {
2739 enum m68k_reloc reloc = RELOC_GOT;
2740
2741 return (m68k_unwrap_symbol_1 (x, true, &reloc) != x
2742 && TLS_RELOC_P (reloc));
2743 }
2744 }
2745
2746 \f
2747
2748 #define USE_MOVQ(i) ((unsigned) ((i) + 128) <= 255)
2749
2750 /* Return the type of move that should be used for integer I. */
2751
2752 M68K_CONST_METHOD
2753 m68k_const_method (HOST_WIDE_INT i)
2754 {
2755 unsigned u;
2756
2757 if (USE_MOVQ (i))
2758 return MOVQ;
2759
2760 /* The ColdFire doesn't have byte or word operations. */
2761 /* FIXME: This may not be useful for the m68060 either. */
2762 if (!TARGET_COLDFIRE)
2763 {
2764 /* if -256 < N < 256 but N is not in range for a moveq
2765 N^ff will be, so use moveq #N^ff, dreg; not.b dreg. */
2766 if (USE_MOVQ (i ^ 0xff))
2767 return NOTB;
2768 /* Likewise, try with not.w */
2769 if (USE_MOVQ (i ^ 0xffff))
2770 return NOTW;
2771 /* This is the only value where neg.w is useful */
2772 if (i == -65408)
2773 return NEGW;
2774 }
2775
2776 /* Try also with swap. */
2777 u = i;
2778 if (USE_MOVQ ((u >> 16) | (u << 16)))
2779 return SWAP;
2780
2781 if (TARGET_ISAB)
2782 {
2783 /* Try using MVZ/MVS with an immediate value to load constants. */
2784 if (i >= 0 && i <= 65535)
2785 return MVZ;
2786 if (i >= -32768 && i <= 32767)
2787 return MVS;
2788 }
2789
2790 /* Otherwise, use move.l */
2791 return MOVL;
2792 }
2793
2794 /* Return the cost of moving constant I into a data register. */
2795
2796 static int
2797 const_int_cost (HOST_WIDE_INT i)
2798 {
2799 switch (m68k_const_method (i))
2800 {
2801 case MOVQ:
2802 /* Constants between -128 and 127 are cheap due to moveq. */
2803 return 0;
2804 case MVZ:
2805 case MVS:
2806 case NOTB:
2807 case NOTW:
2808 case NEGW:
2809 case SWAP:
2810 /* Constants easily generated by moveq + not.b/not.w/neg.w/swap. */
2811 return 1;
2812 case MOVL:
2813 return 2;
2814 default:
2815 gcc_unreachable ();
2816 }
2817 }
2818
2819 static bool
2820 m68k_rtx_costs (rtx x, machine_mode mode, int outer_code,
2821 int opno ATTRIBUTE_UNUSED,
2822 int *total, bool speed ATTRIBUTE_UNUSED)
2823 {
2824 int code = GET_CODE (x);
2825
2826 switch (code)
2827 {
2828 case CONST_INT:
2829 /* Constant zero is super cheap due to clr instruction. */
2830 if (x == const0_rtx)
2831 *total = 0;
2832 else
2833 *total = const_int_cost (INTVAL (x));
2834 return true;
2835
2836 case CONST:
2837 case LABEL_REF:
2838 case SYMBOL_REF:
2839 *total = 3;
2840 return true;
2841
2842 case CONST_DOUBLE:
2843 /* Make 0.0 cheaper than other floating constants to
2844 encourage creating tstsf and tstdf insns. */
2845 if (outer_code == COMPARE
2846 && (x == CONST0_RTX (SFmode) || x == CONST0_RTX (DFmode)))
2847 *total = 4;
2848 else
2849 *total = 5;
2850 return true;
2851
2852 /* These are vaguely right for a 68020. */
2853 /* The costs for long multiply have been adjusted to work properly
2854 in synth_mult on the 68020, relative to an average of the time
2855 for add and the time for shift, taking away a little more because
2856 sometimes move insns are needed. */
2857 /* div?.w is relatively cheaper on 68000 counted in COSTS_N_INSNS
2858 terms. */
2859 #define MULL_COST \
2860 (TUNE_68060 ? 2 \
2861 : TUNE_68040 ? 5 \
2862 : (TUNE_CFV2 && TUNE_EMAC) ? 3 \
2863 : (TUNE_CFV2 && TUNE_MAC) ? 4 \
2864 : TUNE_CFV2 ? 8 \
2865 : TARGET_COLDFIRE ? 3 : 13)
2866
2867 #define MULW_COST \
2868 (TUNE_68060 ? 2 \
2869 : TUNE_68040 ? 3 \
2870 : TUNE_68000_10 ? 5 \
2871 : (TUNE_CFV2 && TUNE_EMAC) ? 3 \
2872 : (TUNE_CFV2 && TUNE_MAC) ? 2 \
2873 : TUNE_CFV2 ? 8 \
2874 : TARGET_COLDFIRE ? 2 : 8)
2875
2876 #define DIVW_COST \
2877 (TARGET_CF_HWDIV ? 11 \
2878 : TUNE_68000_10 || TARGET_COLDFIRE ? 12 : 27)
2879
2880 case PLUS:
2881 /* An lea costs about three times as much as a simple add. */
2882 if (mode == SImode
2883 && GET_CODE (XEXP (x, 1)) == REG
2884 && GET_CODE (XEXP (x, 0)) == MULT
2885 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
2886 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2887 && (INTVAL (XEXP (XEXP (x, 0), 1)) == 2
2888 || INTVAL (XEXP (XEXP (x, 0), 1)) == 4
2889 || INTVAL (XEXP (XEXP (x, 0), 1)) == 8))
2890 {
2891 /* lea an@(dx:l:i),am */
2892 *total = COSTS_N_INSNS (TARGET_COLDFIRE ? 2 : 3);
2893 return true;
2894 }
2895 return false;
2896
2897 case ASHIFT:
2898 case ASHIFTRT:
2899 case LSHIFTRT:
2900 if (TUNE_68060)
2901 {
2902 *total = COSTS_N_INSNS(1);
2903 return true;
2904 }
2905 if (TUNE_68000_10)
2906 {
2907 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
2908 {
2909 if (INTVAL (XEXP (x, 1)) < 16)
2910 *total = COSTS_N_INSNS (2) + INTVAL (XEXP (x, 1)) / 2;
2911 else
2912 /* We're using clrw + swap for these cases. */
2913 *total = COSTS_N_INSNS (4) + (INTVAL (XEXP (x, 1)) - 16) / 2;
2914 }
2915 else
2916 *total = COSTS_N_INSNS (10); /* Worst case. */
2917 return true;
2918 }
2919 /* A shift by a big integer takes an extra instruction. */
2920 if (GET_CODE (XEXP (x, 1)) == CONST_INT
2921 && (INTVAL (XEXP (x, 1)) == 16))
2922 {
2923 *total = COSTS_N_INSNS (2); /* clrw;swap */
2924 return true;
2925 }
2926 if (GET_CODE (XEXP (x, 1)) == CONST_INT
2927 && !(INTVAL (XEXP (x, 1)) > 0
2928 && INTVAL (XEXP (x, 1)) <= 8))
2929 {
2930 *total = COSTS_N_INSNS (TARGET_COLDFIRE ? 1 : 3); /* lsr #i,dn */
2931 return true;
2932 }
2933 return false;
2934
2935 case MULT:
2936 if ((GET_CODE (XEXP (x, 0)) == ZERO_EXTEND
2937 || GET_CODE (XEXP (x, 0)) == SIGN_EXTEND)
2938 && mode == SImode)
2939 *total = COSTS_N_INSNS (MULW_COST);
2940 else if (mode == QImode || mode == HImode)
2941 *total = COSTS_N_INSNS (MULW_COST);
2942 else
2943 *total = COSTS_N_INSNS (MULL_COST);
2944 return true;
2945
2946 case DIV:
2947 case UDIV:
2948 case MOD:
2949 case UMOD:
2950 if (mode == QImode || mode == HImode)
2951 *total = COSTS_N_INSNS (DIVW_COST); /* div.w */
2952 else if (TARGET_CF_HWDIV)
2953 *total = COSTS_N_INSNS (18);
2954 else
2955 *total = COSTS_N_INSNS (43); /* div.l */
2956 return true;
2957
2958 case ZERO_EXTRACT:
2959 if (outer_code == COMPARE)
2960 *total = 0;
2961 return false;
2962
2963 default:
2964 return false;
2965 }
2966 }
2967
2968 /* Return an instruction to move CONST_INT OPERANDS[1] into data register
2969 OPERANDS[0]. */
2970
2971 static const char *
2972 output_move_const_into_data_reg (rtx *operands)
2973 {
2974 HOST_WIDE_INT i;
2975
2976 i = INTVAL (operands[1]);
2977 switch (m68k_const_method (i))
2978 {
2979 case MVZ:
2980 return "mvzw %1,%0";
2981 case MVS:
2982 return "mvsw %1,%0";
2983 case MOVQ:
2984 return "moveq %1,%0";
2985 case NOTB:
2986 CC_STATUS_INIT;
2987 operands[1] = GEN_INT (i ^ 0xff);
2988 return "moveq %1,%0\n\tnot%.b %0";
2989 case NOTW:
2990 CC_STATUS_INIT;
2991 operands[1] = GEN_INT (i ^ 0xffff);
2992 return "moveq %1,%0\n\tnot%.w %0";
2993 case NEGW:
2994 CC_STATUS_INIT;
2995 return "moveq #-128,%0\n\tneg%.w %0";
2996 case SWAP:
2997 {
2998 unsigned u = i;
2999
3000 operands[1] = GEN_INT ((u << 16) | (u >> 16));
3001 return "moveq %1,%0\n\tswap %0";
3002 }
3003 case MOVL:
3004 return "move%.l %1,%0";
3005 default:
3006 gcc_unreachable ();
3007 }
3008 }
3009
3010 /* Return true if I can be handled by ISA B's mov3q instruction. */
3011
3012 bool
3013 valid_mov3q_const (HOST_WIDE_INT i)
3014 {
3015 return TARGET_ISAB && (i == -1 || IN_RANGE (i, 1, 7));
3016 }
3017
3018 /* Return an instruction to move CONST_INT OPERANDS[1] into OPERANDS[0].
3019 I is the value of OPERANDS[1]. */
3020
3021 static const char *
3022 output_move_simode_const (rtx *operands)
3023 {
3024 rtx dest;
3025 HOST_WIDE_INT src;
3026
3027 dest = operands[0];
3028 src = INTVAL (operands[1]);
3029 if (src == 0
3030 && (DATA_REG_P (dest) || MEM_P (dest))
3031 /* clr insns on 68000 read before writing. */
3032 && ((TARGET_68010 || TARGET_COLDFIRE)
3033 || !(MEM_P (dest) && MEM_VOLATILE_P (dest))))
3034 return "clr%.l %0";
3035 else if (GET_MODE (dest) == SImode && valid_mov3q_const (src))
3036 return "mov3q%.l %1,%0";
3037 else if (src == 0 && ADDRESS_REG_P (dest))
3038 return "sub%.l %0,%0";
3039 else if (DATA_REG_P (dest))
3040 return output_move_const_into_data_reg (operands);
3041 else if (ADDRESS_REG_P (dest) && IN_RANGE (src, -0x8000, 0x7fff))
3042 {
3043 if (valid_mov3q_const (src))
3044 return "mov3q%.l %1,%0";
3045 return "move%.w %1,%0";
3046 }
3047 else if (MEM_P (dest)
3048 && GET_CODE (XEXP (dest, 0)) == PRE_DEC
3049 && REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
3050 && IN_RANGE (src, -0x8000, 0x7fff))
3051 {
3052 if (valid_mov3q_const (src))
3053 return "mov3q%.l %1,%-";
3054 return "pea %a1";
3055 }
3056 return "move%.l %1,%0";
3057 }
3058
3059 const char *
3060 output_move_simode (rtx *operands)
3061 {
3062 if (GET_CODE (operands[1]) == CONST_INT)
3063 return output_move_simode_const (operands);
3064 else if ((GET_CODE (operands[1]) == SYMBOL_REF
3065 || GET_CODE (operands[1]) == CONST)
3066 && push_operand (operands[0], SImode))
3067 return "pea %a1";
3068 else if ((GET_CODE (operands[1]) == SYMBOL_REF
3069 || GET_CODE (operands[1]) == CONST)
3070 && ADDRESS_REG_P (operands[0]))
3071 return "lea %a1,%0";
3072 return "move%.l %1,%0";
3073 }
3074
3075 const char *
3076 output_move_himode (rtx *operands)
3077 {
3078 if (GET_CODE (operands[1]) == CONST_INT)
3079 {
3080 if (operands[1] == const0_rtx
3081 && (DATA_REG_P (operands[0])
3082 || GET_CODE (operands[0]) == MEM)
3083 /* clr insns on 68000 read before writing. */
3084 && ((TARGET_68010 || TARGET_COLDFIRE)
3085 || !(GET_CODE (operands[0]) == MEM
3086 && MEM_VOLATILE_P (operands[0]))))
3087 return "clr%.w %0";
3088 else if (operands[1] == const0_rtx
3089 && ADDRESS_REG_P (operands[0]))
3090 return "sub%.l %0,%0";
3091 else if (DATA_REG_P (operands[0])
3092 && INTVAL (operands[1]) < 128
3093 && INTVAL (operands[1]) >= -128)
3094 return "moveq %1,%0";
3095 else if (INTVAL (operands[1]) < 0x8000
3096 && INTVAL (operands[1]) >= -0x8000)
3097 return "move%.w %1,%0";
3098 }
3099 else if (CONSTANT_P (operands[1]))
3100 return "move%.l %1,%0";
3101 return "move%.w %1,%0";
3102 }
3103
3104 const char *
3105 output_move_qimode (rtx *operands)
3106 {
3107 /* 68k family always modifies the stack pointer by at least 2, even for
3108 byte pushes. The 5200 (ColdFire) does not do this. */
3109
3110 /* This case is generated by pushqi1 pattern now. */
3111 gcc_assert (!(GET_CODE (operands[0]) == MEM
3112 && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC
3113 && XEXP (XEXP (operands[0], 0), 0) == stack_pointer_rtx
3114 && ! ADDRESS_REG_P (operands[1])
3115 && ! TARGET_COLDFIRE));
3116
3117 /* clr and st insns on 68000 read before writing. */
3118 if (!ADDRESS_REG_P (operands[0])
3119 && ((TARGET_68010 || TARGET_COLDFIRE)
3120 || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
3121 {
3122 if (operands[1] == const0_rtx)
3123 return "clr%.b %0";
3124 if ((!TARGET_COLDFIRE || DATA_REG_P (operands[0]))
3125 && GET_CODE (operands[1]) == CONST_INT
3126 && (INTVAL (operands[1]) & 255) == 255)
3127 {
3128 CC_STATUS_INIT;
3129 return "st %0";
3130 }
3131 }
3132 if (GET_CODE (operands[1]) == CONST_INT
3133 && DATA_REG_P (operands[0])
3134 && INTVAL (operands[1]) < 128
3135 && INTVAL (operands[1]) >= -128)
3136 return "moveq %1,%0";
3137 if (operands[1] == const0_rtx && ADDRESS_REG_P (operands[0]))
3138 return "sub%.l %0,%0";
3139 if (GET_CODE (operands[1]) != CONST_INT && CONSTANT_P (operands[1]))
3140 return "move%.l %1,%0";
3141 /* 68k family (including the 5200 ColdFire) does not support byte moves to
3142 from address registers. */
3143 if (ADDRESS_REG_P (operands[0]) || ADDRESS_REG_P (operands[1]))
3144 return "move%.w %1,%0";
3145 return "move%.b %1,%0";
3146 }
3147
3148 const char *
3149 output_move_stricthi (rtx *operands)
3150 {
3151 if (operands[1] == const0_rtx
3152 /* clr insns on 68000 read before writing. */
3153 && ((TARGET_68010 || TARGET_COLDFIRE)
3154 || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
3155 return "clr%.w %0";
3156 return "move%.w %1,%0";
3157 }
3158
3159 const char *
3160 output_move_strictqi (rtx *operands)
3161 {
3162 if (operands[1] == const0_rtx
3163 /* clr insns on 68000 read before writing. */
3164 && ((TARGET_68010 || TARGET_COLDFIRE)
3165 || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
3166 return "clr%.b %0";
3167 return "move%.b %1,%0";
3168 }
3169
3170 /* Return the best assembler insn template
3171 for moving operands[1] into operands[0] as a fullword. */
3172
3173 static const char *
3174 singlemove_string (rtx *operands)
3175 {
3176 if (GET_CODE (operands[1]) == CONST_INT)
3177 return output_move_simode_const (operands);
3178 return "move%.l %1,%0";
3179 }
3180
3181
3182 /* Output assembler or rtl code to perform a doubleword move insn
3183 with operands OPERANDS.
3184 Pointers to 3 helper functions should be specified:
3185 HANDLE_REG_ADJUST to adjust a register by a small value,
3186 HANDLE_COMPADR to compute an address and
3187 HANDLE_MOVSI to move 4 bytes. */
3188
3189 static void
3190 handle_move_double (rtx operands[2],
3191 void (*handle_reg_adjust) (rtx, int),
3192 void (*handle_compadr) (rtx [2]),
3193 void (*handle_movsi) (rtx [2]))
3194 {
3195 enum
3196 {
3197 REGOP, OFFSOP, MEMOP, PUSHOP, POPOP, CNSTOP, RNDOP
3198 } optype0, optype1;
3199 rtx latehalf[2];
3200 rtx middlehalf[2];
3201 rtx xops[2];
3202 rtx addreg0 = 0, addreg1 = 0;
3203 int dest_overlapped_low = 0;
3204 int size = GET_MODE_SIZE (GET_MODE (operands[0]));
3205
3206 middlehalf[0] = 0;
3207 middlehalf[1] = 0;
3208
3209 /* First classify both operands. */
3210
3211 if (REG_P (operands[0]))
3212 optype0 = REGOP;
3213 else if (offsettable_memref_p (operands[0]))
3214 optype0 = OFFSOP;
3215 else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
3216 optype0 = POPOP;
3217 else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
3218 optype0 = PUSHOP;
3219 else if (GET_CODE (operands[0]) == MEM)
3220 optype0 = MEMOP;
3221 else
3222 optype0 = RNDOP;
3223
3224 if (REG_P (operands[1]))
3225 optype1 = REGOP;
3226 else if (CONSTANT_P (operands[1]))
3227 optype1 = CNSTOP;
3228 else if (offsettable_memref_p (operands[1]))
3229 optype1 = OFFSOP;
3230 else if (GET_CODE (XEXP (operands[1], 0)) == POST_INC)
3231 optype1 = POPOP;
3232 else if (GET_CODE (XEXP (operands[1], 0)) == PRE_DEC)
3233 optype1 = PUSHOP;
3234 else if (GET_CODE (operands[1]) == MEM)
3235 optype1 = MEMOP;
3236 else
3237 optype1 = RNDOP;
3238
3239 /* Check for the cases that the operand constraints are not supposed
3240 to allow to happen. Generating code for these cases is
3241 painful. */
3242 gcc_assert (optype0 != RNDOP && optype1 != RNDOP);
3243
3244 /* If one operand is decrementing and one is incrementing
3245 decrement the former register explicitly
3246 and change that operand into ordinary indexing. */
3247
3248 if (optype0 == PUSHOP && optype1 == POPOP)
3249 {
3250 operands[0] = XEXP (XEXP (operands[0], 0), 0);
3251
3252 handle_reg_adjust (operands[0], -size);
3253
3254 if (GET_MODE (operands[1]) == XFmode)
3255 operands[0] = gen_rtx_MEM (XFmode, operands[0]);
3256 else if (GET_MODE (operands[0]) == DFmode)
3257 operands[0] = gen_rtx_MEM (DFmode, operands[0]);
3258 else
3259 operands[0] = gen_rtx_MEM (DImode, operands[0]);
3260 optype0 = OFFSOP;
3261 }
3262 if (optype0 == POPOP && optype1 == PUSHOP)
3263 {
3264 operands[1] = XEXP (XEXP (operands[1], 0), 0);
3265
3266 handle_reg_adjust (operands[1], -size);
3267
3268 if (GET_MODE (operands[1]) == XFmode)
3269 operands[1] = gen_rtx_MEM (XFmode, operands[1]);
3270 else if (GET_MODE (operands[1]) == DFmode)
3271 operands[1] = gen_rtx_MEM (DFmode, operands[1]);
3272 else
3273 operands[1] = gen_rtx_MEM (DImode, operands[1]);
3274 optype1 = OFFSOP;
3275 }
3276
3277 /* If an operand is an unoffsettable memory ref, find a register
3278 we can increment temporarily to make it refer to the second word. */
3279
3280 if (optype0 == MEMOP)
3281 addreg0 = find_addr_reg (XEXP (operands[0], 0));
3282
3283 if (optype1 == MEMOP)
3284 addreg1 = find_addr_reg (XEXP (operands[1], 0));
3285
3286 /* Ok, we can do one word at a time.
3287 Normally we do the low-numbered word first,
3288 but if either operand is autodecrementing then we
3289 do the high-numbered word first.
3290
3291 In either case, set up in LATEHALF the operands to use
3292 for the high-numbered word and in some cases alter the
3293 operands in OPERANDS to be suitable for the low-numbered word. */
3294
3295 if (size == 12)
3296 {
3297 if (optype0 == REGOP)
3298 {
3299 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 2);
3300 middlehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
3301 }
3302 else if (optype0 == OFFSOP)
3303 {
3304 middlehalf[0] = adjust_address (operands[0], SImode, 4);
3305 latehalf[0] = adjust_address (operands[0], SImode, size - 4);
3306 }
3307 else
3308 {
3309 middlehalf[0] = adjust_address (operands[0], SImode, 0);
3310 latehalf[0] = adjust_address (operands[0], SImode, 0);
3311 }
3312
3313 if (optype1 == REGOP)
3314 {
3315 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 2);
3316 middlehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
3317 }
3318 else if (optype1 == OFFSOP)
3319 {
3320 middlehalf[1] = adjust_address (operands[1], SImode, 4);
3321 latehalf[1] = adjust_address (operands[1], SImode, size - 4);
3322 }
3323 else if (optype1 == CNSTOP)
3324 {
3325 if (GET_CODE (operands[1]) == CONST_DOUBLE)
3326 {
3327 long l[3];
3328
3329 REAL_VALUE_TO_TARGET_LONG_DOUBLE
3330 (*CONST_DOUBLE_REAL_VALUE (operands[1]), l);
3331 operands[1] = GEN_INT (l[0]);
3332 middlehalf[1] = GEN_INT (l[1]);
3333 latehalf[1] = GEN_INT (l[2]);
3334 }
3335 else
3336 {
3337 /* No non-CONST_DOUBLE constant should ever appear
3338 here. */
3339 gcc_assert (!CONSTANT_P (operands[1]));
3340 }
3341 }
3342 else
3343 {
3344 middlehalf[1] = adjust_address (operands[1], SImode, 0);
3345 latehalf[1] = adjust_address (operands[1], SImode, 0);
3346 }
3347 }
3348 else
3349 /* size is not 12: */
3350 {
3351 if (optype0 == REGOP)
3352 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
3353 else if (optype0 == OFFSOP)
3354 latehalf[0] = adjust_address (operands[0], SImode, size - 4);
3355 else
3356 latehalf[0] = adjust_address (operands[0], SImode, 0);
3357
3358 if (optype1 == REGOP)
3359 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
3360 else if (optype1 == OFFSOP)
3361 latehalf[1] = adjust_address (operands[1], SImode, size - 4);
3362 else if (optype1 == CNSTOP)
3363 split_double (operands[1], &operands[1], &latehalf[1]);
3364 else
3365 latehalf[1] = adjust_address (operands[1], SImode, 0);
3366 }
3367
3368 /* If insn is effectively movd N(REG),-(REG) then we will do the high
3369 word first. We should use the adjusted operand 1 (which is N+4(REG))
3370 for the low word as well, to compensate for the first decrement of
3371 REG. */
3372 if (optype0 == PUSHOP
3373 && reg_overlap_mentioned_p (XEXP (XEXP (operands[0], 0), 0), operands[1]))
3374 operands[1] = middlehalf[1] = latehalf[1];
3375
3376 /* For (set (reg:DI N) (mem:DI ... (reg:SI N) ...)),
3377 if the upper part of reg N does not appear in the MEM, arrange to
3378 emit the move late-half first. Otherwise, compute the MEM address
3379 into the upper part of N and use that as a pointer to the memory
3380 operand. */
3381 if (optype0 == REGOP
3382 && (optype1 == OFFSOP || optype1 == MEMOP))
3383 {
3384 rtx testlow = gen_rtx_REG (SImode, REGNO (operands[0]));
3385
3386 if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))
3387 && reg_overlap_mentioned_p (latehalf[0], XEXP (operands[1], 0)))
3388 {
3389 /* If both halves of dest are used in the src memory address,
3390 compute the address into latehalf of dest.
3391 Note that this can't happen if the dest is two data regs. */
3392 compadr:
3393 xops[0] = latehalf[0];
3394 xops[1] = XEXP (operands[1], 0);
3395
3396 handle_compadr (xops);
3397 if (GET_MODE (operands[1]) == XFmode)
3398 {
3399 operands[1] = gen_rtx_MEM (XFmode, latehalf[0]);
3400 middlehalf[1] = adjust_address (operands[1], DImode, size - 8);
3401 latehalf[1] = adjust_address (operands[1], DImode, size - 4);
3402 }
3403 else
3404 {
3405 operands[1] = gen_rtx_MEM (DImode, latehalf[0]);
3406 latehalf[1] = adjust_address (operands[1], DImode, size - 4);
3407 }
3408 }
3409 else if (size == 12
3410 && reg_overlap_mentioned_p (middlehalf[0],
3411 XEXP (operands[1], 0)))
3412 {
3413 /* Check for two regs used by both source and dest.
3414 Note that this can't happen if the dest is all data regs.
3415 It can happen if the dest is d6, d7, a0.
3416 But in that case, latehalf is an addr reg, so
3417 the code at compadr does ok. */
3418
3419 if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))
3420 || reg_overlap_mentioned_p (latehalf[0], XEXP (operands[1], 0)))
3421 goto compadr;
3422
3423 /* JRV says this can't happen: */
3424 gcc_assert (!addreg0 && !addreg1);
3425
3426 /* Only the middle reg conflicts; simply put it last. */
3427 handle_movsi (operands);
3428 handle_movsi (latehalf);
3429 handle_movsi (middlehalf);
3430
3431 return;
3432 }
3433 else if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0)))
3434 /* If the low half of dest is mentioned in the source memory
3435 address, the arrange to emit the move late half first. */
3436 dest_overlapped_low = 1;
3437 }
3438
3439 /* If one or both operands autodecrementing,
3440 do the two words, high-numbered first. */
3441
3442 /* Likewise, the first move would clobber the source of the second one,
3443 do them in the other order. This happens only for registers;
3444 such overlap can't happen in memory unless the user explicitly
3445 sets it up, and that is an undefined circumstance. */
3446
3447 if (optype0 == PUSHOP || optype1 == PUSHOP
3448 || (optype0 == REGOP && optype1 == REGOP
3449 && ((middlehalf[1] && REGNO (operands[0]) == REGNO (middlehalf[1]))
3450 || REGNO (operands[0]) == REGNO (latehalf[1])))
3451 || dest_overlapped_low)
3452 {
3453 /* Make any unoffsettable addresses point at high-numbered word. */
3454 if (addreg0)
3455 handle_reg_adjust (addreg0, size - 4);
3456 if (addreg1)
3457 handle_reg_adjust (addreg1, size - 4);
3458
3459 /* Do that word. */
3460 handle_movsi (latehalf);
3461
3462 /* Undo the adds we just did. */
3463 if (addreg0)
3464 handle_reg_adjust (addreg0, -4);
3465 if (addreg1)
3466 handle_reg_adjust (addreg1, -4);
3467
3468 if (size == 12)
3469 {
3470 handle_movsi (middlehalf);
3471
3472 if (addreg0)
3473 handle_reg_adjust (addreg0, -4);
3474 if (addreg1)
3475 handle_reg_adjust (addreg1, -4);
3476 }
3477
3478 /* Do low-numbered word. */
3479
3480 handle_movsi (operands);
3481 return;
3482 }
3483
3484 /* Normal case: do the two words, low-numbered first. */
3485
3486 m68k_final_prescan_insn (NULL, operands, 2);
3487 handle_movsi (operands);
3488
3489 /* Do the middle one of the three words for long double */
3490 if (size == 12)
3491 {
3492 if (addreg0)
3493 handle_reg_adjust (addreg0, 4);
3494 if (addreg1)
3495 handle_reg_adjust (addreg1, 4);
3496
3497 m68k_final_prescan_insn (NULL, middlehalf, 2);
3498 handle_movsi (middlehalf);
3499 }
3500
3501 /* Make any unoffsettable addresses point at high-numbered word. */
3502 if (addreg0)
3503 handle_reg_adjust (addreg0, 4);
3504 if (addreg1)
3505 handle_reg_adjust (addreg1, 4);
3506
3507 /* Do that word. */
3508 m68k_final_prescan_insn (NULL, latehalf, 2);
3509 handle_movsi (latehalf);
3510
3511 /* Undo the adds we just did. */
3512 if (addreg0)
3513 handle_reg_adjust (addreg0, -(size - 4));
3514 if (addreg1)
3515 handle_reg_adjust (addreg1, -(size - 4));
3516
3517 return;
3518 }
3519
3520 /* Output assembler code to adjust REG by N. */
3521 static void
3522 output_reg_adjust (rtx reg, int n)
3523 {
3524 const char *s;
3525
3526 gcc_assert (GET_MODE (reg) == SImode
3527 && -12 <= n && n != 0 && n <= 12);
3528
3529 switch (n)
3530 {
3531 case 12:
3532 s = "add%.l #12,%0";
3533 break;
3534
3535 case 8:
3536 s = "addq%.l #8,%0";
3537 break;
3538
3539 case 4:
3540 s = "addq%.l #4,%0";
3541 break;
3542
3543 case -12:
3544 s = "sub%.l #12,%0";
3545 break;
3546
3547 case -8:
3548 s = "subq%.l #8,%0";
3549 break;
3550
3551 case -4:
3552 s = "subq%.l #4,%0";
3553 break;
3554
3555 default:
3556 gcc_unreachable ();
3557 s = NULL;
3558 }
3559
3560 output_asm_insn (s, &reg);
3561 }
3562
3563 /* Emit rtl code to adjust REG by N. */
3564 static void
3565 emit_reg_adjust (rtx reg1, int n)
3566 {
3567 rtx reg2;
3568
3569 gcc_assert (GET_MODE (reg1) == SImode
3570 && -12 <= n && n != 0 && n <= 12);
3571
3572 reg1 = copy_rtx (reg1);
3573 reg2 = copy_rtx (reg1);
3574
3575 if (n < 0)
3576 emit_insn (gen_subsi3 (reg1, reg2, GEN_INT (-n)));
3577 else if (n > 0)
3578 emit_insn (gen_addsi3 (reg1, reg2, GEN_INT (n)));
3579 else
3580 gcc_unreachable ();
3581 }
3582
3583 /* Output assembler to load address OPERANDS[0] to register OPERANDS[1]. */
3584 static void
3585 output_compadr (rtx operands[2])
3586 {
3587 output_asm_insn ("lea %a1,%0", operands);
3588 }
3589
3590 /* Output the best assembler insn for moving operands[1] into operands[0]
3591 as a fullword. */
3592 static void
3593 output_movsi (rtx operands[2])
3594 {
3595 output_asm_insn (singlemove_string (operands), operands);
3596 }
3597
3598 /* Copy OP and change its mode to MODE. */
3599 static rtx
3600 copy_operand (rtx op, machine_mode mode)
3601 {
3602 /* ??? This looks really ugly. There must be a better way
3603 to change a mode on the operand. */
3604 if (GET_MODE (op) != VOIDmode)
3605 {
3606 if (REG_P (op))
3607 op = gen_rtx_REG (mode, REGNO (op));
3608 else
3609 {
3610 op = copy_rtx (op);
3611 PUT_MODE (op, mode);
3612 }
3613 }
3614
3615 return op;
3616 }
3617
3618 /* Emit rtl code for moving operands[1] into operands[0] as a fullword. */
3619 static void
3620 emit_movsi (rtx operands[2])
3621 {
3622 operands[0] = copy_operand (operands[0], SImode);
3623 operands[1] = copy_operand (operands[1], SImode);
3624
3625 emit_insn (gen_movsi (operands[0], operands[1]));
3626 }
3627
3628 /* Output assembler code to perform a doubleword move insn
3629 with operands OPERANDS. */
3630 const char *
3631 output_move_double (rtx *operands)
3632 {
3633 handle_move_double (operands,
3634 output_reg_adjust, output_compadr, output_movsi);
3635
3636 return "";
3637 }
3638
3639 /* Output rtl code to perform a doubleword move insn
3640 with operands OPERANDS. */
3641 void
3642 m68k_emit_move_double (rtx operands[2])
3643 {
3644 handle_move_double (operands, emit_reg_adjust, emit_movsi, emit_movsi);
3645 }
3646
3647 /* Ensure mode of ORIG, a REG rtx, is MODE. Returns either ORIG or a
3648 new rtx with the correct mode. */
3649
3650 static rtx
3651 force_mode (machine_mode mode, rtx orig)
3652 {
3653 if (mode == GET_MODE (orig))
3654 return orig;
3655
3656 if (REGNO (orig) >= FIRST_PSEUDO_REGISTER)
3657 abort ();
3658
3659 return gen_rtx_REG (mode, REGNO (orig));
3660 }
3661
3662 static int
3663 fp_reg_operand (rtx op, machine_mode mode ATTRIBUTE_UNUSED)
3664 {
3665 return reg_renumber && FP_REG_P (op);
3666 }
3667
3668 /* Emit insns to move operands[1] into operands[0].
3669
3670 Return 1 if we have written out everything that needs to be done to
3671 do the move. Otherwise, return 0 and the caller will emit the move
3672 normally.
3673
3674 Note SCRATCH_REG may not be in the proper mode depending on how it
3675 will be used. This routine is responsible for creating a new copy
3676 of SCRATCH_REG in the proper mode. */
3677
3678 int
3679 emit_move_sequence (rtx *operands, machine_mode mode, rtx scratch_reg)
3680 {
3681 register rtx operand0 = operands[0];
3682 register rtx operand1 = operands[1];
3683 register rtx tem;
3684
3685 if (scratch_reg
3686 && reload_in_progress && GET_CODE (operand0) == REG
3687 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
3688 operand0 = reg_equiv_mem (REGNO (operand0));
3689 else if (scratch_reg
3690 && reload_in_progress && GET_CODE (operand0) == SUBREG
3691 && GET_CODE (SUBREG_REG (operand0)) == REG
3692 && REGNO (SUBREG_REG (operand0)) >= FIRST_PSEUDO_REGISTER)
3693 {
3694 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
3695 the code which tracks sets/uses for delete_output_reload. */
3696 rtx temp = gen_rtx_SUBREG (GET_MODE (operand0),
3697 reg_equiv_mem (REGNO (SUBREG_REG (operand0))),
3698 SUBREG_BYTE (operand0));
3699 operand0 = alter_subreg (&temp, true);
3700 }
3701
3702 if (scratch_reg
3703 && reload_in_progress && GET_CODE (operand1) == REG
3704 && REGNO (operand1) >= FIRST_PSEUDO_REGISTER)
3705 operand1 = reg_equiv_mem (REGNO (operand1));
3706 else if (scratch_reg
3707 && reload_in_progress && GET_CODE (operand1) == SUBREG
3708 && GET_CODE (SUBREG_REG (operand1)) == REG
3709 && REGNO (SUBREG_REG (operand1)) >= FIRST_PSEUDO_REGISTER)
3710 {
3711 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
3712 the code which tracks sets/uses for delete_output_reload. */
3713 rtx temp = gen_rtx_SUBREG (GET_MODE (operand1),
3714 reg_equiv_mem (REGNO (SUBREG_REG (operand1))),
3715 SUBREG_BYTE (operand1));
3716 operand1 = alter_subreg (&temp, true);
3717 }
3718
3719 if (scratch_reg && reload_in_progress && GET_CODE (operand0) == MEM
3720 && ((tem = find_replacement (&XEXP (operand0, 0)))
3721 != XEXP (operand0, 0)))
3722 operand0 = gen_rtx_MEM (GET_MODE (operand0), tem);
3723 if (scratch_reg && reload_in_progress && GET_CODE (operand1) == MEM
3724 && ((tem = find_replacement (&XEXP (operand1, 0)))
3725 != XEXP (operand1, 0)))
3726 operand1 = gen_rtx_MEM (GET_MODE (operand1), tem);
3727
3728 /* Handle secondary reloads for loads/stores of FP registers where
3729 the address is symbolic by using the scratch register */
3730 if (fp_reg_operand (operand0, mode)
3731 && ((GET_CODE (operand1) == MEM
3732 && ! memory_address_p (DFmode, XEXP (operand1, 0)))
3733 || ((GET_CODE (operand1) == SUBREG
3734 && GET_CODE (XEXP (operand1, 0)) == MEM
3735 && !memory_address_p (DFmode, XEXP (XEXP (operand1, 0), 0)))))
3736 && scratch_reg)
3737 {
3738 if (GET_CODE (operand1) == SUBREG)
3739 operand1 = XEXP (operand1, 0);
3740
3741 /* SCRATCH_REG will hold an address. We want
3742 it in SImode regardless of what mode it was originally given
3743 to us. */
3744 scratch_reg = force_mode (SImode, scratch_reg);
3745
3746 /* D might not fit in 14 bits either; for such cases load D into
3747 scratch reg. */
3748 if (!memory_address_p (Pmode, XEXP (operand1, 0)))
3749 {
3750 emit_move_insn (scratch_reg, XEXP (XEXP (operand1, 0), 1));
3751 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand1, 0)),
3752 Pmode,
3753 XEXP (XEXP (operand1, 0), 0),
3754 scratch_reg));
3755 }
3756 else
3757 emit_move_insn (scratch_reg, XEXP (operand1, 0));
3758 emit_insn (gen_rtx_SET (operand0, gen_rtx_MEM (mode, scratch_reg)));
3759 return 1;
3760 }
3761 else if (fp_reg_operand (operand1, mode)
3762 && ((GET_CODE (operand0) == MEM
3763 && ! memory_address_p (DFmode, XEXP (operand0, 0)))
3764 || ((GET_CODE (operand0) == SUBREG)
3765 && GET_CODE (XEXP (operand0, 0)) == MEM
3766 && !memory_address_p (DFmode, XEXP (XEXP (operand0, 0), 0))))
3767 && scratch_reg)
3768 {
3769 if (GET_CODE (operand0) == SUBREG)
3770 operand0 = XEXP (operand0, 0);
3771
3772 /* SCRATCH_REG will hold an address and maybe the actual data. We want
3773 it in SIMODE regardless of what mode it was originally given
3774 to us. */
3775 scratch_reg = force_mode (SImode, scratch_reg);
3776
3777 /* D might not fit in 14 bits either; for such cases load D into
3778 scratch reg. */
3779 if (!memory_address_p (Pmode, XEXP (operand0, 0)))
3780 {
3781 emit_move_insn (scratch_reg, XEXP (XEXP (operand0, 0), 1));
3782 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand0,
3783 0)),
3784 Pmode,
3785 XEXP (XEXP (operand0, 0),
3786 0),
3787 scratch_reg));
3788 }
3789 else
3790 emit_move_insn (scratch_reg, XEXP (operand0, 0));
3791 emit_insn (gen_rtx_SET (gen_rtx_MEM (mode, scratch_reg), operand1));
3792 return 1;
3793 }
3794 /* Handle secondary reloads for loads of FP registers from constant
3795 expressions by forcing the constant into memory.
3796
3797 use scratch_reg to hold the address of the memory location.
3798
3799 The proper fix is to change PREFERRED_RELOAD_CLASS to return
3800 NO_REGS when presented with a const_int and an register class
3801 containing only FP registers. Doing so unfortunately creates
3802 more problems than it solves. Fix this for 2.5. */
3803 else if (fp_reg_operand (operand0, mode)
3804 && CONSTANT_P (operand1)
3805 && scratch_reg)
3806 {
3807 rtx xoperands[2];
3808
3809 /* SCRATCH_REG will hold an address and maybe the actual data. We want
3810 it in SIMODE regardless of what mode it was originally given
3811 to us. */
3812 scratch_reg = force_mode (SImode, scratch_reg);
3813
3814 /* Force the constant into memory and put the address of the
3815 memory location into scratch_reg. */
3816 xoperands[0] = scratch_reg;
3817 xoperands[1] = XEXP (force_const_mem (mode, operand1), 0);
3818 emit_insn (gen_rtx_SET (scratch_reg, xoperands[1]));
3819
3820 /* Now load the destination register. */
3821 emit_insn (gen_rtx_SET (operand0, gen_rtx_MEM (mode, scratch_reg)));
3822 return 1;
3823 }
3824
3825 /* Now have insn-emit do whatever it normally does. */
3826 return 0;
3827 }
3828
3829 /* Split one or more DImode RTL references into pairs of SImode
3830 references. The RTL can be REG, offsettable MEM, integer constant, or
3831 CONST_DOUBLE. "operands" is a pointer to an array of DImode RTL to
3832 split and "num" is its length. lo_half and hi_half are output arrays
3833 that parallel "operands". */
3834
3835 void
3836 split_di (rtx operands[], int num, rtx lo_half[], rtx hi_half[])
3837 {
3838 while (num--)
3839 {
3840 rtx op = operands[num];
3841
3842 /* simplify_subreg refuses to split volatile memory addresses,
3843 but we still have to handle it. */
3844 if (GET_CODE (op) == MEM)
3845 {
3846 lo_half[num] = adjust_address (op, SImode, 4);
3847 hi_half[num] = adjust_address (op, SImode, 0);
3848 }
3849 else
3850 {
3851 lo_half[num] = simplify_gen_subreg (SImode, op,
3852 GET_MODE (op) == VOIDmode
3853 ? DImode : GET_MODE (op), 4);
3854 hi_half[num] = simplify_gen_subreg (SImode, op,
3855 GET_MODE (op) == VOIDmode
3856 ? DImode : GET_MODE (op), 0);
3857 }
3858 }
3859 }
3860
3861 /* Split X into a base and a constant offset, storing them in *BASE
3862 and *OFFSET respectively. */
3863
3864 static void
3865 m68k_split_offset (rtx x, rtx *base, HOST_WIDE_INT *offset)
3866 {
3867 *offset = 0;
3868 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3869 {
3870 *offset += INTVAL (XEXP (x, 1));
3871 x = XEXP (x, 0);
3872 }
3873 *base = x;
3874 }
3875
3876 /* Return true if PATTERN is a PARALLEL suitable for a movem or fmovem
3877 instruction. STORE_P says whether the move is a load or store.
3878
3879 If the instruction uses post-increment or pre-decrement addressing,
3880 AUTOMOD_BASE is the base register and AUTOMOD_OFFSET is the total
3881 adjustment. This adjustment will be made by the first element of
3882 PARALLEL, with the loads or stores starting at element 1. If the
3883 instruction does not use post-increment or pre-decrement addressing,
3884 AUTOMOD_BASE is null, AUTOMOD_OFFSET is 0, and the loads or stores
3885 start at element 0. */
3886
3887 bool
3888 m68k_movem_pattern_p (rtx pattern, rtx automod_base,
3889 HOST_WIDE_INT automod_offset, bool store_p)
3890 {
3891 rtx base, mem_base, set, mem, reg, last_reg;
3892 HOST_WIDE_INT offset, mem_offset;
3893 int i, first, len;
3894 enum reg_class rclass;
3895
3896 len = XVECLEN (pattern, 0);
3897 first = (automod_base != NULL);
3898
3899 if (automod_base)
3900 {
3901 /* Stores must be pre-decrement and loads must be post-increment. */
3902 if (store_p != (automod_offset < 0))
3903 return false;
3904
3905 /* Work out the base and offset for lowest memory location. */
3906 base = automod_base;
3907 offset = (automod_offset < 0 ? automod_offset : 0);
3908 }
3909 else
3910 {
3911 /* Allow any valid base and offset in the first access. */
3912 base = NULL;
3913 offset = 0;
3914 }
3915
3916 last_reg = NULL;
3917 rclass = NO_REGS;
3918 for (i = first; i < len; i++)
3919 {
3920 /* We need a plain SET. */
3921 set = XVECEXP (pattern, 0, i);
3922 if (GET_CODE (set) != SET)
3923 return false;
3924
3925 /* Check that we have a memory location... */
3926 mem = XEXP (set, !store_p);
3927 if (!MEM_P (mem) || !memory_operand (mem, VOIDmode))
3928 return false;
3929
3930 /* ...with the right address. */
3931 if (base == NULL)
3932 {
3933 m68k_split_offset (XEXP (mem, 0), &base, &offset);
3934 /* The ColdFire instruction only allows (An) and (d16,An) modes.
3935 There are no mode restrictions for 680x0 besides the
3936 automodification rules enforced above. */
3937 if (TARGET_COLDFIRE
3938 && !m68k_legitimate_base_reg_p (base, reload_completed))
3939 return false;
3940 }
3941 else
3942 {
3943 m68k_split_offset (XEXP (mem, 0), &mem_base, &mem_offset);
3944 if (!rtx_equal_p (base, mem_base) || offset != mem_offset)
3945 return false;
3946 }
3947
3948 /* Check that we have a register of the required mode and class. */
3949 reg = XEXP (set, store_p);
3950 if (!REG_P (reg)
3951 || !HARD_REGISTER_P (reg)
3952 || GET_MODE (reg) != reg_raw_mode[REGNO (reg)])
3953 return false;
3954
3955 if (last_reg)
3956 {
3957 /* The register must belong to RCLASS and have a higher number
3958 than the register in the previous SET. */
3959 if (!TEST_HARD_REG_BIT (reg_class_contents[rclass], REGNO (reg))
3960 || REGNO (last_reg) >= REGNO (reg))
3961 return false;
3962 }
3963 else
3964 {
3965 /* Work out which register class we need. */
3966 if (INT_REGNO_P (REGNO (reg)))
3967 rclass = GENERAL_REGS;
3968 else if (FP_REGNO_P (REGNO (reg)))
3969 rclass = FP_REGS;
3970 else
3971 return false;
3972 }
3973
3974 last_reg = reg;
3975 offset += GET_MODE_SIZE (GET_MODE (reg));
3976 }
3977
3978 /* If we have an automodification, check whether the final offset is OK. */
3979 if (automod_base && offset != (automod_offset < 0 ? 0 : automod_offset))
3980 return false;
3981
3982 /* Reject unprofitable cases. */
3983 if (len < first + (rclass == FP_REGS ? MIN_FMOVEM_REGS : MIN_MOVEM_REGS))
3984 return false;
3985
3986 return true;
3987 }
3988
3989 /* Return the assembly code template for a movem or fmovem instruction
3990 whose pattern is given by PATTERN. Store the template's operands
3991 in OPERANDS.
3992
3993 If the instruction uses post-increment or pre-decrement addressing,
3994 AUTOMOD_OFFSET is the total adjustment, otherwise it is 0. STORE_P
3995 is true if this is a store instruction. */
3996
3997 const char *
3998 m68k_output_movem (rtx *operands, rtx pattern,
3999 HOST_WIDE_INT automod_offset, bool store_p)
4000 {
4001 unsigned int mask;
4002 int i, first;
4003
4004 gcc_assert (GET_CODE (pattern) == PARALLEL);
4005 mask = 0;
4006 first = (automod_offset != 0);
4007 for (i = first; i < XVECLEN (pattern, 0); i++)
4008 {
4009 /* When using movem with pre-decrement addressing, register X + D0_REG
4010 is controlled by bit 15 - X. For all other addressing modes,
4011 register X + D0_REG is controlled by bit X. Confusingly, the
4012 register mask for fmovem is in the opposite order to that for
4013 movem. */
4014 unsigned int regno;
4015
4016 gcc_assert (MEM_P (XEXP (XVECEXP (pattern, 0, i), !store_p)));
4017 gcc_assert (REG_P (XEXP (XVECEXP (pattern, 0, i), store_p)));
4018 regno = REGNO (XEXP (XVECEXP (pattern, 0, i), store_p));
4019 if (automod_offset < 0)
4020 {
4021 if (FP_REGNO_P (regno))
4022 mask |= 1 << (regno - FP0_REG);
4023 else
4024 mask |= 1 << (15 - (regno - D0_REG));
4025 }
4026 else
4027 {
4028 if (FP_REGNO_P (regno))
4029 mask |= 1 << (7 - (regno - FP0_REG));
4030 else
4031 mask |= 1 << (regno - D0_REG);
4032 }
4033 }
4034 CC_STATUS_INIT;
4035
4036 if (automod_offset == 0)
4037 operands[0] = XEXP (XEXP (XVECEXP (pattern, 0, first), !store_p), 0);
4038 else if (automod_offset < 0)
4039 operands[0] = gen_rtx_PRE_DEC (Pmode, SET_DEST (XVECEXP (pattern, 0, 0)));
4040 else
4041 operands[0] = gen_rtx_POST_INC (Pmode, SET_DEST (XVECEXP (pattern, 0, 0)));
4042 operands[1] = GEN_INT (mask);
4043 if (FP_REGNO_P (REGNO (XEXP (XVECEXP (pattern, 0, first), store_p))))
4044 {
4045 if (store_p)
4046 return "fmovem %1,%a0";
4047 else
4048 return "fmovem %a0,%1";
4049 }
4050 else
4051 {
4052 if (store_p)
4053 return "movem%.l %1,%a0";
4054 else
4055 return "movem%.l %a0,%1";
4056 }
4057 }
4058
4059 /* Return a REG that occurs in ADDR with coefficient 1.
4060 ADDR can be effectively incremented by incrementing REG. */
4061
4062 static rtx
4063 find_addr_reg (rtx addr)
4064 {
4065 while (GET_CODE (addr) == PLUS)
4066 {
4067 if (GET_CODE (XEXP (addr, 0)) == REG)
4068 addr = XEXP (addr, 0);
4069 else if (GET_CODE (XEXP (addr, 1)) == REG)
4070 addr = XEXP (addr, 1);
4071 else if (CONSTANT_P (XEXP (addr, 0)))
4072 addr = XEXP (addr, 1);
4073 else if (CONSTANT_P (XEXP (addr, 1)))
4074 addr = XEXP (addr, 0);
4075 else
4076 gcc_unreachable ();
4077 }
4078 gcc_assert (GET_CODE (addr) == REG);
4079 return addr;
4080 }
4081
4082 /* Output assembler code to perform a 32-bit 3-operand add. */
4083
4084 const char *
4085 output_addsi3 (rtx *operands)
4086 {
4087 if (! operands_match_p (operands[0], operands[1]))
4088 {
4089 if (!ADDRESS_REG_P (operands[1]))
4090 {
4091 rtx tmp = operands[1];
4092
4093 operands[1] = operands[2];
4094 operands[2] = tmp;
4095 }
4096
4097 /* These insns can result from reloads to access
4098 stack slots over 64k from the frame pointer. */
4099 if (GET_CODE (operands[2]) == CONST_INT
4100 && (INTVAL (operands[2]) < -32768 || INTVAL (operands[2]) > 32767))
4101 return "move%.l %2,%0\n\tadd%.l %1,%0";
4102 if (GET_CODE (operands[2]) == REG)
4103 return MOTOROLA ? "lea (%1,%2.l),%0" : "lea %1@(0,%2:l),%0";
4104 return MOTOROLA ? "lea (%c2,%1),%0" : "lea %1@(%c2),%0";
4105 }
4106 if (GET_CODE (operands[2]) == CONST_INT)
4107 {
4108 if (INTVAL (operands[2]) > 0
4109 && INTVAL (operands[2]) <= 8)
4110 return "addq%.l %2,%0";
4111 if (INTVAL (operands[2]) < 0
4112 && INTVAL (operands[2]) >= -8)
4113 {
4114 operands[2] = GEN_INT (- INTVAL (operands[2]));
4115 return "subq%.l %2,%0";
4116 }
4117 /* On the CPU32 it is faster to use two addql instructions to
4118 add a small integer (8 < N <= 16) to a register.
4119 Likewise for subql. */
4120 if (TUNE_CPU32 && REG_P (operands[0]))
4121 {
4122 if (INTVAL (operands[2]) > 8
4123 && INTVAL (operands[2]) <= 16)
4124 {
4125 operands[2] = GEN_INT (INTVAL (operands[2]) - 8);
4126 return "addq%.l #8,%0\n\taddq%.l %2,%0";
4127 }
4128 if (INTVAL (operands[2]) < -8
4129 && INTVAL (operands[2]) >= -16)
4130 {
4131 operands[2] = GEN_INT (- INTVAL (operands[2]) - 8);
4132 return "subq%.l #8,%0\n\tsubq%.l %2,%0";
4133 }
4134 }
4135 if (ADDRESS_REG_P (operands[0])
4136 && INTVAL (operands[2]) >= -0x8000
4137 && INTVAL (operands[2]) < 0x8000)
4138 {
4139 if (TUNE_68040)
4140 return "add%.w %2,%0";
4141 else
4142 return MOTOROLA ? "lea (%c2,%0),%0" : "lea %0@(%c2),%0";
4143 }
4144 }
4145 return "add%.l %2,%0";
4146 }
4147 \f
4148 /* Store in cc_status the expressions that the condition codes will
4149 describe after execution of an instruction whose pattern is EXP.
4150 Do not alter them if the instruction would not alter the cc's. */
4151
4152 /* On the 68000, all the insns to store in an address register fail to
4153 set the cc's. However, in some cases these instructions can make it
4154 possibly invalid to use the saved cc's. In those cases we clear out
4155 some or all of the saved cc's so they won't be used. */
4156
4157 void
4158 notice_update_cc (rtx exp, rtx insn)
4159 {
4160 if (GET_CODE (exp) == SET)
4161 {
4162 if (GET_CODE (SET_SRC (exp)) == CALL)
4163 CC_STATUS_INIT;
4164 else if (ADDRESS_REG_P (SET_DEST (exp)))
4165 {
4166 if (cc_status.value1 && modified_in_p (cc_status.value1, insn))
4167 cc_status.value1 = 0;
4168 if (cc_status.value2 && modified_in_p (cc_status.value2, insn))
4169 cc_status.value2 = 0;
4170 }
4171 /* fmoves to memory or data registers do not set the condition
4172 codes. Normal moves _do_ set the condition codes, but not in
4173 a way that is appropriate for comparison with 0, because -0.0
4174 would be treated as a negative nonzero number. Note that it
4175 isn't appropriate to conditionalize this restriction on
4176 HONOR_SIGNED_ZEROS because that macro merely indicates whether
4177 we care about the difference between -0.0 and +0.0. */
4178 else if (!FP_REG_P (SET_DEST (exp))
4179 && SET_DEST (exp) != cc0_rtx
4180 && (FP_REG_P (SET_SRC (exp))
4181 || GET_CODE (SET_SRC (exp)) == FIX
4182 || FLOAT_MODE_P (GET_MODE (SET_DEST (exp)))))
4183 CC_STATUS_INIT;
4184 /* A pair of move insns doesn't produce a useful overall cc. */
4185 else if (!FP_REG_P (SET_DEST (exp))
4186 && !FP_REG_P (SET_SRC (exp))
4187 && GET_MODE_SIZE (GET_MODE (SET_SRC (exp))) > 4
4188 && (GET_CODE (SET_SRC (exp)) == REG
4189 || GET_CODE (SET_SRC (exp)) == MEM
4190 || GET_CODE (SET_SRC (exp)) == CONST_DOUBLE))
4191 CC_STATUS_INIT;
4192 else if (SET_DEST (exp) != pc_rtx)
4193 {
4194 cc_status.flags = 0;
4195 cc_status.value1 = SET_DEST (exp);
4196 cc_status.value2 = SET_SRC (exp);
4197 }
4198 }
4199 else if (GET_CODE (exp) == PARALLEL
4200 && GET_CODE (XVECEXP (exp, 0, 0)) == SET)
4201 {
4202 rtx dest = SET_DEST (XVECEXP (exp, 0, 0));
4203 rtx src = SET_SRC (XVECEXP (exp, 0, 0));
4204
4205 if (ADDRESS_REG_P (dest))
4206 CC_STATUS_INIT;
4207 else if (dest != pc_rtx)
4208 {
4209 cc_status.flags = 0;
4210 cc_status.value1 = dest;
4211 cc_status.value2 = src;
4212 }
4213 }
4214 else
4215 CC_STATUS_INIT;
4216 if (cc_status.value2 != 0
4217 && ADDRESS_REG_P (cc_status.value2)
4218 && GET_MODE (cc_status.value2) == QImode)
4219 CC_STATUS_INIT;
4220 if (cc_status.value2 != 0)
4221 switch (GET_CODE (cc_status.value2))
4222 {
4223 case ASHIFT: case ASHIFTRT: case LSHIFTRT:
4224 case ROTATE: case ROTATERT:
4225 /* These instructions always clear the overflow bit, and set
4226 the carry to the bit shifted out. */
4227 cc_status.flags |= CC_OVERFLOW_UNUSABLE | CC_NO_CARRY;
4228 break;
4229
4230 case PLUS: case MINUS: case MULT:
4231 case DIV: case UDIV: case MOD: case UMOD: case NEG:
4232 if (GET_MODE (cc_status.value2) != VOIDmode)
4233 cc_status.flags |= CC_NO_OVERFLOW;
4234 break;
4235 case ZERO_EXTEND:
4236 /* (SET r1 (ZERO_EXTEND r2)) on this machine
4237 ends with a move insn moving r2 in r2's mode.
4238 Thus, the cc's are set for r2.
4239 This can set N bit spuriously. */
4240 cc_status.flags |= CC_NOT_NEGATIVE;
4241
4242 default:
4243 break;
4244 }
4245 if (cc_status.value1 && GET_CODE (cc_status.value1) == REG
4246 && cc_status.value2
4247 && reg_overlap_mentioned_p (cc_status.value1, cc_status.value2))
4248 cc_status.value2 = 0;
4249 /* Check for PRE_DEC in dest modifying a register used in src. */
4250 if (cc_status.value1 && GET_CODE (cc_status.value1) == MEM
4251 && GET_CODE (XEXP (cc_status.value1, 0)) == PRE_DEC
4252 && cc_status.value2
4253 && reg_overlap_mentioned_p (XEXP (XEXP (cc_status.value1, 0), 0),
4254 cc_status.value2))
4255 cc_status.value2 = 0;
4256 if (((cc_status.value1 && FP_REG_P (cc_status.value1))
4257 || (cc_status.value2 && FP_REG_P (cc_status.value2))))
4258 cc_status.flags = CC_IN_68881;
4259 if (cc_status.value2 && GET_CODE (cc_status.value2) == COMPARE
4260 && GET_MODE_CLASS (GET_MODE (XEXP (cc_status.value2, 0))) == MODE_FLOAT)
4261 {
4262 cc_status.flags = CC_IN_68881;
4263 if (!FP_REG_P (XEXP (cc_status.value2, 0))
4264 && FP_REG_P (XEXP (cc_status.value2, 1)))
4265 cc_status.flags |= CC_REVERSED;
4266 }
4267 }
4268 \f
4269 const char *
4270 output_move_const_double (rtx *operands)
4271 {
4272 int code = standard_68881_constant_p (operands[1]);
4273
4274 if (code != 0)
4275 {
4276 static char buf[40];
4277
4278 sprintf (buf, "fmovecr #0x%x,%%0", code & 0xff);
4279 return buf;
4280 }
4281 return "fmove%.d %1,%0";
4282 }
4283
4284 const char *
4285 output_move_const_single (rtx *operands)
4286 {
4287 int code = standard_68881_constant_p (operands[1]);
4288
4289 if (code != 0)
4290 {
4291 static char buf[40];
4292
4293 sprintf (buf, "fmovecr #0x%x,%%0", code & 0xff);
4294 return buf;
4295 }
4296 return "fmove%.s %f1,%0";
4297 }
4298
4299 /* Return nonzero if X, a CONST_DOUBLE, has a value that we can get
4300 from the "fmovecr" instruction.
4301 The value, anded with 0xff, gives the code to use in fmovecr
4302 to get the desired constant. */
4303
4304 /* This code has been fixed for cross-compilation. */
4305
4306 static int inited_68881_table = 0;
4307
4308 static const char *const strings_68881[7] = {
4309 "0.0",
4310 "1.0",
4311 "10.0",
4312 "100.0",
4313 "10000.0",
4314 "1e8",
4315 "1e16"
4316 };
4317
4318 static const int codes_68881[7] = {
4319 0x0f,
4320 0x32,
4321 0x33,
4322 0x34,
4323 0x35,
4324 0x36,
4325 0x37
4326 };
4327
4328 REAL_VALUE_TYPE values_68881[7];
4329
4330 /* Set up values_68881 array by converting the decimal values
4331 strings_68881 to binary. */
4332
4333 void
4334 init_68881_table (void)
4335 {
4336 int i;
4337 REAL_VALUE_TYPE r;
4338 machine_mode mode;
4339
4340 mode = SFmode;
4341 for (i = 0; i < 7; i++)
4342 {
4343 if (i == 6)
4344 mode = DFmode;
4345 r = REAL_VALUE_ATOF (strings_68881[i], mode);
4346 values_68881[i] = r;
4347 }
4348 inited_68881_table = 1;
4349 }
4350
4351 int
4352 standard_68881_constant_p (rtx x)
4353 {
4354 const REAL_VALUE_TYPE *r;
4355 int i;
4356
4357 /* fmovecr must be emulated on the 68040 and 68060, so it shouldn't be
4358 used at all on those chips. */
4359 if (TUNE_68040_60)
4360 return 0;
4361
4362 if (! inited_68881_table)
4363 init_68881_table ();
4364
4365 r = CONST_DOUBLE_REAL_VALUE (x);
4366
4367 /* Use real_identical instead of real_equal so that -0.0 is rejected. */
4368 for (i = 0; i < 6; i++)
4369 {
4370 if (real_identical (r, &values_68881[i]))
4371 return (codes_68881[i]);
4372 }
4373
4374 if (GET_MODE (x) == SFmode)
4375 return 0;
4376
4377 if (real_equal (r, &values_68881[6]))
4378 return (codes_68881[6]);
4379
4380 /* larger powers of ten in the constants ram are not used
4381 because they are not equal to a `double' C constant. */
4382 return 0;
4383 }
4384
4385 /* If X is a floating-point constant, return the logarithm of X base 2,
4386 or 0 if X is not a power of 2. */
4387
4388 int
4389 floating_exact_log2 (rtx x)
4390 {
4391 const REAL_VALUE_TYPE *r;
4392 REAL_VALUE_TYPE r1;
4393 int exp;
4394
4395 r = CONST_DOUBLE_REAL_VALUE (x);
4396
4397 if (real_less (r, &dconst1))
4398 return 0;
4399
4400 exp = real_exponent (r);
4401 real_2expN (&r1, exp, DFmode);
4402 if (real_equal (&r1, r))
4403 return exp;
4404
4405 return 0;
4406 }
4407 \f
4408 /* A C compound statement to output to stdio stream STREAM the
4409 assembler syntax for an instruction operand X. X is an RTL
4410 expression.
4411
4412 CODE is a value that can be used to specify one of several ways
4413 of printing the operand. It is used when identical operands
4414 must be printed differently depending on the context. CODE
4415 comes from the `%' specification that was used to request
4416 printing of the operand. If the specification was just `%DIGIT'
4417 then CODE is 0; if the specification was `%LTR DIGIT' then CODE
4418 is the ASCII code for LTR.
4419
4420 If X is a register, this macro should print the register's name.
4421 The names can be found in an array `reg_names' whose type is
4422 `char *[]'. `reg_names' is initialized from `REGISTER_NAMES'.
4423
4424 When the machine description has a specification `%PUNCT' (a `%'
4425 followed by a punctuation character), this macro is called with
4426 a null pointer for X and the punctuation character for CODE.
4427
4428 The m68k specific codes are:
4429
4430 '.' for dot needed in Motorola-style opcode names.
4431 '-' for an operand pushing on the stack:
4432 sp@-, -(sp) or -(%sp) depending on the style of syntax.
4433 '+' for an operand pushing on the stack:
4434 sp@+, (sp)+ or (%sp)+ depending on the style of syntax.
4435 '@' for a reference to the top word on the stack:
4436 sp@, (sp) or (%sp) depending on the style of syntax.
4437 '#' for an immediate operand prefix (# in MIT and Motorola syntax
4438 but & in SGS syntax).
4439 '!' for the cc register (used in an `and to cc' insn).
4440 '$' for the letter `s' in an op code, but only on the 68040.
4441 '&' for the letter `d' in an op code, but only on the 68040.
4442 '/' for register prefix needed by longlong.h.
4443 '?' for m68k_library_id_string
4444
4445 'b' for byte insn (no effect, on the Sun; this is for the ISI).
4446 'd' to force memory addressing to be absolute, not relative.
4447 'f' for float insn (print a CONST_DOUBLE as a float rather than in hex)
4448 'x' for float insn (print a CONST_DOUBLE as a float rather than in hex),
4449 or print pair of registers as rx:ry.
4450 'p' print an address with @PLTPC attached, but only if the operand
4451 is not locally-bound. */
4452
4453 void
4454 print_operand (FILE *file, rtx op, int letter)
4455 {
4456 if (letter == '.')
4457 {
4458 if (MOTOROLA)
4459 fprintf (file, ".");
4460 }
4461 else if (letter == '#')
4462 asm_fprintf (file, "%I");
4463 else if (letter == '-')
4464 asm_fprintf (file, MOTOROLA ? "-(%Rsp)" : "%Rsp@-");
4465 else if (letter == '+')
4466 asm_fprintf (file, MOTOROLA ? "(%Rsp)+" : "%Rsp@+");
4467 else if (letter == '@')
4468 asm_fprintf (file, MOTOROLA ? "(%Rsp)" : "%Rsp@");
4469 else if (letter == '!')
4470 asm_fprintf (file, "%Rfpcr");
4471 else if (letter == '$')
4472 {
4473 if (TARGET_68040)
4474 fprintf (file, "s");
4475 }
4476 else if (letter == '&')
4477 {
4478 if (TARGET_68040)
4479 fprintf (file, "d");
4480 }
4481 else if (letter == '/')
4482 asm_fprintf (file, "%R");
4483 else if (letter == '?')
4484 asm_fprintf (file, m68k_library_id_string);
4485 else if (letter == 'p')
4486 {
4487 output_addr_const (file, op);
4488 if (!(GET_CODE (op) == SYMBOL_REF && SYMBOL_REF_LOCAL_P (op)))
4489 fprintf (file, "@PLTPC");
4490 }
4491 else if (GET_CODE (op) == REG)
4492 {
4493 if (letter == 'R')
4494 /* Print out the second register name of a register pair.
4495 I.e., R (6) => 7. */
4496 fputs (M68K_REGNAME(REGNO (op) + 1), file);
4497 else
4498 fputs (M68K_REGNAME(REGNO (op)), file);
4499 }
4500 else if (GET_CODE (op) == MEM)
4501 {
4502 output_address (GET_MODE (op), XEXP (op, 0));
4503 if (letter == 'd' && ! TARGET_68020
4504 && CONSTANT_ADDRESS_P (XEXP (op, 0))
4505 && !(GET_CODE (XEXP (op, 0)) == CONST_INT
4506 && INTVAL (XEXP (op, 0)) < 0x8000
4507 && INTVAL (XEXP (op, 0)) >= -0x8000))
4508 fprintf (file, MOTOROLA ? ".l" : ":l");
4509 }
4510 else if (GET_CODE (op) == CONST_DOUBLE && GET_MODE (op) == SFmode)
4511 {
4512 long l;
4513 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (op), l);
4514 asm_fprintf (file, "%I0x%lx", l & 0xFFFFFFFF);
4515 }
4516 else if (GET_CODE (op) == CONST_DOUBLE && GET_MODE (op) == XFmode)
4517 {
4518 long l[3];
4519 REAL_VALUE_TO_TARGET_LONG_DOUBLE (*CONST_DOUBLE_REAL_VALUE (op), l);
4520 asm_fprintf (file, "%I0x%lx%08lx%08lx", l[0] & 0xFFFFFFFF,
4521 l[1] & 0xFFFFFFFF, l[2] & 0xFFFFFFFF);
4522 }
4523 else if (GET_CODE (op) == CONST_DOUBLE && GET_MODE (op) == DFmode)
4524 {
4525 long l[2];
4526 REAL_VALUE_TO_TARGET_DOUBLE (*CONST_DOUBLE_REAL_VALUE (op), l);
4527 asm_fprintf (file, "%I0x%lx%08lx", l[0] & 0xFFFFFFFF, l[1] & 0xFFFFFFFF);
4528 }
4529 else
4530 {
4531 /* Use `print_operand_address' instead of `output_addr_const'
4532 to ensure that we print relevant PIC stuff. */
4533 asm_fprintf (file, "%I");
4534 if (TARGET_PCREL
4535 && (GET_CODE (op) == SYMBOL_REF || GET_CODE (op) == CONST))
4536 print_operand_address (file, op);
4537 else
4538 output_addr_const (file, op);
4539 }
4540 }
4541
4542 /* Return string for TLS relocation RELOC. */
4543
4544 static const char *
4545 m68k_get_reloc_decoration (enum m68k_reloc reloc)
4546 {
4547 /* To my knowledge, !MOTOROLA assemblers don't support TLS. */
4548 gcc_assert (MOTOROLA || reloc == RELOC_GOT);
4549
4550 switch (reloc)
4551 {
4552 case RELOC_GOT:
4553 if (MOTOROLA)
4554 {
4555 if (flag_pic == 1 && TARGET_68020)
4556 return "@GOT.w";
4557 else
4558 return "@GOT";
4559 }
4560 else
4561 {
4562 if (TARGET_68020)
4563 {
4564 switch (flag_pic)
4565 {
4566 case 1:
4567 return ":w";
4568 case 2:
4569 return ":l";
4570 default:
4571 return "";
4572 }
4573 }
4574 }
4575 gcc_unreachable ();
4576
4577 case RELOC_TLSGD:
4578 return "@TLSGD";
4579
4580 case RELOC_TLSLDM:
4581 return "@TLSLDM";
4582
4583 case RELOC_TLSLDO:
4584 return "@TLSLDO";
4585
4586 case RELOC_TLSIE:
4587 return "@TLSIE";
4588
4589 case RELOC_TLSLE:
4590 return "@TLSLE";
4591
4592 default:
4593 gcc_unreachable ();
4594 }
4595 }
4596
4597 /* m68k implementation of TARGET_OUTPUT_ADDR_CONST_EXTRA. */
4598
4599 static bool
4600 m68k_output_addr_const_extra (FILE *file, rtx x)
4601 {
4602 if (GET_CODE (x) == UNSPEC)
4603 {
4604 switch (XINT (x, 1))
4605 {
4606 case UNSPEC_RELOC16:
4607 case UNSPEC_RELOC32:
4608 output_addr_const (file, XVECEXP (x, 0, 0));
4609 fputs (m68k_get_reloc_decoration
4610 ((enum m68k_reloc) INTVAL (XVECEXP (x, 0, 1))), file);
4611 return true;
4612
4613 default:
4614 break;
4615 }
4616 }
4617
4618 return false;
4619 }
4620
4621 /* M68K implementation of TARGET_ASM_OUTPUT_DWARF_DTPREL. */
4622
4623 static void
4624 m68k_output_dwarf_dtprel (FILE *file, int size, rtx x)
4625 {
4626 gcc_assert (size == 4);
4627 fputs ("\t.long\t", file);
4628 output_addr_const (file, x);
4629 fputs ("@TLSLDO+0x8000", file);
4630 }
4631
4632 /* In the name of slightly smaller debug output, and to cater to
4633 general assembler lossage, recognize various UNSPEC sequences
4634 and turn them back into a direct symbol reference. */
4635
4636 static rtx
4637 m68k_delegitimize_address (rtx orig_x)
4638 {
4639 rtx x;
4640 struct m68k_address addr;
4641 rtx unspec;
4642
4643 orig_x = delegitimize_mem_from_attrs (orig_x);
4644 x = orig_x;
4645 if (MEM_P (x))
4646 x = XEXP (x, 0);
4647
4648 if (GET_CODE (x) != PLUS || GET_MODE (x) != Pmode)
4649 return orig_x;
4650
4651 if (!m68k_decompose_address (GET_MODE (x), x, false, &addr)
4652 || addr.offset == NULL_RTX
4653 || GET_CODE (addr.offset) != CONST)
4654 return orig_x;
4655
4656 unspec = XEXP (addr.offset, 0);
4657 if (GET_CODE (unspec) == PLUS && CONST_INT_P (XEXP (unspec, 1)))
4658 unspec = XEXP (unspec, 0);
4659 if (GET_CODE (unspec) != UNSPEC
4660 || (XINT (unspec, 1) != UNSPEC_RELOC16
4661 && XINT (unspec, 1) != UNSPEC_RELOC32))
4662 return orig_x;
4663 x = XVECEXP (unspec, 0, 0);
4664 gcc_assert (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == LABEL_REF);
4665 if (unspec != XEXP (addr.offset, 0))
4666 x = gen_rtx_PLUS (Pmode, x, XEXP (XEXP (addr.offset, 0), 1));
4667 if (addr.index)
4668 {
4669 rtx idx = addr.index;
4670 if (addr.scale != 1)
4671 idx = gen_rtx_MULT (Pmode, idx, GEN_INT (addr.scale));
4672 x = gen_rtx_PLUS (Pmode, idx, x);
4673 }
4674 if (addr.base)
4675 x = gen_rtx_PLUS (Pmode, addr.base, x);
4676 if (MEM_P (orig_x))
4677 x = replace_equiv_address_nv (orig_x, x);
4678 return x;
4679 }
4680
4681 \f
4682 /* A C compound statement to output to stdio stream STREAM the
4683 assembler syntax for an instruction operand that is a memory
4684 reference whose address is ADDR. ADDR is an RTL expression.
4685
4686 Note that this contains a kludge that knows that the only reason
4687 we have an address (plus (label_ref...) (reg...)) when not generating
4688 PIC code is in the insn before a tablejump, and we know that m68k.md
4689 generates a label LInnn: on such an insn.
4690
4691 It is possible for PIC to generate a (plus (label_ref...) (reg...))
4692 and we handle that just like we would a (plus (symbol_ref...) (reg...)).
4693
4694 This routine is responsible for distinguishing between -fpic and -fPIC
4695 style relocations in an address. When generating -fpic code the
4696 offset is output in word mode (e.g. movel a5@(_foo:w), a0). When generating
4697 -fPIC code the offset is output in long mode (e.g. movel a5@(_foo:l), a0) */
4698
4699 void
4700 print_operand_address (FILE *file, rtx addr)
4701 {
4702 struct m68k_address address;
4703
4704 if (!m68k_decompose_address (QImode, addr, true, &address))
4705 gcc_unreachable ();
4706
4707 if (address.code == PRE_DEC)
4708 fprintf (file, MOTOROLA ? "-(%s)" : "%s@-",
4709 M68K_REGNAME (REGNO (address.base)));
4710 else if (address.code == POST_INC)
4711 fprintf (file, MOTOROLA ? "(%s)+" : "%s@+",
4712 M68K_REGNAME (REGNO (address.base)));
4713 else if (!address.base && !address.index)
4714 {
4715 /* A constant address. */
4716 gcc_assert (address.offset == addr);
4717 if (GET_CODE (addr) == CONST_INT)
4718 {
4719 /* (xxx).w or (xxx).l. */
4720 if (IN_RANGE (INTVAL (addr), -0x8000, 0x7fff))
4721 fprintf (file, MOTOROLA ? "%d.w" : "%d:w", (int) INTVAL (addr));
4722 else
4723 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (addr));
4724 }
4725 else if (TARGET_PCREL)
4726 {
4727 /* (d16,PC) or (bd,PC,Xn) (with suppressed index register). */
4728 fputc ('(', file);
4729 output_addr_const (file, addr);
4730 asm_fprintf (file, flag_pic == 1 ? ":w,%Rpc)" : ":l,%Rpc)");
4731 }
4732 else
4733 {
4734 /* (xxx).l. We need a special case for SYMBOL_REF if the symbol
4735 name ends in `.<letter>', as the last 2 characters can be
4736 mistaken as a size suffix. Put the name in parentheses. */
4737 if (GET_CODE (addr) == SYMBOL_REF
4738 && strlen (XSTR (addr, 0)) > 2
4739 && XSTR (addr, 0)[strlen (XSTR (addr, 0)) - 2] == '.')
4740 {
4741 putc ('(', file);
4742 output_addr_const (file, addr);
4743 putc (')', file);
4744 }
4745 else
4746 output_addr_const (file, addr);
4747 }
4748 }
4749 else
4750 {
4751 int labelno;
4752
4753 /* If ADDR is a (d8,pc,Xn) address, this is the number of the
4754 label being accessed, otherwise it is -1. */
4755 labelno = (address.offset
4756 && !address.base
4757 && GET_CODE (address.offset) == LABEL_REF
4758 ? CODE_LABEL_NUMBER (XEXP (address.offset, 0))
4759 : -1);
4760 if (MOTOROLA)
4761 {
4762 /* Print the "offset(base" component. */
4763 if (labelno >= 0)
4764 asm_fprintf (file, "%LL%d(%Rpc,", labelno);
4765 else
4766 {
4767 if (address.offset)
4768 output_addr_const (file, address.offset);
4769
4770 putc ('(', file);
4771 if (address.base)
4772 fputs (M68K_REGNAME (REGNO (address.base)), file);
4773 }
4774 /* Print the ",index" component, if any. */
4775 if (address.index)
4776 {
4777 if (address.base)
4778 putc (',', file);
4779 fprintf (file, "%s.%c",
4780 M68K_REGNAME (REGNO (address.index)),
4781 GET_MODE (address.index) == HImode ? 'w' : 'l');
4782 if (address.scale != 1)
4783 fprintf (file, "*%d", address.scale);
4784 }
4785 putc (')', file);
4786 }
4787 else /* !MOTOROLA */
4788 {
4789 if (!address.offset && !address.index)
4790 fprintf (file, "%s@", M68K_REGNAME (REGNO (address.base)));
4791 else
4792 {
4793 /* Print the "base@(offset" component. */
4794 if (labelno >= 0)
4795 asm_fprintf (file, "%Rpc@(%LL%d", labelno);
4796 else
4797 {
4798 if (address.base)
4799 fputs (M68K_REGNAME (REGNO (address.base)), file);
4800 fprintf (file, "@(");
4801 if (address.offset)
4802 output_addr_const (file, address.offset);
4803 }
4804 /* Print the ",index" component, if any. */
4805 if (address.index)
4806 {
4807 fprintf (file, ",%s:%c",
4808 M68K_REGNAME (REGNO (address.index)),
4809 GET_MODE (address.index) == HImode ? 'w' : 'l');
4810 if (address.scale != 1)
4811 fprintf (file, ":%d", address.scale);
4812 }
4813 putc (')', file);
4814 }
4815 }
4816 }
4817 }
4818 \f
4819 /* Check for cases where a clr insns can be omitted from code using
4820 strict_low_part sets. For example, the second clrl here is not needed:
4821 clrl d0; movw a0@+,d0; use d0; clrl d0; movw a0@+; use d0; ...
4822
4823 MODE is the mode of this STRICT_LOW_PART set. FIRST_INSN is the clear
4824 insn we are checking for redundancy. TARGET is the register set by the
4825 clear insn. */
4826
4827 bool
4828 strict_low_part_peephole_ok (machine_mode mode, rtx_insn *first_insn,
4829 rtx target)
4830 {
4831 rtx_insn *p = first_insn;
4832
4833 while ((p = PREV_INSN (p)))
4834 {
4835 if (NOTE_INSN_BASIC_BLOCK_P (p))
4836 return false;
4837
4838 if (NOTE_P (p))
4839 continue;
4840
4841 /* If it isn't an insn, then give up. */
4842 if (!INSN_P (p))
4843 return false;
4844
4845 if (reg_set_p (target, p))
4846 {
4847 rtx set = single_set (p);
4848 rtx dest;
4849
4850 /* If it isn't an easy to recognize insn, then give up. */
4851 if (! set)
4852 return false;
4853
4854 dest = SET_DEST (set);
4855
4856 /* If this sets the entire target register to zero, then our
4857 first_insn is redundant. */
4858 if (rtx_equal_p (dest, target)
4859 && SET_SRC (set) == const0_rtx)
4860 return true;
4861 else if (GET_CODE (dest) == STRICT_LOW_PART
4862 && GET_CODE (XEXP (dest, 0)) == REG
4863 && REGNO (XEXP (dest, 0)) == REGNO (target)
4864 && (GET_MODE_SIZE (GET_MODE (XEXP (dest, 0)))
4865 <= GET_MODE_SIZE (mode)))
4866 /* This is a strict low part set which modifies less than
4867 we are using, so it is safe. */
4868 ;
4869 else
4870 return false;
4871 }
4872 }
4873
4874 return false;
4875 }
4876
4877 /* Operand predicates for implementing asymmetric pc-relative addressing
4878 on m68k. The m68k supports pc-relative addressing (mode 7, register 2)
4879 when used as a source operand, but not as a destination operand.
4880
4881 We model this by restricting the meaning of the basic predicates
4882 (general_operand, memory_operand, etc) to forbid the use of this
4883 addressing mode, and then define the following predicates that permit
4884 this addressing mode. These predicates can then be used for the
4885 source operands of the appropriate instructions.
4886
4887 n.b. While it is theoretically possible to change all machine patterns
4888 to use this addressing more where permitted by the architecture,
4889 it has only been implemented for "common" cases: SImode, HImode, and
4890 QImode operands, and only for the principle operations that would
4891 require this addressing mode: data movement and simple integer operations.
4892
4893 In parallel with these new predicates, two new constraint letters
4894 were defined: 'S' and 'T'. 'S' is the -mpcrel analog of 'm'.
4895 'T' replaces 's' in the non-pcrel case. It is a no-op in the pcrel case.
4896 In the pcrel case 's' is only valid in combination with 'a' registers.
4897 See addsi3, subsi3, cmpsi, and movsi patterns for a better understanding
4898 of how these constraints are used.
4899
4900 The use of these predicates is strictly optional, though patterns that
4901 don't will cause an extra reload register to be allocated where one
4902 was not necessary:
4903
4904 lea (abc:w,%pc),%a0 ; need to reload address
4905 moveq &1,%d1 ; since write to pc-relative space
4906 movel %d1,%a0@ ; is not allowed
4907 ...
4908 lea (abc:w,%pc),%a1 ; no need to reload address here
4909 movel %a1@,%d0 ; since "movel (abc:w,%pc),%d0" is ok
4910
4911 For more info, consult tiemann@cygnus.com.
4912
4913
4914 All of the ugliness with predicates and constraints is due to the
4915 simple fact that the m68k does not allow a pc-relative addressing
4916 mode as a destination. gcc does not distinguish between source and
4917 destination addresses. Hence, if we claim that pc-relative address
4918 modes are valid, e.g. TARGET_LEGITIMATE_ADDRESS_P accepts them, then we
4919 end up with invalid code. To get around this problem, we left
4920 pc-relative modes as invalid addresses, and then added special
4921 predicates and constraints to accept them.
4922
4923 A cleaner way to handle this is to modify gcc to distinguish
4924 between source and destination addresses. We can then say that
4925 pc-relative is a valid source address but not a valid destination
4926 address, and hopefully avoid a lot of the predicate and constraint
4927 hackery. Unfortunately, this would be a pretty big change. It would
4928 be a useful change for a number of ports, but there aren't any current
4929 plans to undertake this.
4930
4931 ***************************************************************************/
4932
4933
4934 const char *
4935 output_andsi3 (rtx *operands)
4936 {
4937 int logval;
4938 if (GET_CODE (operands[2]) == CONST_INT
4939 && (INTVAL (operands[2]) | 0xffff) == -1
4940 && (DATA_REG_P (operands[0])
4941 || offsettable_memref_p (operands[0]))
4942 && !TARGET_COLDFIRE)
4943 {
4944 if (GET_CODE (operands[0]) != REG)
4945 operands[0] = adjust_address (operands[0], HImode, 2);
4946 operands[2] = GEN_INT (INTVAL (operands[2]) & 0xffff);
4947 /* Do not delete a following tstl %0 insn; that would be incorrect. */
4948 CC_STATUS_INIT;
4949 if (operands[2] == const0_rtx)
4950 return "clr%.w %0";
4951 return "and%.w %2,%0";
4952 }
4953 if (GET_CODE (operands[2]) == CONST_INT
4954 && (logval = exact_log2 (~ INTVAL (operands[2]) & 0xffffffff)) >= 0
4955 && (DATA_REG_P (operands[0])
4956 || offsettable_memref_p (operands[0])))
4957 {
4958 if (DATA_REG_P (operands[0]))
4959 operands[1] = GEN_INT (logval);
4960 else
4961 {
4962 operands[0] = adjust_address (operands[0], SImode, 3 - (logval / 8));
4963 operands[1] = GEN_INT (logval % 8);
4964 }
4965 /* This does not set condition codes in a standard way. */
4966 CC_STATUS_INIT;
4967 return "bclr %1,%0";
4968 }
4969 return "and%.l %2,%0";
4970 }
4971
4972 const char *
4973 output_iorsi3 (rtx *operands)
4974 {
4975 register int logval;
4976 if (GET_CODE (operands[2]) == CONST_INT
4977 && INTVAL (operands[2]) >> 16 == 0
4978 && (DATA_REG_P (operands[0])
4979 || offsettable_memref_p (operands[0]))
4980 && !TARGET_COLDFIRE)
4981 {
4982 if (GET_CODE (operands[0]) != REG)
4983 operands[0] = adjust_address (operands[0], HImode, 2);
4984 /* Do not delete a following tstl %0 insn; that would be incorrect. */
4985 CC_STATUS_INIT;
4986 if (INTVAL (operands[2]) == 0xffff)
4987 return "mov%.w %2,%0";
4988 return "or%.w %2,%0";
4989 }
4990 if (GET_CODE (operands[2]) == CONST_INT
4991 && (logval = exact_log2 (INTVAL (operands[2]) & 0xffffffff)) >= 0
4992 && (DATA_REG_P (operands[0])
4993 || offsettable_memref_p (operands[0])))
4994 {
4995 if (DATA_REG_P (operands[0]))
4996 operands[1] = GEN_INT (logval);
4997 else
4998 {
4999 operands[0] = adjust_address (operands[0], SImode, 3 - (logval / 8));
5000 operands[1] = GEN_INT (logval % 8);
5001 }
5002 CC_STATUS_INIT;
5003 return "bset %1,%0";
5004 }
5005 return "or%.l %2,%0";
5006 }
5007
5008 const char *
5009 output_xorsi3 (rtx *operands)
5010 {
5011 register int logval;
5012 if (GET_CODE (operands[2]) == CONST_INT
5013 && INTVAL (operands[2]) >> 16 == 0
5014 && (offsettable_memref_p (operands[0]) || DATA_REG_P (operands[0]))
5015 && !TARGET_COLDFIRE)
5016 {
5017 if (! DATA_REG_P (operands[0]))
5018 operands[0] = adjust_address (operands[0], HImode, 2);
5019 /* Do not delete a following tstl %0 insn; that would be incorrect. */
5020 CC_STATUS_INIT;
5021 if (INTVAL (operands[2]) == 0xffff)
5022 return "not%.w %0";
5023 return "eor%.w %2,%0";
5024 }
5025 if (GET_CODE (operands[2]) == CONST_INT
5026 && (logval = exact_log2 (INTVAL (operands[2]) & 0xffffffff)) >= 0
5027 && (DATA_REG_P (operands[0])
5028 || offsettable_memref_p (operands[0])))
5029 {
5030 if (DATA_REG_P (operands[0]))
5031 operands[1] = GEN_INT (logval);
5032 else
5033 {
5034 operands[0] = adjust_address (operands[0], SImode, 3 - (logval / 8));
5035 operands[1] = GEN_INT (logval % 8);
5036 }
5037 CC_STATUS_INIT;
5038 return "bchg %1,%0";
5039 }
5040 return "eor%.l %2,%0";
5041 }
5042
5043 /* Return the instruction that should be used for a call to address X,
5044 which is known to be in operand 0. */
5045
5046 const char *
5047 output_call (rtx x)
5048 {
5049 if (symbolic_operand (x, VOIDmode))
5050 return m68k_symbolic_call;
5051 else
5052 return "jsr %a0";
5053 }
5054
5055 /* Likewise sibling calls. */
5056
5057 const char *
5058 output_sibcall (rtx x)
5059 {
5060 if (symbolic_operand (x, VOIDmode))
5061 return m68k_symbolic_jump;
5062 else
5063 return "jmp %a0";
5064 }
5065
5066 static void
5067 m68k_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
5068 HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
5069 tree function)
5070 {
5071 rtx this_slot, offset, addr, mem, tmp;
5072 rtx_insn *insn;
5073
5074 /* Avoid clobbering the struct value reg by using the
5075 static chain reg as a temporary. */
5076 tmp = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
5077
5078 /* Pretend to be a post-reload pass while generating rtl. */
5079 reload_completed = 1;
5080
5081 /* The "this" pointer is stored at 4(%sp). */
5082 this_slot = gen_rtx_MEM (Pmode, plus_constant (Pmode,
5083 stack_pointer_rtx, 4));
5084
5085 /* Add DELTA to THIS. */
5086 if (delta != 0)
5087 {
5088 /* Make the offset a legitimate operand for memory addition. */
5089 offset = GEN_INT (delta);
5090 if ((delta < -8 || delta > 8)
5091 && (TARGET_COLDFIRE || USE_MOVQ (delta)))
5092 {
5093 emit_move_insn (gen_rtx_REG (Pmode, D0_REG), offset);
5094 offset = gen_rtx_REG (Pmode, D0_REG);
5095 }
5096 emit_insn (gen_add3_insn (copy_rtx (this_slot),
5097 copy_rtx (this_slot), offset));
5098 }
5099
5100 /* If needed, add *(*THIS + VCALL_OFFSET) to THIS. */
5101 if (vcall_offset != 0)
5102 {
5103 /* Set the static chain register to *THIS. */
5104 emit_move_insn (tmp, this_slot);
5105 emit_move_insn (tmp, gen_rtx_MEM (Pmode, tmp));
5106
5107 /* Set ADDR to a legitimate address for *THIS + VCALL_OFFSET. */
5108 addr = plus_constant (Pmode, tmp, vcall_offset);
5109 if (!m68k_legitimate_address_p (Pmode, addr, true))
5110 {
5111 emit_insn (gen_rtx_SET (tmp, addr));
5112 addr = tmp;
5113 }
5114
5115 /* Load the offset into %d0 and add it to THIS. */
5116 emit_move_insn (gen_rtx_REG (Pmode, D0_REG),
5117 gen_rtx_MEM (Pmode, addr));
5118 emit_insn (gen_add3_insn (copy_rtx (this_slot),
5119 copy_rtx (this_slot),
5120 gen_rtx_REG (Pmode, D0_REG)));
5121 }
5122
5123 /* Jump to the target function. Use a sibcall if direct jumps are
5124 allowed, otherwise load the address into a register first. */
5125 mem = DECL_RTL (function);
5126 if (!sibcall_operand (XEXP (mem, 0), VOIDmode))
5127 {
5128 gcc_assert (flag_pic);
5129
5130 if (!TARGET_SEP_DATA)
5131 {
5132 /* Use the static chain register as a temporary (call-clobbered)
5133 GOT pointer for this function. We can use the static chain
5134 register because it isn't live on entry to the thunk. */
5135 SET_REGNO (pic_offset_table_rtx, STATIC_CHAIN_REGNUM);
5136 emit_insn (gen_load_got (pic_offset_table_rtx));
5137 }
5138 legitimize_pic_address (XEXP (mem, 0), Pmode, tmp);
5139 mem = replace_equiv_address (mem, tmp);
5140 }
5141 insn = emit_call_insn (gen_sibcall (mem, const0_rtx));
5142 SIBLING_CALL_P (insn) = 1;
5143
5144 /* Run just enough of rest_of_compilation. */
5145 insn = get_insns ();
5146 split_all_insns_noflow ();
5147 final_start_function (insn, file, 1);
5148 final (insn, file, 1);
5149 final_end_function ();
5150
5151 /* Clean up the vars set above. */
5152 reload_completed = 0;
5153
5154 /* Restore the original PIC register. */
5155 if (flag_pic)
5156 SET_REGNO (pic_offset_table_rtx, PIC_REG);
5157 }
5158
5159 /* Worker function for TARGET_STRUCT_VALUE_RTX. */
5160
5161 static rtx
5162 m68k_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
5163 int incoming ATTRIBUTE_UNUSED)
5164 {
5165 return gen_rtx_REG (Pmode, M68K_STRUCT_VALUE_REGNUM);
5166 }
5167
5168 /* Return nonzero if register old_reg can be renamed to register new_reg. */
5169 int
5170 m68k_hard_regno_rename_ok (unsigned int old_reg ATTRIBUTE_UNUSED,
5171 unsigned int new_reg)
5172 {
5173
5174 /* Interrupt functions can only use registers that have already been
5175 saved by the prologue, even if they would normally be
5176 call-clobbered. */
5177
5178 if ((m68k_get_function_kind (current_function_decl)
5179 == m68k_fk_interrupt_handler)
5180 && !df_regs_ever_live_p (new_reg))
5181 return 0;
5182
5183 return 1;
5184 }
5185
5186 /* Implement TARGET_HARD_REGNO_NREGS.
5187
5188 On the m68k, ordinary registers hold 32 bits worth;
5189 for the 68881 registers, a single register is always enough for
5190 anything that can be stored in them at all. */
5191
5192 static unsigned int
5193 m68k_hard_regno_nregs (unsigned int regno, machine_mode mode)
5194 {
5195 if (regno >= 16)
5196 return GET_MODE_NUNITS (mode);
5197 return CEIL (GET_MODE_SIZE (mode), UNITS_PER_WORD);
5198 }
5199
5200 /* Implement TARGET_HARD_REGNO_MODE_OK. On the 68000, we let the cpu
5201 registers can hold any mode, but restrict the 68881 registers to
5202 floating-point modes. */
5203
5204 static bool
5205 m68k_hard_regno_mode_ok (unsigned int regno, machine_mode mode)
5206 {
5207 if (DATA_REGNO_P (regno))
5208 {
5209 /* Data Registers, can hold aggregate if fits in. */
5210 if (regno + GET_MODE_SIZE (mode) / 4 <= 8)
5211 return true;
5212 }
5213 else if (ADDRESS_REGNO_P (regno))
5214 {
5215 if (regno + GET_MODE_SIZE (mode) / 4 <= 16)
5216 return true;
5217 }
5218 else if (FP_REGNO_P (regno))
5219 {
5220 /* FPU registers, hold float or complex float of long double or
5221 smaller. */
5222 if ((GET_MODE_CLASS (mode) == MODE_FLOAT
5223 || GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT)
5224 && GET_MODE_UNIT_SIZE (mode) <= TARGET_FP_REG_SIZE)
5225 return true;
5226 }
5227 return false;
5228 }
5229
5230 /* Implement TARGET_MODES_TIEABLE_P. */
5231
5232 static bool
5233 m68k_modes_tieable_p (machine_mode mode1, machine_mode mode2)
5234 {
5235 return (!TARGET_HARD_FLOAT
5236 || ((GET_MODE_CLASS (mode1) == MODE_FLOAT
5237 || GET_MODE_CLASS (mode1) == MODE_COMPLEX_FLOAT)
5238 == (GET_MODE_CLASS (mode2) == MODE_FLOAT
5239 || GET_MODE_CLASS (mode2) == MODE_COMPLEX_FLOAT)));
5240 }
5241
5242 /* Implement SECONDARY_RELOAD_CLASS. */
5243
5244 enum reg_class
5245 m68k_secondary_reload_class (enum reg_class rclass,
5246 machine_mode mode, rtx x)
5247 {
5248 int regno;
5249
5250 regno = true_regnum (x);
5251
5252 /* If one operand of a movqi is an address register, the other
5253 operand must be a general register or constant. Other types
5254 of operand must be reloaded through a data register. */
5255 if (GET_MODE_SIZE (mode) == 1
5256 && reg_classes_intersect_p (rclass, ADDR_REGS)
5257 && !(INT_REGNO_P (regno) || CONSTANT_P (x)))
5258 return DATA_REGS;
5259
5260 /* PC-relative addresses must be loaded into an address register first. */
5261 if (TARGET_PCREL
5262 && !reg_class_subset_p (rclass, ADDR_REGS)
5263 && symbolic_operand (x, VOIDmode))
5264 return ADDR_REGS;
5265
5266 return NO_REGS;
5267 }
5268
5269 /* Implement PREFERRED_RELOAD_CLASS. */
5270
5271 enum reg_class
5272 m68k_preferred_reload_class (rtx x, enum reg_class rclass)
5273 {
5274 enum reg_class secondary_class;
5275
5276 /* If RCLASS might need a secondary reload, try restricting it to
5277 a class that doesn't. */
5278 secondary_class = m68k_secondary_reload_class (rclass, GET_MODE (x), x);
5279 if (secondary_class != NO_REGS
5280 && reg_class_subset_p (secondary_class, rclass))
5281 return secondary_class;
5282
5283 /* Prefer to use moveq for in-range constants. */
5284 if (GET_CODE (x) == CONST_INT
5285 && reg_class_subset_p (DATA_REGS, rclass)
5286 && IN_RANGE (INTVAL (x), -0x80, 0x7f))
5287 return DATA_REGS;
5288
5289 /* ??? Do we really need this now? */
5290 if (GET_CODE (x) == CONST_DOUBLE
5291 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
5292 {
5293 if (TARGET_HARD_FLOAT && reg_class_subset_p (FP_REGS, rclass))
5294 return FP_REGS;
5295
5296 return NO_REGS;
5297 }
5298
5299 return rclass;
5300 }
5301
5302 /* Return floating point values in a 68881 register. This makes 68881 code
5303 a little bit faster. It also makes -msoft-float code incompatible with
5304 hard-float code, so people have to be careful not to mix the two.
5305 For ColdFire it was decided the ABI incompatibility is undesirable.
5306 If there is need for a hard-float ABI it is probably worth doing it
5307 properly and also passing function arguments in FP registers. */
5308 rtx
5309 m68k_libcall_value (machine_mode mode)
5310 {
5311 switch (mode) {
5312 case E_SFmode:
5313 case E_DFmode:
5314 case E_XFmode:
5315 if (TARGET_68881)
5316 return gen_rtx_REG (mode, FP0_REG);
5317 break;
5318 default:
5319 break;
5320 }
5321
5322 return gen_rtx_REG (mode, m68k_libcall_value_in_a0_p ? A0_REG : D0_REG);
5323 }
5324
5325 /* Location in which function value is returned.
5326 NOTE: Due to differences in ABIs, don't call this function directly,
5327 use FUNCTION_VALUE instead. */
5328 rtx
5329 m68k_function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED)
5330 {
5331 machine_mode mode;
5332
5333 mode = TYPE_MODE (valtype);
5334 switch (mode) {
5335 case E_SFmode:
5336 case E_DFmode:
5337 case E_XFmode:
5338 if (TARGET_68881)
5339 return gen_rtx_REG (mode, FP0_REG);
5340 break;
5341 default:
5342 break;
5343 }
5344
5345 /* If the function returns a pointer, push that into %a0. */
5346 if (func && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (func))))
5347 /* For compatibility with the large body of existing code which
5348 does not always properly declare external functions returning
5349 pointer types, the m68k/SVR4 convention is to copy the value
5350 returned for pointer functions from a0 to d0 in the function
5351 epilogue, so that callers that have neglected to properly
5352 declare the callee can still find the correct return value in
5353 d0. */
5354 return gen_rtx_PARALLEL
5355 (mode,
5356 gen_rtvec (2,
5357 gen_rtx_EXPR_LIST (VOIDmode,
5358 gen_rtx_REG (mode, A0_REG),
5359 const0_rtx),
5360 gen_rtx_EXPR_LIST (VOIDmode,
5361 gen_rtx_REG (mode, D0_REG),
5362 const0_rtx)));
5363 else if (POINTER_TYPE_P (valtype))
5364 return gen_rtx_REG (mode, A0_REG);
5365 else
5366 return gen_rtx_REG (mode, D0_REG);
5367 }
5368
5369 /* Worker function for TARGET_RETURN_IN_MEMORY. */
5370 #if M68K_HONOR_TARGET_STRICT_ALIGNMENT
5371 static bool
5372 m68k_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
5373 {
5374 machine_mode mode = TYPE_MODE (type);
5375
5376 if (mode == BLKmode)
5377 return true;
5378
5379 /* If TYPE's known alignment is less than the alignment of MODE that
5380 would contain the structure, then return in memory. We need to
5381 do so to maintain the compatibility between code compiled with
5382 -mstrict-align and that compiled with -mno-strict-align. */
5383 if (AGGREGATE_TYPE_P (type)
5384 && TYPE_ALIGN (type) < GET_MODE_ALIGNMENT (mode))
5385 return true;
5386
5387 return false;
5388 }
5389 #endif
5390
5391 /* CPU to schedule the program for. */
5392 enum attr_cpu m68k_sched_cpu;
5393
5394 /* MAC to schedule the program for. */
5395 enum attr_mac m68k_sched_mac;
5396
5397 /* Operand type. */
5398 enum attr_op_type
5399 {
5400 /* No operand. */
5401 OP_TYPE_NONE,
5402
5403 /* Integer register. */
5404 OP_TYPE_RN,
5405
5406 /* FP register. */
5407 OP_TYPE_FPN,
5408
5409 /* Implicit mem reference (e.g. stack). */
5410 OP_TYPE_MEM1,
5411
5412 /* Memory without offset or indexing. EA modes 2, 3 and 4. */
5413 OP_TYPE_MEM234,
5414
5415 /* Memory with offset but without indexing. EA mode 5. */
5416 OP_TYPE_MEM5,
5417
5418 /* Memory with indexing. EA mode 6. */
5419 OP_TYPE_MEM6,
5420
5421 /* Memory referenced by absolute address. EA mode 7. */
5422 OP_TYPE_MEM7,
5423
5424 /* Immediate operand that doesn't require extension word. */
5425 OP_TYPE_IMM_Q,
5426
5427 /* Immediate 16 bit operand. */
5428 OP_TYPE_IMM_W,
5429
5430 /* Immediate 32 bit operand. */
5431 OP_TYPE_IMM_L
5432 };
5433
5434 /* Return type of memory ADDR_RTX refers to. */
5435 static enum attr_op_type
5436 sched_address_type (machine_mode mode, rtx addr_rtx)
5437 {
5438 struct m68k_address address;
5439
5440 if (symbolic_operand (addr_rtx, VOIDmode))
5441 return OP_TYPE_MEM7;
5442
5443 if (!m68k_decompose_address (mode, addr_rtx,
5444 reload_completed, &address))
5445 {
5446 gcc_assert (!reload_completed);
5447 /* Reload will likely fix the address to be in the register. */
5448 return OP_TYPE_MEM234;
5449 }
5450
5451 if (address.scale != 0)
5452 return OP_TYPE_MEM6;
5453
5454 if (address.base != NULL_RTX)
5455 {
5456 if (address.offset == NULL_RTX)
5457 return OP_TYPE_MEM234;
5458
5459 return OP_TYPE_MEM5;
5460 }
5461
5462 gcc_assert (address.offset != NULL_RTX);
5463
5464 return OP_TYPE_MEM7;
5465 }
5466
5467 /* Return X or Y (depending on OPX_P) operand of INSN. */
5468 static rtx
5469 sched_get_operand (rtx_insn *insn, bool opx_p)
5470 {
5471 int i;
5472
5473 if (recog_memoized (insn) < 0)
5474 gcc_unreachable ();
5475
5476 extract_constrain_insn_cached (insn);
5477
5478 if (opx_p)
5479 i = get_attr_opx (insn);
5480 else
5481 i = get_attr_opy (insn);
5482
5483 if (i >= recog_data.n_operands)
5484 return NULL;
5485
5486 return recog_data.operand[i];
5487 }
5488
5489 /* Return type of INSN's operand X (if OPX_P) or operand Y (if !OPX_P).
5490 If ADDRESS_P is true, return type of memory location operand refers to. */
5491 static enum attr_op_type
5492 sched_attr_op_type (rtx_insn *insn, bool opx_p, bool address_p)
5493 {
5494 rtx op;
5495
5496 op = sched_get_operand (insn, opx_p);
5497
5498 if (op == NULL)
5499 {
5500 gcc_assert (!reload_completed);
5501 return OP_TYPE_RN;
5502 }
5503
5504 if (address_p)
5505 return sched_address_type (QImode, op);
5506
5507 if (memory_operand (op, VOIDmode))
5508 return sched_address_type (GET_MODE (op), XEXP (op, 0));
5509
5510 if (register_operand (op, VOIDmode))
5511 {
5512 if ((!reload_completed && FLOAT_MODE_P (GET_MODE (op)))
5513 || (reload_completed && FP_REG_P (op)))
5514 return OP_TYPE_FPN;
5515
5516 return OP_TYPE_RN;
5517 }
5518
5519 if (GET_CODE (op) == CONST_INT)
5520 {
5521 int ival;
5522
5523 ival = INTVAL (op);
5524
5525 /* Check for quick constants. */
5526 switch (get_attr_type (insn))
5527 {
5528 case TYPE_ALUQ_L:
5529 if (IN_RANGE (ival, 1, 8) || IN_RANGE (ival, -8, -1))
5530 return OP_TYPE_IMM_Q;
5531
5532 gcc_assert (!reload_completed);
5533 break;
5534
5535 case TYPE_MOVEQ_L:
5536 if (USE_MOVQ (ival))
5537 return OP_TYPE_IMM_Q;
5538
5539 gcc_assert (!reload_completed);
5540 break;
5541
5542 case TYPE_MOV3Q_L:
5543 if (valid_mov3q_const (ival))
5544 return OP_TYPE_IMM_Q;
5545
5546 gcc_assert (!reload_completed);
5547 break;
5548
5549 default:
5550 break;
5551 }
5552
5553 if (IN_RANGE (ival, -0x8000, 0x7fff))
5554 return OP_TYPE_IMM_W;
5555
5556 return OP_TYPE_IMM_L;
5557 }
5558
5559 if (GET_CODE (op) == CONST_DOUBLE)
5560 {
5561 switch (GET_MODE (op))
5562 {
5563 case E_SFmode:
5564 return OP_TYPE_IMM_W;
5565
5566 case E_VOIDmode:
5567 case E_DFmode:
5568 return OP_TYPE_IMM_L;
5569
5570 default:
5571 gcc_unreachable ();
5572 }
5573 }
5574
5575 if (GET_CODE (op) == CONST
5576 || symbolic_operand (op, VOIDmode)
5577 || LABEL_P (op))
5578 {
5579 switch (GET_MODE (op))
5580 {
5581 case E_QImode:
5582 return OP_TYPE_IMM_Q;
5583
5584 case E_HImode:
5585 return OP_TYPE_IMM_W;
5586
5587 case E_SImode:
5588 return OP_TYPE_IMM_L;
5589
5590 default:
5591 if (symbolic_operand (m68k_unwrap_symbol (op, false), VOIDmode))
5592 /* Just a guess. */
5593 return OP_TYPE_IMM_W;
5594
5595 return OP_TYPE_IMM_L;
5596 }
5597 }
5598
5599 gcc_assert (!reload_completed);
5600
5601 if (FLOAT_MODE_P (GET_MODE (op)))
5602 return OP_TYPE_FPN;
5603
5604 return OP_TYPE_RN;
5605 }
5606
5607 /* Implement opx_type attribute.
5608 Return type of INSN's operand X.
5609 If ADDRESS_P is true, return type of memory location operand refers to. */
5610 enum attr_opx_type
5611 m68k_sched_attr_opx_type (rtx_insn *insn, int address_p)
5612 {
5613 switch (sched_attr_op_type (insn, true, address_p != 0))
5614 {
5615 case OP_TYPE_RN:
5616 return OPX_TYPE_RN;
5617
5618 case OP_TYPE_FPN:
5619 return OPX_TYPE_FPN;
5620
5621 case OP_TYPE_MEM1:
5622 return OPX_TYPE_MEM1;
5623
5624 case OP_TYPE_MEM234:
5625 return OPX_TYPE_MEM234;
5626
5627 case OP_TYPE_MEM5:
5628 return OPX_TYPE_MEM5;
5629
5630 case OP_TYPE_MEM6:
5631 return OPX_TYPE_MEM6;
5632
5633 case OP_TYPE_MEM7:
5634 return OPX_TYPE_MEM7;
5635
5636 case OP_TYPE_IMM_Q:
5637 return OPX_TYPE_IMM_Q;
5638
5639 case OP_TYPE_IMM_W:
5640 return OPX_TYPE_IMM_W;
5641
5642 case OP_TYPE_IMM_L:
5643 return OPX_TYPE_IMM_L;
5644
5645 default:
5646 gcc_unreachable ();
5647 }
5648 }
5649
5650 /* Implement opy_type attribute.
5651 Return type of INSN's operand Y.
5652 If ADDRESS_P is true, return type of memory location operand refers to. */
5653 enum attr_opy_type
5654 m68k_sched_attr_opy_type (rtx_insn *insn, int address_p)
5655 {
5656 switch (sched_attr_op_type (insn, false, address_p != 0))
5657 {
5658 case OP_TYPE_RN:
5659 return OPY_TYPE_RN;
5660
5661 case OP_TYPE_FPN:
5662 return OPY_TYPE_FPN;
5663
5664 case OP_TYPE_MEM1:
5665 return OPY_TYPE_MEM1;
5666
5667 case OP_TYPE_MEM234:
5668 return OPY_TYPE_MEM234;
5669
5670 case OP_TYPE_MEM5:
5671 return OPY_TYPE_MEM5;
5672
5673 case OP_TYPE_MEM6:
5674 return OPY_TYPE_MEM6;
5675
5676 case OP_TYPE_MEM7:
5677 return OPY_TYPE_MEM7;
5678
5679 case OP_TYPE_IMM_Q:
5680 return OPY_TYPE_IMM_Q;
5681
5682 case OP_TYPE_IMM_W:
5683 return OPY_TYPE_IMM_W;
5684
5685 case OP_TYPE_IMM_L:
5686 return OPY_TYPE_IMM_L;
5687
5688 default:
5689 gcc_unreachable ();
5690 }
5691 }
5692
5693 /* Return size of INSN as int. */
5694 static int
5695 sched_get_attr_size_int (rtx_insn *insn)
5696 {
5697 int size;
5698
5699 switch (get_attr_type (insn))
5700 {
5701 case TYPE_IGNORE:
5702 /* There should be no references to m68k_sched_attr_size for 'ignore'
5703 instructions. */
5704 gcc_unreachable ();
5705 return 0;
5706
5707 case TYPE_MUL_L:
5708 size = 2;
5709 break;
5710
5711 default:
5712 size = 1;
5713 break;
5714 }
5715
5716 switch (get_attr_opx_type (insn))
5717 {
5718 case OPX_TYPE_NONE:
5719 case OPX_TYPE_RN:
5720 case OPX_TYPE_FPN:
5721 case OPX_TYPE_MEM1:
5722 case OPX_TYPE_MEM234:
5723 case OPY_TYPE_IMM_Q:
5724 break;
5725
5726 case OPX_TYPE_MEM5:
5727 case OPX_TYPE_MEM6:
5728 /* Here we assume that most absolute references are short. */
5729 case OPX_TYPE_MEM7:
5730 case OPY_TYPE_IMM_W:
5731 ++size;
5732 break;
5733
5734 case OPY_TYPE_IMM_L:
5735 size += 2;
5736 break;
5737
5738 default:
5739 gcc_unreachable ();
5740 }
5741
5742 switch (get_attr_opy_type (insn))
5743 {
5744 case OPY_TYPE_NONE:
5745 case OPY_TYPE_RN:
5746 case OPY_TYPE_FPN:
5747 case OPY_TYPE_MEM1:
5748 case OPY_TYPE_MEM234:
5749 case OPY_TYPE_IMM_Q:
5750 break;
5751
5752 case OPY_TYPE_MEM5:
5753 case OPY_TYPE_MEM6:
5754 /* Here we assume that most absolute references are short. */
5755 case OPY_TYPE_MEM7:
5756 case OPY_TYPE_IMM_W:
5757 ++size;
5758 break;
5759
5760 case OPY_TYPE_IMM_L:
5761 size += 2;
5762 break;
5763
5764 default:
5765 gcc_unreachable ();
5766 }
5767
5768 if (size > 3)
5769 {
5770 gcc_assert (!reload_completed);
5771
5772 size = 3;
5773 }
5774
5775 return size;
5776 }
5777
5778 /* Return size of INSN as attribute enum value. */
5779 enum attr_size
5780 m68k_sched_attr_size (rtx_insn *insn)
5781 {
5782 switch (sched_get_attr_size_int (insn))
5783 {
5784 case 1:
5785 return SIZE_1;
5786
5787 case 2:
5788 return SIZE_2;
5789
5790 case 3:
5791 return SIZE_3;
5792
5793 default:
5794 gcc_unreachable ();
5795 }
5796 }
5797
5798 /* Return operand X or Y (depending on OPX_P) of INSN,
5799 if it is a MEM, or NULL overwise. */
5800 static enum attr_op_type
5801 sched_get_opxy_mem_type (rtx_insn *insn, bool opx_p)
5802 {
5803 if (opx_p)
5804 {
5805 switch (get_attr_opx_type (insn))
5806 {
5807 case OPX_TYPE_NONE:
5808 case OPX_TYPE_RN:
5809 case OPX_TYPE_FPN:
5810 case OPX_TYPE_IMM_Q:
5811 case OPX_TYPE_IMM_W:
5812 case OPX_TYPE_IMM_L:
5813 return OP_TYPE_RN;
5814
5815 case OPX_TYPE_MEM1:
5816 case OPX_TYPE_MEM234:
5817 case OPX_TYPE_MEM5:
5818 case OPX_TYPE_MEM7:
5819 return OP_TYPE_MEM1;
5820
5821 case OPX_TYPE_MEM6:
5822 return OP_TYPE_MEM6;
5823
5824 default:
5825 gcc_unreachable ();
5826 }
5827 }
5828 else
5829 {
5830 switch (get_attr_opy_type (insn))
5831 {
5832 case OPY_TYPE_NONE:
5833 case OPY_TYPE_RN:
5834 case OPY_TYPE_FPN:
5835 case OPY_TYPE_IMM_Q:
5836 case OPY_TYPE_IMM_W:
5837 case OPY_TYPE_IMM_L:
5838 return OP_TYPE_RN;
5839
5840 case OPY_TYPE_MEM1:
5841 case OPY_TYPE_MEM234:
5842 case OPY_TYPE_MEM5:
5843 case OPY_TYPE_MEM7:
5844 return OP_TYPE_MEM1;
5845
5846 case OPY_TYPE_MEM6:
5847 return OP_TYPE_MEM6;
5848
5849 default:
5850 gcc_unreachable ();
5851 }
5852 }
5853 }
5854
5855 /* Implement op_mem attribute. */
5856 enum attr_op_mem
5857 m68k_sched_attr_op_mem (rtx_insn *insn)
5858 {
5859 enum attr_op_type opx;
5860 enum attr_op_type opy;
5861
5862 opx = sched_get_opxy_mem_type (insn, true);
5863 opy = sched_get_opxy_mem_type (insn, false);
5864
5865 if (opy == OP_TYPE_RN && opx == OP_TYPE_RN)
5866 return OP_MEM_00;
5867
5868 if (opy == OP_TYPE_RN && opx == OP_TYPE_MEM1)
5869 {
5870 switch (get_attr_opx_access (insn))
5871 {
5872 case OPX_ACCESS_R:
5873 return OP_MEM_10;
5874
5875 case OPX_ACCESS_W:
5876 return OP_MEM_01;
5877
5878 case OPX_ACCESS_RW:
5879 return OP_MEM_11;
5880
5881 default:
5882 gcc_unreachable ();
5883 }
5884 }
5885
5886 if (opy == OP_TYPE_RN && opx == OP_TYPE_MEM6)
5887 {
5888 switch (get_attr_opx_access (insn))
5889 {
5890 case OPX_ACCESS_R:
5891 return OP_MEM_I0;
5892
5893 case OPX_ACCESS_W:
5894 return OP_MEM_0I;
5895
5896 case OPX_ACCESS_RW:
5897 return OP_MEM_I1;
5898
5899 default:
5900 gcc_unreachable ();
5901 }
5902 }
5903
5904 if (opy == OP_TYPE_MEM1 && opx == OP_TYPE_RN)
5905 return OP_MEM_10;
5906
5907 if (opy == OP_TYPE_MEM1 && opx == OP_TYPE_MEM1)
5908 {
5909 switch (get_attr_opx_access (insn))
5910 {
5911 case OPX_ACCESS_W:
5912 return OP_MEM_11;
5913
5914 default:
5915 gcc_assert (!reload_completed);
5916 return OP_MEM_11;
5917 }
5918 }
5919
5920 if (opy == OP_TYPE_MEM1 && opx == OP_TYPE_MEM6)
5921 {
5922 switch (get_attr_opx_access (insn))
5923 {
5924 case OPX_ACCESS_W:
5925 return OP_MEM_1I;
5926
5927 default:
5928 gcc_assert (!reload_completed);
5929 return OP_MEM_1I;
5930 }
5931 }
5932
5933 if (opy == OP_TYPE_MEM6 && opx == OP_TYPE_RN)
5934 return OP_MEM_I0;
5935
5936 if (opy == OP_TYPE_MEM6 && opx == OP_TYPE_MEM1)
5937 {
5938 switch (get_attr_opx_access (insn))
5939 {
5940 case OPX_ACCESS_W:
5941 return OP_MEM_I1;
5942
5943 default:
5944 gcc_assert (!reload_completed);
5945 return OP_MEM_I1;
5946 }
5947 }
5948
5949 gcc_assert (opy == OP_TYPE_MEM6 && opx == OP_TYPE_MEM6);
5950 gcc_assert (!reload_completed);
5951 return OP_MEM_I1;
5952 }
5953
5954 /* Data for ColdFire V4 index bypass.
5955 Producer modifies register that is used as index in consumer with
5956 specified scale. */
5957 static struct
5958 {
5959 /* Producer instruction. */
5960 rtx pro;
5961
5962 /* Consumer instruction. */
5963 rtx con;
5964
5965 /* Scale of indexed memory access within consumer.
5966 Or zero if bypass should not be effective at the moment. */
5967 int scale;
5968 } sched_cfv4_bypass_data;
5969
5970 /* An empty state that is used in m68k_sched_adjust_cost. */
5971 static state_t sched_adjust_cost_state;
5972
5973 /* Implement adjust_cost scheduler hook.
5974 Return adjusted COST of dependency LINK between DEF_INSN and INSN. */
5975 static int
5976 m68k_sched_adjust_cost (rtx_insn *insn, int, rtx_insn *def_insn, int cost,
5977 unsigned int)
5978 {
5979 int delay;
5980
5981 if (recog_memoized (def_insn) < 0
5982 || recog_memoized (insn) < 0)
5983 return cost;
5984
5985 if (sched_cfv4_bypass_data.scale == 1)
5986 /* Handle ColdFire V4 bypass for indexed address with 1x scale. */
5987 {
5988 /* haifa-sched.c: insn_cost () calls bypass_p () just before
5989 targetm.sched.adjust_cost (). Hence, we can be relatively sure
5990 that the data in sched_cfv4_bypass_data is up to date. */
5991 gcc_assert (sched_cfv4_bypass_data.pro == def_insn
5992 && sched_cfv4_bypass_data.con == insn);
5993
5994 if (cost < 3)
5995 cost = 3;
5996
5997 sched_cfv4_bypass_data.pro = NULL;
5998 sched_cfv4_bypass_data.con = NULL;
5999 sched_cfv4_bypass_data.scale = 0;
6000 }
6001 else
6002 gcc_assert (sched_cfv4_bypass_data.pro == NULL
6003 && sched_cfv4_bypass_data.con == NULL
6004 && sched_cfv4_bypass_data.scale == 0);
6005
6006 /* Don't try to issue INSN earlier than DFA permits.
6007 This is especially useful for instructions that write to memory,
6008 as their true dependence (default) latency is better to be set to 0
6009 to workaround alias analysis limitations.
6010 This is, in fact, a machine independent tweak, so, probably,
6011 it should be moved to haifa-sched.c: insn_cost (). */
6012 delay = min_insn_conflict_delay (sched_adjust_cost_state, def_insn, insn);
6013 if (delay > cost)
6014 cost = delay;
6015
6016 return cost;
6017 }
6018
6019 /* Return maximal number of insns that can be scheduled on a single cycle. */
6020 static int
6021 m68k_sched_issue_rate (void)
6022 {
6023 switch (m68k_sched_cpu)
6024 {
6025 case CPU_CFV1:
6026 case CPU_CFV2:
6027 case CPU_CFV3:
6028 return 1;
6029
6030 case CPU_CFV4:
6031 return 2;
6032
6033 default:
6034 gcc_unreachable ();
6035 return 0;
6036 }
6037 }
6038
6039 /* Maximal length of instruction for current CPU.
6040 E.g. it is 3 for any ColdFire core. */
6041 static int max_insn_size;
6042
6043 /* Data to model instruction buffer of CPU. */
6044 struct _sched_ib
6045 {
6046 /* True if instruction buffer model is modeled for current CPU. */
6047 bool enabled_p;
6048
6049 /* Size of the instruction buffer in words. */
6050 int size;
6051
6052 /* Number of filled words in the instruction buffer. */
6053 int filled;
6054
6055 /* Additional information about instruction buffer for CPUs that have
6056 a buffer of instruction records, rather then a plain buffer
6057 of instruction words. */
6058 struct _sched_ib_records
6059 {
6060 /* Size of buffer in records. */
6061 int n_insns;
6062
6063 /* Array to hold data on adjustments made to the size of the buffer. */
6064 int *adjust;
6065
6066 /* Index of the above array. */
6067 int adjust_index;
6068 } records;
6069
6070 /* An insn that reserves (marks empty) one word in the instruction buffer. */
6071 rtx insn;
6072 };
6073
6074 static struct _sched_ib sched_ib;
6075
6076 /* ID of memory unit. */
6077 static int sched_mem_unit_code;
6078
6079 /* Implementation of the targetm.sched.variable_issue () hook.
6080 It is called after INSN was issued. It returns the number of insns
6081 that can possibly get scheduled on the current cycle.
6082 It is used here to determine the effect of INSN on the instruction
6083 buffer. */
6084 static int
6085 m68k_sched_variable_issue (FILE *sched_dump ATTRIBUTE_UNUSED,
6086 int sched_verbose ATTRIBUTE_UNUSED,
6087 rtx_insn *insn, int can_issue_more)
6088 {
6089 int insn_size;
6090
6091 if (recog_memoized (insn) >= 0 && get_attr_type (insn) != TYPE_IGNORE)
6092 {
6093 switch (m68k_sched_cpu)
6094 {
6095 case CPU_CFV1:
6096 case CPU_CFV2:
6097 insn_size = sched_get_attr_size_int (insn);
6098 break;
6099
6100 case CPU_CFV3:
6101 insn_size = sched_get_attr_size_int (insn);
6102
6103 /* ColdFire V3 and V4 cores have instruction buffers that can
6104 accumulate up to 8 instructions regardless of instructions'
6105 sizes. So we should take care not to "prefetch" 24 one-word
6106 or 12 two-words instructions.
6107 To model this behavior we temporarily decrease size of the
6108 buffer by (max_insn_size - insn_size) for next 7 instructions. */
6109 {
6110 int adjust;
6111
6112 adjust = max_insn_size - insn_size;
6113 sched_ib.size -= adjust;
6114
6115 if (sched_ib.filled > sched_ib.size)
6116 sched_ib.filled = sched_ib.size;
6117
6118 sched_ib.records.adjust[sched_ib.records.adjust_index] = adjust;
6119 }
6120
6121 ++sched_ib.records.adjust_index;
6122 if (sched_ib.records.adjust_index == sched_ib.records.n_insns)
6123 sched_ib.records.adjust_index = 0;
6124
6125 /* Undo adjustment we did 7 instructions ago. */
6126 sched_ib.size
6127 += sched_ib.records.adjust[sched_ib.records.adjust_index];
6128
6129 break;
6130
6131 case CPU_CFV4:
6132 gcc_assert (!sched_ib.enabled_p);
6133 insn_size = 0;
6134 break;
6135
6136 default:
6137 gcc_unreachable ();
6138 }
6139
6140 if (insn_size > sched_ib.filled)
6141 /* Scheduling for register pressure does not always take DFA into
6142 account. Workaround instruction buffer not being filled enough. */
6143 {
6144 gcc_assert (sched_pressure == SCHED_PRESSURE_WEIGHTED);
6145 insn_size = sched_ib.filled;
6146 }
6147
6148 --can_issue_more;
6149 }
6150 else if (GET_CODE (PATTERN (insn)) == ASM_INPUT
6151 || asm_noperands (PATTERN (insn)) >= 0)
6152 insn_size = sched_ib.filled;
6153 else
6154 insn_size = 0;
6155
6156 sched_ib.filled -= insn_size;
6157
6158 return can_issue_more;
6159 }
6160
6161 /* Return how many instructions should scheduler lookahead to choose the
6162 best one. */
6163 static int
6164 m68k_sched_first_cycle_multipass_dfa_lookahead (void)
6165 {
6166 return m68k_sched_issue_rate () - 1;
6167 }
6168
6169 /* Implementation of targetm.sched.init_global () hook.
6170 It is invoked once per scheduling pass and is used here
6171 to initialize scheduler constants. */
6172 static void
6173 m68k_sched_md_init_global (FILE *sched_dump ATTRIBUTE_UNUSED,
6174 int sched_verbose ATTRIBUTE_UNUSED,
6175 int n_insns ATTRIBUTE_UNUSED)
6176 {
6177 /* Check that all instructions have DFA reservations and
6178 that all instructions can be issued from a clean state. */
6179 if (flag_checking)
6180 {
6181 rtx_insn *insn;
6182 state_t state;
6183
6184 state = alloca (state_size ());
6185
6186 for (insn = get_insns (); insn != NULL; insn = NEXT_INSN (insn))
6187 {
6188 if (INSN_P (insn) && recog_memoized (insn) >= 0)
6189 {
6190 gcc_assert (insn_has_dfa_reservation_p (insn));
6191
6192 state_reset (state);
6193 if (state_transition (state, insn) >= 0)
6194 gcc_unreachable ();
6195 }
6196 }
6197 }
6198
6199 /* Setup target cpu. */
6200
6201 /* ColdFire V4 has a set of features to keep its instruction buffer full
6202 (e.g., a separate memory bus for instructions) and, hence, we do not model
6203 buffer for this CPU. */
6204 sched_ib.enabled_p = (m68k_sched_cpu != CPU_CFV4);
6205
6206 switch (m68k_sched_cpu)
6207 {
6208 case CPU_CFV4:
6209 sched_ib.filled = 0;
6210
6211 /* FALLTHRU */
6212
6213 case CPU_CFV1:
6214 case CPU_CFV2:
6215 max_insn_size = 3;
6216 sched_ib.records.n_insns = 0;
6217 sched_ib.records.adjust = NULL;
6218 break;
6219
6220 case CPU_CFV3:
6221 max_insn_size = 3;
6222 sched_ib.records.n_insns = 8;
6223 sched_ib.records.adjust = XNEWVEC (int, sched_ib.records.n_insns);
6224 break;
6225
6226 default:
6227 gcc_unreachable ();
6228 }
6229
6230 sched_mem_unit_code = get_cpu_unit_code ("cf_mem1");
6231
6232 sched_adjust_cost_state = xmalloc (state_size ());
6233 state_reset (sched_adjust_cost_state);
6234
6235 start_sequence ();
6236 emit_insn (gen_ib ());
6237 sched_ib.insn = get_insns ();
6238 end_sequence ();
6239 }
6240
6241 /* Scheduling pass is now finished. Free/reset static variables. */
6242 static void
6243 m68k_sched_md_finish_global (FILE *dump ATTRIBUTE_UNUSED,
6244 int verbose ATTRIBUTE_UNUSED)
6245 {
6246 sched_ib.insn = NULL;
6247
6248 free (sched_adjust_cost_state);
6249 sched_adjust_cost_state = NULL;
6250
6251 sched_mem_unit_code = 0;
6252
6253 free (sched_ib.records.adjust);
6254 sched_ib.records.adjust = NULL;
6255 sched_ib.records.n_insns = 0;
6256 max_insn_size = 0;
6257 }
6258
6259 /* Implementation of targetm.sched.init () hook.
6260 It is invoked each time scheduler starts on the new block (basic block or
6261 extended basic block). */
6262 static void
6263 m68k_sched_md_init (FILE *sched_dump ATTRIBUTE_UNUSED,
6264 int sched_verbose ATTRIBUTE_UNUSED,
6265 int n_insns ATTRIBUTE_UNUSED)
6266 {
6267 switch (m68k_sched_cpu)
6268 {
6269 case CPU_CFV1:
6270 case CPU_CFV2:
6271 sched_ib.size = 6;
6272 break;
6273
6274 case CPU_CFV3:
6275 sched_ib.size = sched_ib.records.n_insns * max_insn_size;
6276
6277 memset (sched_ib.records.adjust, 0,
6278 sched_ib.records.n_insns * sizeof (*sched_ib.records.adjust));
6279 sched_ib.records.adjust_index = 0;
6280 break;
6281
6282 case CPU_CFV4:
6283 gcc_assert (!sched_ib.enabled_p);
6284 sched_ib.size = 0;
6285 break;
6286
6287 default:
6288 gcc_unreachable ();
6289 }
6290
6291 if (sched_ib.enabled_p)
6292 /* haifa-sched.c: schedule_block () calls advance_cycle () just before
6293 the first cycle. Workaround that. */
6294 sched_ib.filled = -2;
6295 }
6296
6297 /* Implementation of targetm.sched.dfa_pre_advance_cycle () hook.
6298 It is invoked just before current cycle finishes and is used here
6299 to track if instruction buffer got its two words this cycle. */
6300 static void
6301 m68k_sched_dfa_pre_advance_cycle (void)
6302 {
6303 if (!sched_ib.enabled_p)
6304 return;
6305
6306 if (!cpu_unit_reservation_p (curr_state, sched_mem_unit_code))
6307 {
6308 sched_ib.filled += 2;
6309
6310 if (sched_ib.filled > sched_ib.size)
6311 sched_ib.filled = sched_ib.size;
6312 }
6313 }
6314
6315 /* Implementation of targetm.sched.dfa_post_advance_cycle () hook.
6316 It is invoked just after new cycle begins and is used here
6317 to setup number of filled words in the instruction buffer so that
6318 instructions which won't have all their words prefetched would be
6319 stalled for a cycle. */
6320 static void
6321 m68k_sched_dfa_post_advance_cycle (void)
6322 {
6323 int i;
6324
6325 if (!sched_ib.enabled_p)
6326 return;
6327
6328 /* Setup number of prefetched instruction words in the instruction
6329 buffer. */
6330 i = max_insn_size - sched_ib.filled;
6331
6332 while (--i >= 0)
6333 {
6334 if (state_transition (curr_state, sched_ib.insn) >= 0)
6335 /* Pick up scheduler state. */
6336 ++sched_ib.filled;
6337 }
6338 }
6339
6340 /* Return X or Y (depending on OPX_P) operand of INSN,
6341 if it is an integer register, or NULL overwise. */
6342 static rtx
6343 sched_get_reg_operand (rtx_insn *insn, bool opx_p)
6344 {
6345 rtx op = NULL;
6346
6347 if (opx_p)
6348 {
6349 if (get_attr_opx_type (insn) == OPX_TYPE_RN)
6350 {
6351 op = sched_get_operand (insn, true);
6352 gcc_assert (op != NULL);
6353
6354 if (!reload_completed && !REG_P (op))
6355 return NULL;
6356 }
6357 }
6358 else
6359 {
6360 if (get_attr_opy_type (insn) == OPY_TYPE_RN)
6361 {
6362 op = sched_get_operand (insn, false);
6363 gcc_assert (op != NULL);
6364
6365 if (!reload_completed && !REG_P (op))
6366 return NULL;
6367 }
6368 }
6369
6370 return op;
6371 }
6372
6373 /* Return true, if X or Y (depending on OPX_P) operand of INSN
6374 is a MEM. */
6375 static bool
6376 sched_mem_operand_p (rtx_insn *insn, bool opx_p)
6377 {
6378 switch (sched_get_opxy_mem_type (insn, opx_p))
6379 {
6380 case OP_TYPE_MEM1:
6381 case OP_TYPE_MEM6:
6382 return true;
6383
6384 default:
6385 return false;
6386 }
6387 }
6388
6389 /* Return X or Y (depending on OPX_P) operand of INSN,
6390 if it is a MEM, or NULL overwise. */
6391 static rtx
6392 sched_get_mem_operand (rtx_insn *insn, bool must_read_p, bool must_write_p)
6393 {
6394 bool opx_p;
6395 bool opy_p;
6396
6397 opx_p = false;
6398 opy_p = false;
6399
6400 if (must_read_p)
6401 {
6402 opx_p = true;
6403 opy_p = true;
6404 }
6405
6406 if (must_write_p)
6407 {
6408 opx_p = true;
6409 opy_p = false;
6410 }
6411
6412 if (opy_p && sched_mem_operand_p (insn, false))
6413 return sched_get_operand (insn, false);
6414
6415 if (opx_p && sched_mem_operand_p (insn, true))
6416 return sched_get_operand (insn, true);
6417
6418 gcc_unreachable ();
6419 return NULL;
6420 }
6421
6422 /* Return non-zero if PRO modifies register used as part of
6423 address in CON. */
6424 int
6425 m68k_sched_address_bypass_p (rtx_insn *pro, rtx_insn *con)
6426 {
6427 rtx pro_x;
6428 rtx con_mem_read;
6429
6430 pro_x = sched_get_reg_operand (pro, true);
6431 if (pro_x == NULL)
6432 return 0;
6433
6434 con_mem_read = sched_get_mem_operand (con, true, false);
6435 gcc_assert (con_mem_read != NULL);
6436
6437 if (reg_mentioned_p (pro_x, con_mem_read))
6438 return 1;
6439
6440 return 0;
6441 }
6442
6443 /* Helper function for m68k_sched_indexed_address_bypass_p.
6444 if PRO modifies register used as index in CON,
6445 return scale of indexed memory access in CON. Return zero overwise. */
6446 static int
6447 sched_get_indexed_address_scale (rtx_insn *pro, rtx_insn *con)
6448 {
6449 rtx reg;
6450 rtx mem;
6451 struct m68k_address address;
6452
6453 reg = sched_get_reg_operand (pro, true);
6454 if (reg == NULL)
6455 return 0;
6456
6457 mem = sched_get_mem_operand (con, true, false);
6458 gcc_assert (mem != NULL && MEM_P (mem));
6459
6460 if (!m68k_decompose_address (GET_MODE (mem), XEXP (mem, 0), reload_completed,
6461 &address))
6462 gcc_unreachable ();
6463
6464 if (REGNO (reg) == REGNO (address.index))
6465 {
6466 gcc_assert (address.scale != 0);
6467 return address.scale;
6468 }
6469
6470 return 0;
6471 }
6472
6473 /* Return non-zero if PRO modifies register used
6474 as index with scale 2 or 4 in CON. */
6475 int
6476 m68k_sched_indexed_address_bypass_p (rtx_insn *pro, rtx_insn *con)
6477 {
6478 gcc_assert (sched_cfv4_bypass_data.pro == NULL
6479 && sched_cfv4_bypass_data.con == NULL
6480 && sched_cfv4_bypass_data.scale == 0);
6481
6482 switch (sched_get_indexed_address_scale (pro, con))
6483 {
6484 case 1:
6485 /* We can't have a variable latency bypass, so
6486 remember to adjust the insn cost in adjust_cost hook. */
6487 sched_cfv4_bypass_data.pro = pro;
6488 sched_cfv4_bypass_data.con = con;
6489 sched_cfv4_bypass_data.scale = 1;
6490 return 0;
6491
6492 case 2:
6493 case 4:
6494 return 1;
6495
6496 default:
6497 return 0;
6498 }
6499 }
6500
6501 /* We generate a two-instructions program at M_TRAMP :
6502 movea.l &CHAIN_VALUE,%a0
6503 jmp FNADDR
6504 where %a0 can be modified by changing STATIC_CHAIN_REGNUM. */
6505
6506 static void
6507 m68k_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value)
6508 {
6509 rtx fnaddr = XEXP (DECL_RTL (fndecl), 0);
6510 rtx mem;
6511
6512 gcc_assert (ADDRESS_REGNO_P (STATIC_CHAIN_REGNUM));
6513
6514 mem = adjust_address (m_tramp, HImode, 0);
6515 emit_move_insn (mem, GEN_INT(0x207C + ((STATIC_CHAIN_REGNUM-8) << 9)));
6516 mem = adjust_address (m_tramp, SImode, 2);
6517 emit_move_insn (mem, chain_value);
6518
6519 mem = adjust_address (m_tramp, HImode, 6);
6520 emit_move_insn (mem, GEN_INT(0x4EF9));
6521 mem = adjust_address (m_tramp, SImode, 8);
6522 emit_move_insn (mem, fnaddr);
6523
6524 FINALIZE_TRAMPOLINE (XEXP (m_tramp, 0));
6525 }
6526
6527 /* On the 68000, the RTS insn cannot pop anything.
6528 On the 68010, the RTD insn may be used to pop them if the number
6529 of args is fixed, but if the number is variable then the caller
6530 must pop them all. RTD can't be used for library calls now
6531 because the library is compiled with the Unix compiler.
6532 Use of RTD is a selectable option, since it is incompatible with
6533 standard Unix calling sequences. If the option is not selected,
6534 the caller must always pop the args. */
6535
6536 static int
6537 m68k_return_pops_args (tree fundecl, tree funtype, int size)
6538 {
6539 return ((TARGET_RTD
6540 && (!fundecl
6541 || TREE_CODE (fundecl) != IDENTIFIER_NODE)
6542 && (!stdarg_p (funtype)))
6543 ? size : 0);
6544 }
6545
6546 /* Make sure everything's fine if we *don't* have a given processor.
6547 This assumes that putting a register in fixed_regs will keep the
6548 compiler's mitts completely off it. We don't bother to zero it out
6549 of register classes. */
6550
6551 static void
6552 m68k_conditional_register_usage (void)
6553 {
6554 int i;
6555 HARD_REG_SET x;
6556 if (!TARGET_HARD_FLOAT)
6557 {
6558 COPY_HARD_REG_SET (x, reg_class_contents[(int)FP_REGS]);
6559 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
6560 if (TEST_HARD_REG_BIT (x, i))
6561 fixed_regs[i] = call_used_regs[i] = 1;
6562 }
6563 if (flag_pic)
6564 fixed_regs[PIC_REG] = call_used_regs[PIC_REG] = 1;
6565 }
6566
6567 static void
6568 m68k_init_sync_libfuncs (void)
6569 {
6570 init_sync_libfuncs (UNITS_PER_WORD);
6571 }
6572
6573 /* Implements EPILOGUE_USES. All registers are live on exit from an
6574 interrupt routine. */
6575 bool
6576 m68k_epilogue_uses (int regno ATTRIBUTE_UNUSED)
6577 {
6578 return (reload_completed
6579 && (m68k_get_function_kind (current_function_decl)
6580 == m68k_fk_interrupt_handler));
6581 }
6582
6583
6584 /* Implement TARGET_C_EXCESS_PRECISION.
6585
6586 Set the value of FLT_EVAL_METHOD in float.h. When using 68040 fp
6587 instructions, we get proper intermediate rounding, otherwise we
6588 get extended precision results. */
6589
6590 static enum flt_eval_method
6591 m68k_excess_precision (enum excess_precision_type type)
6592 {
6593 switch (type)
6594 {
6595 case EXCESS_PRECISION_TYPE_FAST:
6596 /* The fastest type to promote to will always be the native type,
6597 whether that occurs with implicit excess precision or
6598 otherwise. */
6599 return FLT_EVAL_METHOD_PROMOTE_TO_FLOAT;
6600 case EXCESS_PRECISION_TYPE_STANDARD:
6601 case EXCESS_PRECISION_TYPE_IMPLICIT:
6602 /* Otherwise, the excess precision we want when we are
6603 in a standards compliant mode, and the implicit precision we
6604 provide can be identical. */
6605 if (TARGET_68040 || ! TARGET_68881)
6606 return FLT_EVAL_METHOD_PROMOTE_TO_FLOAT;
6607
6608 return FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE;
6609 default:
6610 gcc_unreachable ();
6611 }
6612 return FLT_EVAL_METHOD_UNPREDICTABLE;
6613 }
6614
6615 #include "gt-m68k.h"