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