m68k.md (movsi_cfv4): New pattern to allow mov3q.
[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
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 2, 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 COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "rtl.h"
29 #include "function.h"
30 #include "regs.h"
31 #include "hard-reg-set.h"
32 #include "real.h"
33 #include "insn-config.h"
34 #include "conditions.h"
35 #include "output.h"
36 #include "insn-attr.h"
37 #include "recog.h"
38 #include "toplev.h"
39 #include "expr.h"
40 #include "reload.h"
41 #include "tm_p.h"
42 #include "target.h"
43 #include "target-def.h"
44 #include "debug.h"
45 #include "flags.h"
46
47 enum reg_class regno_reg_class[] =
48 {
49 DATA_REGS, DATA_REGS, DATA_REGS, DATA_REGS,
50 DATA_REGS, DATA_REGS, DATA_REGS, DATA_REGS,
51 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
52 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
53 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
54 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
55 ADDR_REGS
56 };
57
58
59 /* The ASM_DOT macro allows easy string pasting to handle the differences
60 between MOTOROLA and MIT syntaxes in asm_fprintf(), which doesn't
61 support the %. option. */
62 #if MOTOROLA
63 # define ASM_DOT "."
64 # define ASM_DOTW ".w"
65 # define ASM_DOTL ".l"
66 #else
67 # define ASM_DOT ""
68 # define ASM_DOTW ""
69 # define ASM_DOTL ""
70 #endif
71
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 unsigned int reg_rev_mask;
89
90 /* FPU registers. */
91 int fpu_no;
92 unsigned int fpu_mask;
93 unsigned int fpu_rev_mask;
94
95 /* Offsets relative to ARG_POINTER. */
96 HOST_WIDE_INT frame_pointer_offset;
97 HOST_WIDE_INT stack_pointer_offset;
98
99 /* Function which the above information refers to. */
100 int funcdef_no;
101 };
102
103 /* Current frame information calculated by m68k_compute_frame_layout(). */
104 static struct m68k_frame current_frame;
105
106 static rtx find_addr_reg (rtx);
107 static const char *singlemove_string (rtx *);
108 static void m68k_output_function_prologue (FILE *, HOST_WIDE_INT);
109 static void m68k_output_function_epilogue (FILE *, HOST_WIDE_INT);
110 #ifdef M68K_TARGET_COFF
111 static void m68k_coff_asm_named_section (const char *, unsigned int);
112 #endif /* M68K_TARGET_COFF */
113 static void m68k_output_mi_thunk (FILE *, tree, HOST_WIDE_INT,
114 HOST_WIDE_INT, tree);
115 static rtx m68k_struct_value_rtx (tree, int);
116 static bool m68k_interrupt_function_p (tree func);
117 static tree m68k_handle_fndecl_attribute (tree *node, tree name,
118 tree args, int flags,
119 bool *no_add_attrs);
120 static void m68k_compute_frame_layout (void);
121 static bool m68k_save_reg (unsigned int regno, bool interrupt_handler);
122 static int const_int_cost (rtx);
123 static bool m68k_rtx_costs (rtx, int, int, int *);
124 \f
125
126 /* Specify the identification number of the library being built */
127 const char *m68k_library_id_string;
128
129 /* Nonzero if the last compare/test insn had FP operands. The
130 sCC expanders peek at this to determine what to do for the
131 68060, which has no fsCC instructions. */
132 int m68k_last_compare_had_fp_operands;
133 \f
134 /* Initialize the GCC target structure. */
135
136 #if INT_OP_GROUP == INT_OP_DOT_WORD
137 #undef TARGET_ASM_ALIGNED_HI_OP
138 #define TARGET_ASM_ALIGNED_HI_OP "\t.word\t"
139 #endif
140
141 #if INT_OP_GROUP == INT_OP_NO_DOT
142 #undef TARGET_ASM_BYTE_OP
143 #define TARGET_ASM_BYTE_OP "\tbyte\t"
144 #undef TARGET_ASM_ALIGNED_HI_OP
145 #define TARGET_ASM_ALIGNED_HI_OP "\tshort\t"
146 #undef TARGET_ASM_ALIGNED_SI_OP
147 #define TARGET_ASM_ALIGNED_SI_OP "\tlong\t"
148 #endif
149
150 #if INT_OP_GROUP == INT_OP_DC
151 #undef TARGET_ASM_BYTE_OP
152 #define TARGET_ASM_BYTE_OP "\tdc.b\t"
153 #undef TARGET_ASM_ALIGNED_HI_OP
154 #define TARGET_ASM_ALIGNED_HI_OP "\tdc.w\t"
155 #undef TARGET_ASM_ALIGNED_SI_OP
156 #define TARGET_ASM_ALIGNED_SI_OP "\tdc.l\t"
157 #endif
158
159 #undef TARGET_ASM_UNALIGNED_HI_OP
160 #define TARGET_ASM_UNALIGNED_HI_OP TARGET_ASM_ALIGNED_HI_OP
161 #undef TARGET_ASM_UNALIGNED_SI_OP
162 #define TARGET_ASM_UNALIGNED_SI_OP TARGET_ASM_ALIGNED_SI_OP
163
164 #undef TARGET_ASM_FUNCTION_PROLOGUE
165 #define TARGET_ASM_FUNCTION_PROLOGUE m68k_output_function_prologue
166 #undef TARGET_ASM_FUNCTION_EPILOGUE
167 #define TARGET_ASM_FUNCTION_EPILOGUE m68k_output_function_epilogue
168
169 #undef TARGET_ASM_OUTPUT_MI_THUNK
170 #define TARGET_ASM_OUTPUT_MI_THUNK m68k_output_mi_thunk
171 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
172 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall
173
174 #undef TARGET_ASM_FILE_START_APP_OFF
175 #define TARGET_ASM_FILE_START_APP_OFF true
176
177 #undef TARGET_RTX_COSTS
178 #define TARGET_RTX_COSTS m68k_rtx_costs
179
180 #undef TARGET_ATTRIBUTE_TABLE
181 #define TARGET_ATTRIBUTE_TABLE m68k_attribute_table
182
183 #undef TARGET_PROMOTE_PROTOTYPES
184 #define TARGET_PROMOTE_PROTOTYPES hook_bool_tree_true
185
186 #undef TARGET_STRUCT_VALUE_RTX
187 #define TARGET_STRUCT_VALUE_RTX m68k_struct_value_rtx
188
189 static const struct attribute_spec m68k_attribute_table[] =
190 {
191 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
192 { "interrupt_handler", 0, 0, true, false, false, m68k_handle_fndecl_attribute },
193 { NULL, 0, 0, false, false, false, NULL }
194 };
195
196 struct gcc_target targetm = TARGET_INITIALIZER;
197 \f
198 /* Sometimes certain combinations of command options do not make
199 sense on a particular target machine. You can define a macro
200 `OVERRIDE_OPTIONS' to take account of this. This macro, if
201 defined, is executed once just after all the command options have
202 been parsed.
203
204 Don't use this macro to turn on various extra optimizations for
205 `-O'. That is what `OPTIMIZATION_OPTIONS' is for. */
206
207 void
208 override_options (void)
209 {
210 /* Library identification */
211 if (m68k_library_id_string)
212 {
213 int id;
214
215 if (! TARGET_ID_SHARED_LIBRARY)
216 error ("-mshared-library-id= specified without -mid-shared-library");
217 id = atoi (m68k_library_id_string);
218 if (id < 0 || id > MAX_LIBRARY_ID)
219 error ("-mshared-library-id=%d is not between 0 and %d", id, MAX_LIBRARY_ID);
220
221 /* From now on, m68k_library_id_string will contain the library offset. */
222 asprintf ((char **)&m68k_library_id_string, "%d", (id * -4) - 4);
223 }
224 else
225 /* If TARGET_ID_SHARED_LIBRARY is enabled, this will point to the
226 current library. */
227 m68k_library_id_string = "_current_shared_library_a5_offset_";
228
229 /* Sanity check to ensure that msep-data and mid-sahred-library are not
230 * both specified together. Doing so simply doesn't make sense.
231 */
232 if (TARGET_SEP_DATA && TARGET_ID_SHARED_LIBRARY)
233 error ("cannot specify both -msep-data and -mid-shared-library");
234
235 /* If we're generating code for a separate A5 relative data segment,
236 * we've got to enable -fPIC as well. This might be relaxable to
237 * -fpic but it hasn't been tested properly.
238 */
239 if (TARGET_SEP_DATA || TARGET_ID_SHARED_LIBRARY)
240 flag_pic = 2;
241
242 /* -fPIC uses 32-bit pc-relative displacements, which don't exist
243 until the 68020. */
244 if (!TARGET_68020 && !TARGET_COLDFIRE && (flag_pic == 2))
245 error("-fPIC is not currently supported on the 68000 or 68010\n");
246
247 /* ??? A historic way of turning on pic, or is this intended to
248 be an embedded thing that doesn't have the same name binding
249 significance that it does on hosted ELF systems? */
250 if (TARGET_PCREL && flag_pic == 0)
251 flag_pic = 1;
252
253 /* Turn off function cse if we are doing PIC. We always want function call
254 to be done as `bsr foo@PLTPC', so it will force the assembler to create
255 the PLT entry for `foo'. Doing function cse will cause the address of
256 `foo' to be loaded into a register, which is exactly what we want to
257 avoid when we are doing PIC on svr4 m68k. */
258 if (flag_pic)
259 flag_no_function_cse = 1;
260
261 SUBTARGET_OVERRIDE_OPTIONS;
262 }
263 \f
264 /* Return nonzero if FUNC is an interrupt function as specified by the
265 "interrupt_handler" attribute. */
266 static bool
267 m68k_interrupt_function_p(tree func)
268 {
269 tree a;
270
271 if (TREE_CODE (func) != FUNCTION_DECL)
272 return false;
273
274 a = lookup_attribute ("interrupt_handler", DECL_ATTRIBUTES (func));
275 return (a != NULL_TREE);
276 }
277
278 /* Handle an attribute requiring a FUNCTION_DECL; arguments as in
279 struct attribute_spec.handler. */
280 static tree
281 m68k_handle_fndecl_attribute (tree *node, tree name,
282 tree args ATTRIBUTE_UNUSED,
283 int flags ATTRIBUTE_UNUSED,
284 bool *no_add_attrs)
285 {
286 if (TREE_CODE (*node) != FUNCTION_DECL)
287 {
288 warning ("`%s' attribute only applies to functions",
289 IDENTIFIER_POINTER (name));
290 *no_add_attrs = true;
291 }
292
293 return NULL_TREE;
294 }
295
296 static void
297 m68k_compute_frame_layout (void)
298 {
299 int regno, saved;
300 unsigned int mask, rmask;
301 bool interrupt_handler = m68k_interrupt_function_p (current_function_decl);
302
303 /* Only compute the frame once per function.
304 Don't cache information until reload has been completed. */
305 if (current_frame.funcdef_no == current_function_funcdef_no
306 && reload_completed)
307 return;
308
309 current_frame.size = (get_frame_size () + 3) & -4;
310
311 mask = rmask = saved = 0;
312 for (regno = 0; regno < 16; regno++)
313 if (m68k_save_reg (regno, interrupt_handler))
314 {
315 mask |= 1 << regno;
316 rmask |= 1 << (15 - regno);
317 saved++;
318 }
319 current_frame.offset = saved * 4;
320 current_frame.reg_no = saved;
321 current_frame.reg_mask = mask;
322 current_frame.reg_rev_mask = rmask;
323
324 current_frame.foffset = 0;
325 mask = rmask = saved = 0;
326 if (TARGET_68881 /* || TARGET_CFV4E */)
327 {
328 for (regno = 16; regno < 24; regno++)
329 if (m68k_save_reg (regno, interrupt_handler))
330 {
331 mask |= 1 << (regno - 16);
332 rmask |= 1 << (23 - regno);
333 saved++;
334 }
335 current_frame.foffset = saved * 12 /* (TARGET_CFV4E ? 8 : 12) */;
336 current_frame.offset += current_frame.foffset;
337 }
338 current_frame.fpu_no = saved;
339 current_frame.fpu_mask = mask;
340 current_frame.fpu_rev_mask = rmask;
341
342 /* Remember what function this frame refers to. */
343 current_frame.funcdef_no = current_function_funcdef_no;
344 }
345
346 HOST_WIDE_INT
347 m68k_initial_elimination_offset (int from, int to)
348 {
349 /* FIXME: The correct offset to compute here would appear to be
350 (frame_pointer_needed ? -UNITS_PER_WORD * 2 : -UNITS_PER_WORD);
351 but for some obscure reason, this must be 0 to get correct code. */
352 if (from == ARG_POINTER_REGNUM && to == FRAME_POINTER_REGNUM)
353 return 0;
354
355 m68k_compute_frame_layout ();
356
357 if (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
358 return current_frame.offset + current_frame.size + (frame_pointer_needed ? -UNITS_PER_WORD * 2 : -UNITS_PER_WORD);
359 else if (from == FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
360 return current_frame.offset + current_frame.size;
361
362 abort();
363 }
364
365 /* Refer to the array `regs_ever_live' to determine which registers
366 to save; `regs_ever_live[I]' is nonzero if register number I
367 is ever used in the function. This function is responsible for
368 knowing which registers should not be saved even if used.
369 Return true if we need to save REGNO. */
370
371 static bool
372 m68k_save_reg (unsigned int regno, bool interrupt_handler)
373 {
374 if (flag_pic && current_function_uses_pic_offset_table
375 && regno == PIC_OFFSET_TABLE_REGNUM)
376 return true;
377
378 if (current_function_calls_eh_return)
379 {
380 unsigned int i;
381 for (i = 0; ; i++)
382 {
383 unsigned int test = EH_RETURN_DATA_REGNO (i);
384 if (test == INVALID_REGNUM)
385 break;
386 if (test == regno)
387 return true;
388 }
389 }
390
391 /* Fixed regs we never touch. */
392 if (fixed_regs[regno])
393 return false;
394
395 /* The frame pointer (if it is such) is handled specially. */
396 if (regno == FRAME_POINTER_REGNUM && frame_pointer_needed)
397 return false;
398
399 /* Interrupt handlers must also save call_used_regs
400 if they are live or when calling nested functions. */
401 if (interrupt_handler)
402 {
403 if (regs_ever_live[regno])
404 return true;
405
406 if (!current_function_is_leaf && call_used_regs[regno])
407 return true;
408 }
409
410 /* Never need to save registers that aren't touched. */
411 if (!regs_ever_live[regno])
412 return false;
413
414 /* Otherwise save everything that isn't call-clobbered. */
415 return !call_used_regs[regno];
416 }
417
418 /* This function generates the assembly code for function entry.
419 STREAM is a stdio stream to output the code to.
420 SIZE is an int: how many units of temporary storage to allocate. */
421
422 static void
423 m68k_output_function_prologue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
424 {
425 HOST_WIDE_INT fsize_with_regs;
426 HOST_WIDE_INT cfa_offset = INCOMING_FRAME_SP_OFFSET;
427
428 m68k_compute_frame_layout();
429
430 /* If the stack limit is a symbol, we can check it here,
431 before actually allocating the space. */
432 if (current_function_limit_stack
433 && GET_CODE (stack_limit_rtx) == SYMBOL_REF)
434 asm_fprintf (stream, "\tcmp" ASM_DOT "l %I%s+%wd,%Rsp\n\ttrapcs\n",
435 XSTR (stack_limit_rtx, 0), current_frame.size + 4);
436
437 /* On ColdFire add register save into initial stack frame setup, if possible. */
438 fsize_with_regs = current_frame.size;
439 if (TARGET_COLDFIRE && current_frame.reg_no > 2)
440 fsize_with_regs += current_frame.reg_no * 4;
441
442 if (frame_pointer_needed)
443 {
444 if (current_frame.size == 0 && TARGET_68040)
445 /* on the 68040, pea + move is faster than link.w 0 */
446 fprintf (stream, MOTOROLA ?
447 "\tpea (%s)\n\tmove.l %s,%s\n" :
448 "\tpea %s@\n\tmovel %s,%s\n",
449 M68K_REGNAME(FRAME_POINTER_REGNUM),
450 M68K_REGNAME(STACK_POINTER_REGNUM),
451 M68K_REGNAME(FRAME_POINTER_REGNUM));
452 else if (fsize_with_regs < 0x8000)
453 asm_fprintf (stream, "\tlink" ASM_DOTW " %s,%I%wd\n",
454 M68K_REGNAME(FRAME_POINTER_REGNUM), -fsize_with_regs);
455 else if (TARGET_68020)
456 asm_fprintf (stream, "\tlink" ASM_DOTL " %s,%I%wd\n",
457 M68K_REGNAME(FRAME_POINTER_REGNUM), -fsize_with_regs);
458 else
459 /* Adding negative number is faster on the 68040. */
460 asm_fprintf (stream, "\tlink" ASM_DOTW " %s,%I0\n"
461 "\tadd" ASM_DOT "l %I%wd,%Rsp\n",
462 M68K_REGNAME(FRAME_POINTER_REGNUM), -fsize_with_regs);
463
464 if (dwarf2out_do_frame ())
465 {
466 char *l;
467 l = (char *) dwarf2out_cfi_label ();
468 cfa_offset += 4;
469 dwarf2out_reg_save (l, FRAME_POINTER_REGNUM, -cfa_offset);
470 dwarf2out_def_cfa (l, FRAME_POINTER_REGNUM, cfa_offset);
471 cfa_offset += current_frame.size;
472 }
473 }
474 else if (fsize_with_regs) /* !frame_pointer_needed */
475 {
476 if (fsize_with_regs < 0x8000)
477 {
478 if (fsize_with_regs <= 8)
479 {
480 if (!TARGET_COLDFIRE)
481 asm_fprintf (stream, "\tsubq" ASM_DOT "w %I%wd,%Rsp\n",
482 fsize_with_regs);
483 else
484 asm_fprintf (stream, "\tsubq" ASM_DOT "l %I%wd,%Rsp\n",
485 fsize_with_regs);
486 }
487 else if (fsize_with_regs <= 16 && TARGET_CPU32)
488 /* On the CPU32 it is faster to use two subqw instructions to
489 subtract a small integer (8 < N <= 16) to a register. */
490 asm_fprintf (stream,
491 "\tsubq" ASM_DOT "w %I8,%Rsp\n"
492 "\tsubq" ASM_DOT "w %I%wd,%Rsp\n",
493 fsize_with_regs - 8);
494 else if (TARGET_68040)
495 /* Adding negative number is faster on the 68040. */
496 asm_fprintf (stream, "\tadd" ASM_DOT "w %I%wd,%Rsp\n",
497 -fsize_with_regs);
498 else
499 asm_fprintf (stream, MOTOROLA ?
500 "\tlea (%wd,%Rsp),%Rsp\n" :
501 "\tlea %Rsp@(%wd),%Rsp\n",
502 -fsize_with_regs);
503 }
504 else /* fsize_with_regs >= 0x8000 */
505 asm_fprintf (stream, "\tadd" ASM_DOT "l %I%wd,%Rsp\n", -fsize_with_regs);
506
507 if (dwarf2out_do_frame ())
508 {
509 cfa_offset += current_frame.size + 4;
510 dwarf2out_def_cfa ("", STACK_POINTER_REGNUM, cfa_offset);
511 }
512 } /* !frame_pointer_needed */
513
514 if (current_frame.fpu_mask)
515 {
516 asm_fprintf (stream, MOTOROLA ?
517 "\tfmovm %I0x%x,-(%Rsp)\n" :
518 "\tfmovem %I0x%x,%Rsp@-\n",
519 current_frame.fpu_mask);
520
521 if (dwarf2out_do_frame ())
522 {
523 char *l = (char *) dwarf2out_cfi_label ();
524 int n_regs, regno;
525
526 cfa_offset += current_frame.fpu_no * 12;
527 if (! frame_pointer_needed)
528 dwarf2out_def_cfa (l, STACK_POINTER_REGNUM, cfa_offset);
529 for (regno = 16, n_regs = 0; regno < 24; regno++)
530 if (current_frame.fpu_mask & (1 << (regno - 16)))
531 dwarf2out_reg_save (l, regno, -cfa_offset + n_regs++ * 12);
532 }
533 }
534
535 /* If the stack limit is not a symbol, check it here.
536 This has the disadvantage that it may be too late... */
537 if (current_function_limit_stack)
538 {
539 if (REG_P (stack_limit_rtx))
540 asm_fprintf (stream, "\tcmp" ASM_DOT "l %s,%Rsp\n\ttrapcs\n",
541 M68K_REGNAME(REGNO (stack_limit_rtx)));
542 else if (GET_CODE (stack_limit_rtx) != SYMBOL_REF)
543 warning ("stack limit expression is not supported");
544 }
545
546 if (current_frame.reg_no <= 2)
547 {
548 /* Store each separately in the same order moveml uses.
549 Using two movel instructions instead of a single moveml
550 is about 15% faster for the 68020 and 68030 at no expense
551 in code size. */
552
553 int i;
554
555 for (i = 0; i < 16; i++)
556 if (current_frame.reg_rev_mask & (1 << i))
557 {
558 asm_fprintf (stream, MOTOROLA ?
559 "\t%Omove.l %s,-(%Rsp)\n" :
560 "\tmovel %s,%Rsp@-\n",
561 M68K_REGNAME(15 - i));
562 if (dwarf2out_do_frame ())
563 {
564 char *l = (char *) dwarf2out_cfi_label ();
565
566 cfa_offset += 4;
567 if (! frame_pointer_needed)
568 dwarf2out_def_cfa (l, STACK_POINTER_REGNUM, cfa_offset);
569 dwarf2out_reg_save (l, 15 - i, -cfa_offset);
570 }
571 }
572 }
573 else if (current_frame.reg_rev_mask)
574 {
575 if (TARGET_COLDFIRE)
576 /* The ColdFire does not support the predecrement form of the
577 MOVEM instruction, so we must adjust the stack pointer and
578 then use the plain address register indirect mode.
579 The required register save space was combined earlier with
580 the fsize_with_regs amount. */
581
582 asm_fprintf (stream, MOTOROLA ?
583 "\tmovm.l %I0x%x,(%Rsp)\n" :
584 "\tmoveml %I0x%x,%Rsp@\n",
585 current_frame.reg_mask);
586 else
587 asm_fprintf (stream, MOTOROLA ?
588 "\tmovm.l %I0x%x,-(%Rsp)\n" :
589 "\tmoveml %I0x%x,%Rsp@-\n",
590 current_frame.reg_rev_mask);
591 if (dwarf2out_do_frame ())
592 {
593 char *l = (char *) dwarf2out_cfi_label ();
594 int n_regs, regno;
595
596 cfa_offset += current_frame.reg_no * 4;
597 if (! frame_pointer_needed)
598 dwarf2out_def_cfa (l, STACK_POINTER_REGNUM, cfa_offset);
599 for (regno = 0, n_regs = 0; regno < 16; regno++)
600 if (current_frame.reg_mask & (1 << regno))
601 dwarf2out_reg_save (l, regno, -cfa_offset + n_regs++ * 4);
602 }
603 }
604 if (!TARGET_SEP_DATA && flag_pic &&
605 (current_function_uses_pic_offset_table ||
606 (!current_function_is_leaf && TARGET_ID_SHARED_LIBRARY)))
607 {
608 if (TARGET_ID_SHARED_LIBRARY)
609 {
610 asm_fprintf (stream, "\tmovel %s@(%s), %s\n",
611 M68K_REGNAME(PIC_OFFSET_TABLE_REGNUM),
612 m68k_library_id_string,
613 M68K_REGNAME(PIC_OFFSET_TABLE_REGNUM));
614 }
615 else
616 {
617 if (MOTOROLA)
618 asm_fprintf (stream, "\t%Olea (%Rpc, %U_GLOBAL_OFFSET_TABLE_@GOTPC), %s\n",
619 M68K_REGNAME(PIC_OFFSET_TABLE_REGNUM));
620 else
621 {
622 asm_fprintf (stream, "\tmovel %I%U_GLOBAL_OFFSET_TABLE_, %s\n",
623 M68K_REGNAME(PIC_OFFSET_TABLE_REGNUM));
624 asm_fprintf (stream, "\tlea %Rpc@(0,%s:l),%s\n",
625 M68K_REGNAME(PIC_OFFSET_TABLE_REGNUM),
626 M68K_REGNAME(PIC_OFFSET_TABLE_REGNUM));
627 }
628 }
629 }
630 }
631 \f
632 /* Return true if this function's epilogue can be output as RTL. */
633
634 bool
635 use_return_insn (void)
636 {
637 if (!reload_completed || frame_pointer_needed || get_frame_size () != 0)
638 return false;
639
640 /* We can output the epilogue as RTL only if no registers need to be
641 restored. */
642 m68k_compute_frame_layout();
643 return current_frame.reg_no ? false : true;
644 }
645
646 /* This function generates the assembly code for function exit,
647 on machines that need it.
648
649 The function epilogue should not depend on the current stack pointer!
650 It should use the frame pointer only, if there is a frame pointer.
651 This is mandatory because of alloca; we also take advantage of it to
652 omit stack adjustments before returning. */
653
654 static void
655 m68k_output_function_epilogue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
656 {
657 HOST_WIDE_INT fsize, fsize_with_regs;
658 bool big = false;
659 bool restore_from_sp = false;
660 rtx insn = get_last_insn ();
661
662 m68k_compute_frame_layout();
663
664 /* If the last insn was a BARRIER, we don't have to write any code. */
665 if (GET_CODE (insn) == NOTE)
666 insn = prev_nonnote_insn (insn);
667 if (insn && GET_CODE (insn) == BARRIER)
668 {
669 /* Output just a no-op so that debuggers don't get confused
670 about which function the pc is in at this address. */
671 fprintf (stream, "\tnop\n");
672 return;
673 }
674
675 #ifdef FUNCTION_EXTRA_EPILOGUE
676 FUNCTION_EXTRA_EPILOGUE (stream, size);
677 #endif
678
679 fsize = current_frame.size;
680
681 /* FIXME : leaf_function_p below is too strong.
682 What we really need to know there is if there could be pending
683 stack adjustment needed at that point. */
684 restore_from_sp = ! frame_pointer_needed
685 || (! current_function_calls_alloca && leaf_function_p ());
686
687 /* fsize_with_regs is the size we need to adjust the sp when
688 popping the frame. */
689 fsize_with_regs = fsize;
690
691 /* Because the ColdFire doesn't support moveml with
692 complex address modes, we must adjust the stack manually
693 after restoring registers. When the frame pointer isn't used,
694 we can merge movem adjustment into frame unlinking
695 made immediately after it. */
696 if (TARGET_COLDFIRE && restore_from_sp && (current_frame.reg_no > 2))
697 fsize_with_regs += current_frame.reg_no * 4;
698
699 if (current_frame.offset + fsize >= 0x8000
700 && ! restore_from_sp
701 && (current_frame.reg_mask || current_frame.fpu_mask))
702 {
703 /* Because the ColdFire doesn't support moveml with
704 complex address modes we make an extra correction here. */
705 if (TARGET_COLDFIRE)
706 fsize += current_frame.offset;
707
708 asm_fprintf (stream, "\t%Omove" ASM_DOT "l %I%wd,%Ra1\n", -fsize);
709 fsize = 0, big = true;
710 }
711 if (current_frame.reg_no <= 2)
712 {
713 /* Restore each separately in the same order moveml does.
714 Using two movel instructions instead of a single moveml
715 is about 15% faster for the 68020 and 68030 at no expense
716 in code size. */
717
718 int i;
719 HOST_WIDE_INT offset = current_frame.offset + fsize;
720
721 for (i = 0; i < 16; i++)
722 if (current_frame.reg_mask & (1 << i))
723 {
724 if (big)
725 {
726 if (MOTOROLA)
727 asm_fprintf (stream, "\t%Omove.l -%wd(%s,%Ra1.l),%s\n",
728 offset,
729 M68K_REGNAME(FRAME_POINTER_REGNUM),
730 M68K_REGNAME(i));
731 else
732 asm_fprintf (stream, "\tmovel %s@(-%wd,%Ra1:l),%s\n",
733 M68K_REGNAME(FRAME_POINTER_REGNUM),
734 offset,
735 M68K_REGNAME(i));
736 }
737 else if (restore_from_sp)
738 asm_fprintf (stream, MOTOROLA ?
739 "\t%Omove.l (%Rsp)+,%s\n" :
740 "\tmovel %Rsp@+,%s\n",
741 M68K_REGNAME(i));
742 else
743 {
744 if (MOTOROLA)
745 asm_fprintf (stream, "\t%Omove.l -%wd(%s),%s\n",
746 offset,
747 M68K_REGNAME(FRAME_POINTER_REGNUM),
748 M68K_REGNAME(i));
749 else
750 asm_fprintf (stream, "\tmovel %s@(-%wd),%s\n",
751 M68K_REGNAME(FRAME_POINTER_REGNUM),
752 offset,
753 M68K_REGNAME(i));
754 }
755 offset -= 4;
756 }
757 }
758 else if (current_frame.reg_mask)
759 {
760 /* The ColdFire requires special handling due to its limited moveml insn. */
761 if (TARGET_COLDFIRE)
762 {
763 if (big)
764 {
765 asm_fprintf (stream, "\tadd" ASM_DOT "l %s,%Ra1\n",
766 M68K_REGNAME(FRAME_POINTER_REGNUM));
767 asm_fprintf (stream, MOTOROLA ?
768 "\tmovm.l (%Ra1),%I0x%x\n" :
769 "\tmoveml %Ra1@,%I0x%x\n",
770 current_frame.reg_mask);
771 }
772 else if (restore_from_sp)
773 asm_fprintf (stream, MOTOROLA ?
774 "\tmovm.l (%Rsp),%I0x%x\n" :
775 "\tmoveml %Rsp@,%I0x%x\n",
776 current_frame.reg_mask);
777 else
778 {
779 if (MOTOROLA)
780 asm_fprintf (stream, "\tmovm.l -%wd(%s),%I0x%x\n",
781 current_frame.offset + fsize,
782 M68K_REGNAME(FRAME_POINTER_REGNUM),
783 current_frame.reg_mask);
784 else
785 asm_fprintf (stream, "\tmoveml %s@(-%wd),%I0x%x\n",
786 M68K_REGNAME(FRAME_POINTER_REGNUM),
787 current_frame.offset + fsize,
788 current_frame.reg_mask);
789 }
790 }
791 else /* !TARGET_COLDFIRE */
792 {
793 if (big)
794 {
795 if (MOTOROLA)
796 asm_fprintf (stream, "\tmovm.l -%wd(%s,%Ra1.l),%I0x%x\n",
797 current_frame.offset + fsize,
798 M68K_REGNAME(FRAME_POINTER_REGNUM),
799 current_frame.reg_mask);
800 else
801 asm_fprintf (stream, "\tmoveml %s@(-%wd,%Ra1:l),%I0x%x\n",
802 M68K_REGNAME(FRAME_POINTER_REGNUM),
803 current_frame.offset + fsize,
804 current_frame.reg_mask);
805 }
806 else if (restore_from_sp)
807 {
808 asm_fprintf (stream, MOTOROLA ?
809 "\tmovm.l (%Rsp)+,%I0x%x\n" :
810 "\tmoveml %Rsp@+,%I0x%x\n",
811 current_frame.reg_mask);
812 }
813 else
814 {
815 if (MOTOROLA)
816 asm_fprintf (stream, "\tmovm.l -%wd(%s),%I0x%x\n",
817 current_frame.offset + fsize,
818 M68K_REGNAME(FRAME_POINTER_REGNUM),
819 current_frame.reg_mask);
820 else
821 asm_fprintf (stream, "\tmoveml %s@(-%wd),%I0x%x\n",
822 M68K_REGNAME(FRAME_POINTER_REGNUM),
823 current_frame.offset + fsize,
824 current_frame.reg_mask);
825 }
826 }
827 }
828 if (current_frame.fpu_rev_mask)
829 {
830 if (big)
831 {
832 if (MOTOROLA)
833 asm_fprintf (stream, "\tfmovm -%wd(%s,%Ra1.l),%I0x%x\n",
834 current_frame.foffset + fsize,
835 M68K_REGNAME(FRAME_POINTER_REGNUM),
836 current_frame.fpu_rev_mask);
837 else
838 asm_fprintf (stream, "\tfmovem %s@(-%wd,%Ra1:l),%I0x%x\n",
839 M68K_REGNAME(FRAME_POINTER_REGNUM),
840 current_frame.foffset + fsize,
841 current_frame.fpu_rev_mask);
842 }
843 else if (restore_from_sp)
844 {
845 if (MOTOROLA)
846 asm_fprintf (stream, "\tfmovm (%Rsp)+,%I0x%x\n",
847 current_frame.fpu_rev_mask);
848 else
849 asm_fprintf (stream, "\tfmovem %Rsp@+,%I0x%x\n",
850 current_frame.fpu_rev_mask);
851 }
852 else
853 {
854 if (MOTOROLA)
855 asm_fprintf (stream, "\tfmovm -%wd(%s),%I0x%x\n",
856 current_frame.foffset + fsize,
857 M68K_REGNAME(FRAME_POINTER_REGNUM),
858 current_frame.fpu_rev_mask);
859 else
860 asm_fprintf (stream, "\tfmovem %s@(-%wd),%I0x%x\n",
861 M68K_REGNAME(FRAME_POINTER_REGNUM),
862 current_frame.foffset + fsize,
863 current_frame.fpu_rev_mask);
864 }
865 }
866 if (frame_pointer_needed)
867 fprintf (stream, "\tunlk %s\n", M68K_REGNAME(FRAME_POINTER_REGNUM));
868 else if (fsize_with_regs)
869 {
870 if (fsize_with_regs <= 8)
871 {
872 if (!TARGET_COLDFIRE)
873 asm_fprintf (stream, "\taddq" ASM_DOT "w %I%wd,%Rsp\n",
874 fsize_with_regs);
875 else
876 asm_fprintf (stream, "\taddq" ASM_DOT "l %I%wd,%Rsp\n",
877 fsize_with_regs);
878 }
879 else if (fsize_with_regs <= 16 && TARGET_CPU32)
880 {
881 /* On the CPU32 it is faster to use two addqw instructions to
882 add a small integer (8 < N <= 16) to a register. */
883 asm_fprintf (stream, "\taddq" ASM_DOT "w %I8,%Rsp\n"
884 "\taddq" ASM_DOT "w %I%wd,%Rsp\n",
885 fsize_with_regs - 8);
886 }
887 else if (fsize_with_regs < 0x8000)
888 {
889 if (TARGET_68040)
890 asm_fprintf (stream, "\tadd" ASM_DOT "w %I%wd,%Rsp\n",
891 fsize_with_regs);
892 else
893 asm_fprintf (stream, MOTOROLA ?
894 "\tlea (%wd,%Rsp),%Rsp\n" :
895 "\tlea %Rsp@(%wd),%Rsp\n",
896 fsize_with_regs);
897 }
898 else
899 asm_fprintf (stream, "\tadd" ASM_DOT "l %I%wd,%Rsp\n", fsize_with_regs);
900 }
901 if (current_function_calls_eh_return)
902 asm_fprintf (stream, "\tadd" ASM_DOT"l %Ra0,%Rsp\n");
903 if (m68k_interrupt_function_p (current_function_decl))
904 fprintf (stream, "\trte\n");
905 else if (current_function_pops_args)
906 asm_fprintf (stream, "\trtd %I%d\n", current_function_pops_args);
907 else
908 fprintf (stream, "\trts\n");
909 }
910 \f
911 /* Similar to general_operand, but exclude stack_pointer_rtx. */
912
913 int
914 not_sp_operand (rtx op, enum machine_mode mode)
915 {
916 return op != stack_pointer_rtx && nonimmediate_operand (op, mode);
917 }
918
919 /* Return true if X is a valid comparison operator for the dbcc
920 instruction.
921
922 Note it rejects floating point comparison operators.
923 (In the future we could use Fdbcc).
924
925 It also rejects some comparisons when CC_NO_OVERFLOW is set. */
926
927 int
928 valid_dbcc_comparison_p (rtx x, enum machine_mode mode ATTRIBUTE_UNUSED)
929 {
930 switch (GET_CODE (x))
931 {
932 case EQ: case NE: case GTU: case LTU:
933 case GEU: case LEU:
934 return 1;
935
936 /* Reject some when CC_NO_OVERFLOW is set. This may be over
937 conservative */
938 case GT: case LT: case GE: case LE:
939 return ! (cc_prev_status.flags & CC_NO_OVERFLOW);
940 default:
941 return 0;
942 }
943 }
944
945 /* Return nonzero if flags are currently in the 68881 flag register. */
946 int
947 flags_in_68881 (void)
948 {
949 /* We could add support for these in the future */
950 return cc_status.flags & CC_IN_68881;
951 }
952
953 /* Output a BSR instruction suitable for PIC code. */
954 void
955 m68k_output_pic_call(rtx dest)
956 {
957 const char *out;
958
959 if (!(GET_CODE (dest) == MEM && GET_CODE (XEXP (dest, 0)) == SYMBOL_REF))
960 out = "jsr %0";
961 /* We output a BSR instruction if we're using -fpic or we're building for
962 * a target that supports long branches. If we're building -fPIC on the
963 * 68000, 68010 or ColdFire we generate one of two sequences:
964 * a shorter one that uses a GOT entry or a longer one that doesn't.
965 * We'll use the -Os command-line flag to decide which to generate.
966 * Both sequences take the same time to execute on the ColdFire.
967 */
968 else if (TARGET_PCREL)
969 out = "bsr.l %o0";
970 else if ((flag_pic == 1) || TARGET_68020)
971 #if defined(USE_GAS)
972 out = "bsr.l %0@PLTPC";
973 #else
974 out = "bsr %0@PLTPC";
975 #endif
976 else if (optimize_size || TARGET_ID_SHARED_LIBRARY)
977 out = "move.l %0@GOT(%%a5), %%a1\n\tjsr (%%a1)";
978 else
979 out = "lea %0-.-8,%%a1\n\tjsr 0(%%pc,%%a1)";
980
981 output_asm_insn(out, &dest);
982 }
983
984 /* Output a dbCC; jCC sequence. Note we do not handle the
985 floating point version of this sequence (Fdbcc). We also
986 do not handle alternative conditions when CC_NO_OVERFLOW is
987 set. It is assumed that valid_dbcc_comparison_p and flags_in_68881 will
988 kick those out before we get here. */
989
990 void
991 output_dbcc_and_branch (rtx *operands)
992 {
993 switch (GET_CODE (operands[3]))
994 {
995 case EQ:
996 output_asm_insn (MOTOROLA ?
997 "dbeq %0,%l1\n\tjbeq %l2" :
998 "dbeq %0,%l1\n\tjeq %l2",
999 operands);
1000 break;
1001
1002 case NE:
1003 output_asm_insn (MOTOROLA ?
1004 "dbne %0,%l1\n\tjbne %l2" :
1005 "dbne %0,%l1\n\tjne %l2",
1006 operands);
1007 break;
1008
1009 case GT:
1010 output_asm_insn (MOTOROLA ?
1011 "dbgt %0,%l1\n\tjbgt %l2" :
1012 "dbgt %0,%l1\n\tjgt %l2",
1013 operands);
1014 break;
1015
1016 case GTU:
1017 output_asm_insn (MOTOROLA ?
1018 "dbhi %0,%l1\n\tjbhi %l2" :
1019 "dbhi %0,%l1\n\tjhi %l2",
1020 operands);
1021 break;
1022
1023 case LT:
1024 output_asm_insn (MOTOROLA ?
1025 "dblt %0,%l1\n\tjblt %l2" :
1026 "dblt %0,%l1\n\tjlt %l2",
1027 operands);
1028 break;
1029
1030 case LTU:
1031 output_asm_insn (MOTOROLA ?
1032 "dbcs %0,%l1\n\tjbcs %l2" :
1033 "dbcs %0,%l1\n\tjcs %l2",
1034 operands);
1035 break;
1036
1037 case GE:
1038 output_asm_insn (MOTOROLA ?
1039 "dbge %0,%l1\n\tjbge %l2" :
1040 "dbge %0,%l1\n\tjge %l2",
1041 operands);
1042 break;
1043
1044 case GEU:
1045 output_asm_insn (MOTOROLA ?
1046 "dbcc %0,%l1\n\tjbcc %l2" :
1047 "dbcc %0,%l1\n\tjcc %l2",
1048 operands);
1049 break;
1050
1051 case LE:
1052 output_asm_insn (MOTOROLA ?
1053 "dble %0,%l1\n\tjble %l2" :
1054 "dble %0,%l1\n\tjle %l2",
1055 operands);
1056 break;
1057
1058 case LEU:
1059 output_asm_insn (MOTOROLA ?
1060 "dbls %0,%l1\n\tjbls %l2" :
1061 "dbls %0,%l1\n\tjls %l2",
1062 operands);
1063 break;
1064
1065 default:
1066 abort ();
1067 }
1068
1069 /* If the decrement is to be done in SImode, then we have
1070 to compensate for the fact that dbcc decrements in HImode. */
1071 switch (GET_MODE (operands[0]))
1072 {
1073 case SImode:
1074 output_asm_insn (MOTOROLA ?
1075 "clr%.w %0\n\tsubq%.l #1,%0\n\tjbpl %l1" :
1076 "clr%.w %0\n\tsubq%.l #1,%0\n\tjpl %l1",
1077 operands);
1078 break;
1079
1080 case HImode:
1081 break;
1082
1083 default:
1084 abort ();
1085 }
1086 }
1087
1088 const char *
1089 output_scc_di(rtx op, rtx operand1, rtx operand2, rtx dest)
1090 {
1091 rtx loperands[7];
1092 enum rtx_code op_code = GET_CODE (op);
1093
1094 /* This does not produce a useful cc. */
1095 CC_STATUS_INIT;
1096
1097 /* The m68k cmp.l instruction requires operand1 to be a reg as used
1098 below. Swap the operands and change the op if these requirements
1099 are not fulfilled. */
1100 if (GET_CODE (operand2) == REG && GET_CODE (operand1) != REG)
1101 {
1102 rtx tmp = operand1;
1103
1104 operand1 = operand2;
1105 operand2 = tmp;
1106 op_code = swap_condition (op_code);
1107 }
1108 loperands[0] = operand1;
1109 if (GET_CODE (operand1) == REG)
1110 loperands[1] = gen_rtx_REG (SImode, REGNO (operand1) + 1);
1111 else
1112 loperands[1] = adjust_address (operand1, SImode, 4);
1113 if (operand2 != const0_rtx)
1114 {
1115 loperands[2] = operand2;
1116 if (GET_CODE (operand2) == REG)
1117 loperands[3] = gen_rtx_REG (SImode, REGNO (operand2) + 1);
1118 else
1119 loperands[3] = adjust_address (operand2, SImode, 4);
1120 }
1121 loperands[4] = gen_label_rtx();
1122 if (operand2 != const0_rtx)
1123 {
1124 output_asm_insn (MOTOROLA ?
1125 "cmp%.l %2,%0\n\tjbne %l4\n\tcmp%.l %3,%1" :
1126 "cmp%.l %2,%0\n\tjne %l4\n\tcmp%.l %3,%1",
1127 loperands);
1128 }
1129 else
1130 {
1131 if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (loperands[0]))
1132 output_asm_insn ("tst%.l %0", loperands);
1133 else
1134 {
1135 output_asm_insn ("cmp%.w #0,%0", loperands);
1136 }
1137
1138 output_asm_insn (MOTOROLA ? "jbne %l4" : "jne %l4", loperands);
1139
1140 if (TARGET_68020 || TARGET_COLDFIRE || ! ADDRESS_REG_P (loperands[1]))
1141 output_asm_insn ("tst%.l %1", loperands);
1142 else
1143 output_asm_insn ("cmp%.w #0,%1", loperands);
1144 }
1145
1146 loperands[5] = dest;
1147
1148 switch (op_code)
1149 {
1150 case EQ:
1151 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1152 CODE_LABEL_NUMBER (loperands[4]));
1153 output_asm_insn ("seq %5", loperands);
1154 break;
1155
1156 case NE:
1157 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1158 CODE_LABEL_NUMBER (loperands[4]));
1159 output_asm_insn ("sne %5", loperands);
1160 break;
1161
1162 case GT:
1163 loperands[6] = gen_label_rtx();
1164 output_asm_insn (MOTOROLA ?
1165 "shi %5\n\tjbra %l6" :
1166 "shi %5\n\tjra %l6",
1167 loperands);
1168 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1169 CODE_LABEL_NUMBER (loperands[4]));
1170 output_asm_insn ("sgt %5", loperands);
1171 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1172 CODE_LABEL_NUMBER (loperands[6]));
1173 break;
1174
1175 case GTU:
1176 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1177 CODE_LABEL_NUMBER (loperands[4]));
1178 output_asm_insn ("shi %5", loperands);
1179 break;
1180
1181 case LT:
1182 loperands[6] = gen_label_rtx();
1183 output_asm_insn (MOTOROLA ?
1184 "scs %5\n\tjbra %l6" :
1185 "scs %5\n\tjra %l6",
1186 loperands);
1187 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1188 CODE_LABEL_NUMBER (loperands[4]));
1189 output_asm_insn ("slt %5", loperands);
1190 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1191 CODE_LABEL_NUMBER (loperands[6]));
1192 break;
1193
1194 case LTU:
1195 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1196 CODE_LABEL_NUMBER (loperands[4]));
1197 output_asm_insn ("scs %5", loperands);
1198 break;
1199
1200 case GE:
1201 loperands[6] = gen_label_rtx();
1202 output_asm_insn (MOTOROLA ?
1203 "scc %5\n\tjbra %l6" :
1204 "scc %5\n\tjra %l6",
1205 loperands);
1206 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1207 CODE_LABEL_NUMBER (loperands[4]));
1208 output_asm_insn ("sge %5", loperands);
1209 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1210 CODE_LABEL_NUMBER (loperands[6]));
1211 break;
1212
1213 case GEU:
1214 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1215 CODE_LABEL_NUMBER (loperands[4]));
1216 output_asm_insn ("scc %5", loperands);
1217 break;
1218
1219 case LE:
1220 loperands[6] = gen_label_rtx();
1221 output_asm_insn (MOTOROLA ?
1222 "sls %5\n\tjbra %l6" :
1223 "sls %5\n\tjra %l6",
1224 loperands);
1225 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1226 CODE_LABEL_NUMBER (loperands[4]));
1227 output_asm_insn ("sle %5", loperands);
1228 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1229 CODE_LABEL_NUMBER (loperands[6]));
1230 break;
1231
1232 case LEU:
1233 (*targetm.asm_out.internal_label) (asm_out_file, "L",
1234 CODE_LABEL_NUMBER (loperands[4]));
1235 output_asm_insn ("sls %5", loperands);
1236 break;
1237
1238 default:
1239 abort ();
1240 }
1241 return "";
1242 }
1243
1244 const char *
1245 output_btst (rtx *operands, rtx countop, rtx dataop, rtx insn, int signpos)
1246 {
1247 operands[0] = countop;
1248 operands[1] = dataop;
1249
1250 if (GET_CODE (countop) == CONST_INT)
1251 {
1252 register int count = INTVAL (countop);
1253 /* If COUNT is bigger than size of storage unit in use,
1254 advance to the containing unit of same size. */
1255 if (count > signpos)
1256 {
1257 int offset = (count & ~signpos) / 8;
1258 count = count & signpos;
1259 operands[1] = dataop = adjust_address (dataop, QImode, offset);
1260 }
1261 if (count == signpos)
1262 cc_status.flags = CC_NOT_POSITIVE | CC_Z_IN_NOT_N;
1263 else
1264 cc_status.flags = CC_NOT_NEGATIVE | CC_Z_IN_NOT_N;
1265
1266 /* These three statements used to use next_insns_test_no...
1267 but it appears that this should do the same job. */
1268 if (count == 31
1269 && next_insn_tests_no_inequality (insn))
1270 return "tst%.l %1";
1271 if (count == 15
1272 && next_insn_tests_no_inequality (insn))
1273 return "tst%.w %1";
1274 if (count == 7
1275 && next_insn_tests_no_inequality (insn))
1276 return "tst%.b %1";
1277
1278 cc_status.flags = CC_NOT_NEGATIVE;
1279 }
1280 return "btst %0,%1";
1281 }
1282 \f
1283 /* Returns true if OP is either a symbol reference or a sum of a symbol
1284 reference and a constant. */
1285
1286 bool
1287 symbolic_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
1288 {
1289 switch (GET_CODE (op))
1290 {
1291 case SYMBOL_REF:
1292 case LABEL_REF:
1293 return true;
1294
1295 case CONST:
1296 op = XEXP (op, 0);
1297 return ((GET_CODE (XEXP (op, 0)) == SYMBOL_REF
1298 || GET_CODE (XEXP (op, 0)) == LABEL_REF)
1299 && GET_CODE (XEXP (op, 1)) == CONST_INT);
1300
1301 #if 0 /* Deleted, with corresponding change in m68k.h,
1302 so as to fit the specs. No CONST_DOUBLE is ever symbolic. */
1303 case CONST_DOUBLE:
1304 return GET_MODE (op) == mode;
1305 #endif
1306
1307 default:
1308 return false;
1309 }
1310 }
1311 \f
1312 /* Check for sign_extend or zero_extend. Used for bit-count operands. */
1313
1314 int
1315 extend_operator(rtx x, enum machine_mode mode)
1316 {
1317 if (mode != VOIDmode && GET_MODE(x) != mode)
1318 return 0;
1319 switch (GET_CODE(x))
1320 {
1321 case SIGN_EXTEND :
1322 case ZERO_EXTEND :
1323 return 1;
1324 default :
1325 return 0;
1326 }
1327 }
1328
1329 \f
1330 /* Legitimize PIC addresses. If the address is already
1331 position-independent, we return ORIG. Newly generated
1332 position-independent addresses go to REG. If we need more
1333 than one register, we lose.
1334
1335 An address is legitimized by making an indirect reference
1336 through the Global Offset Table with the name of the symbol
1337 used as an offset.
1338
1339 The assembler and linker are responsible for placing the
1340 address of the symbol in the GOT. The function prologue
1341 is responsible for initializing a5 to the starting address
1342 of the GOT.
1343
1344 The assembler is also responsible for translating a symbol name
1345 into a constant displacement from the start of the GOT.
1346
1347 A quick example may make things a little clearer:
1348
1349 When not generating PIC code to store the value 12345 into _foo
1350 we would generate the following code:
1351
1352 movel #12345, _foo
1353
1354 When generating PIC two transformations are made. First, the compiler
1355 loads the address of foo into a register. So the first transformation makes:
1356
1357 lea _foo, a0
1358 movel #12345, a0@
1359
1360 The code in movsi will intercept the lea instruction and call this
1361 routine which will transform the instructions into:
1362
1363 movel a5@(_foo:w), a0
1364 movel #12345, a0@
1365
1366
1367 That (in a nutshell) is how *all* symbol and label references are
1368 handled. */
1369
1370 rtx
1371 legitimize_pic_address (rtx orig, enum machine_mode mode ATTRIBUTE_UNUSED,
1372 rtx reg)
1373 {
1374 rtx pic_ref = orig;
1375
1376 /* First handle a simple SYMBOL_REF or LABEL_REF */
1377 if (GET_CODE (orig) == SYMBOL_REF || GET_CODE (orig) == LABEL_REF)
1378 {
1379 if (reg == 0)
1380 abort ();
1381
1382 pic_ref = gen_rtx_MEM (Pmode,
1383 gen_rtx_PLUS (Pmode,
1384 pic_offset_table_rtx, orig));
1385 current_function_uses_pic_offset_table = 1;
1386 RTX_UNCHANGING_P (pic_ref) = 1;
1387 emit_move_insn (reg, pic_ref);
1388 return reg;
1389 }
1390 else if (GET_CODE (orig) == CONST)
1391 {
1392 rtx base;
1393
1394 /* Make sure this has not already been legitimized. */
1395 if (GET_CODE (XEXP (orig, 0)) == PLUS
1396 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
1397 return orig;
1398
1399 if (reg == 0)
1400 abort ();
1401
1402 /* legitimize both operands of the PLUS */
1403 if (GET_CODE (XEXP (orig, 0)) == PLUS)
1404 {
1405 base = legitimize_pic_address (XEXP (XEXP (orig, 0), 0), Pmode, reg);
1406 orig = legitimize_pic_address (XEXP (XEXP (orig, 0), 1), Pmode,
1407 base == reg ? 0 : reg);
1408 }
1409 else abort ();
1410
1411 if (GET_CODE (orig) == CONST_INT)
1412 return plus_constant (base, INTVAL (orig));
1413 pic_ref = gen_rtx_PLUS (Pmode, base, orig);
1414 /* Likewise, should we set special REG_NOTEs here? */
1415 }
1416 return pic_ref;
1417 }
1418
1419 \f
1420 typedef enum { MOVL, SWAP, NEGW, NOTW, NOTB, MOVQ, MVS, MVZ } CONST_METHOD;
1421
1422 static CONST_METHOD const_method (rtx);
1423
1424 #define USE_MOVQ(i) ((unsigned)((i) + 128) <= 255)
1425
1426 static CONST_METHOD
1427 const_method (rtx constant)
1428 {
1429 int i;
1430 unsigned u;
1431
1432 i = INTVAL (constant);
1433 if (USE_MOVQ (i))
1434 return MOVQ;
1435
1436 /* The ColdFire doesn't have byte or word operations. */
1437 /* FIXME: This may not be useful for the m68060 either. */
1438 if (!TARGET_COLDFIRE)
1439 {
1440 /* if -256 < N < 256 but N is not in range for a moveq
1441 N^ff will be, so use moveq #N^ff, dreg; not.b dreg. */
1442 if (USE_MOVQ (i ^ 0xff))
1443 return NOTB;
1444 /* Likewise, try with not.w */
1445 if (USE_MOVQ (i ^ 0xffff))
1446 return NOTW;
1447 /* This is the only value where neg.w is useful */
1448 if (i == -65408)
1449 return NEGW;
1450 }
1451
1452 /* Try also with swap. */
1453 u = i;
1454 if (USE_MOVQ ((u >> 16) | (u << 16)))
1455 return SWAP;
1456
1457 if (TARGET_CFV4)
1458 {
1459 /* Try using MVZ/MVS with an immediate value to load constants. */
1460 if (i >= 0 && i <= 65535)
1461 return MVZ;
1462 if (i >= -32768 && i <= 32767)
1463 return MVS;
1464 }
1465
1466 /* Otherwise, use move.l */
1467 return MOVL;
1468 }
1469
1470 static int
1471 const_int_cost (rtx constant)
1472 {
1473 switch (const_method (constant))
1474 {
1475 case MOVQ :
1476 /* Constants between -128 and 127 are cheap due to moveq */
1477 return 0;
1478 case MVZ:
1479 case MVS:
1480 case NOTB :
1481 case NOTW :
1482 case NEGW :
1483 case SWAP :
1484 /* Constants easily generated by moveq + not.b/not.w/neg.w/swap */
1485 return 1;
1486 case MOVL :
1487 return 2;
1488 default :
1489 abort ();
1490 }
1491 }
1492
1493 static bool
1494 m68k_rtx_costs (rtx x, int code, int outer_code, int *total)
1495 {
1496 switch (code)
1497 {
1498 case CONST_INT:
1499 /* Constant zero is super cheap due to clr instruction. */
1500 if (x == const0_rtx)
1501 *total = 0;
1502 else
1503 *total = const_int_cost (x);
1504 return true;
1505
1506 case CONST:
1507 case LABEL_REF:
1508 case SYMBOL_REF:
1509 *total = 3;
1510 return true;
1511
1512 case CONST_DOUBLE:
1513 /* Make 0.0 cheaper than other floating constants to
1514 encourage creating tstsf and tstdf insns. */
1515 if (outer_code == COMPARE
1516 && (x == CONST0_RTX (SFmode) || x == CONST0_RTX (DFmode)))
1517 *total = 4;
1518 else
1519 *total = 5;
1520 return true;
1521
1522 /* These are vaguely right for a 68020. */
1523 /* The costs for long multiply have been adjusted to work properly
1524 in synth_mult on the 68020, relative to an average of the time
1525 for add and the time for shift, taking away a little more because
1526 sometimes move insns are needed. */
1527 /* div?.w is relatively cheaper on 68000 counted in COSTS_N_INSNS terms. */
1528 #define MULL_COST (TARGET_68060 ? 2 : TARGET_68040 ? 5 : (TARGET_COLDFIRE && !TARGET_5200) ? 3 : TARGET_COLDFIRE ? 10 : 13)
1529 #define MULW_COST (TARGET_68060 ? 2 : TARGET_68040 ? 3 : TARGET_68020 ? 8 : \
1530 (TARGET_COLDFIRE && !TARGET_5200) ? 2 : 5)
1531 #define DIVW_COST (TARGET_68020 ? 27 : TARGET_CF_HWDIV ? 11 : 12)
1532
1533 case PLUS:
1534 /* An lea costs about three times as much as a simple add. */
1535 if (GET_MODE (x) == SImode
1536 && GET_CODE (XEXP (x, 1)) == REG
1537 && GET_CODE (XEXP (x, 0)) == MULT
1538 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
1539 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1540 && (INTVAL (XEXP (XEXP (x, 0), 1)) == 2
1541 || INTVAL (XEXP (XEXP (x, 0), 1)) == 4
1542 || INTVAL (XEXP (XEXP (x, 0), 1)) == 8))
1543 {
1544 /* lea an@(dx:l:i),am */
1545 *total = COSTS_N_INSNS (TARGET_COLDFIRE ? 2 : 3);
1546 return true;
1547 }
1548 return false;
1549
1550 case ASHIFT:
1551 case ASHIFTRT:
1552 case LSHIFTRT:
1553 if (TARGET_68060)
1554 {
1555 *total = COSTS_N_INSNS(1);
1556 return true;
1557 }
1558 if (! TARGET_68020 && ! TARGET_COLDFIRE)
1559 {
1560 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
1561 {
1562 if (INTVAL (XEXP (x, 1)) < 16)
1563 *total = COSTS_N_INSNS (2) + INTVAL (XEXP (x, 1)) / 2;
1564 else
1565 /* We're using clrw + swap for these cases. */
1566 *total = COSTS_N_INSNS (4) + (INTVAL (XEXP (x, 1)) - 16) / 2;
1567 }
1568 else
1569 *total = COSTS_N_INSNS (10); /* worst case */
1570 return true;
1571 }
1572 /* A shift by a big integer takes an extra instruction. */
1573 if (GET_CODE (XEXP (x, 1)) == CONST_INT
1574 && (INTVAL (XEXP (x, 1)) == 16))
1575 {
1576 *total = COSTS_N_INSNS (2); /* clrw;swap */
1577 return true;
1578 }
1579 if (GET_CODE (XEXP (x, 1)) == CONST_INT
1580 && !(INTVAL (XEXP (x, 1)) > 0
1581 && INTVAL (XEXP (x, 1)) <= 8))
1582 {
1583 *total = COSTS_N_INSNS (TARGET_COLDFIRE ? 1 : 3); /* lsr #i,dn */
1584 return true;
1585 }
1586 return false;
1587
1588 case MULT:
1589 if ((GET_CODE (XEXP (x, 0)) == ZERO_EXTEND
1590 || GET_CODE (XEXP (x, 0)) == SIGN_EXTEND)
1591 && GET_MODE (x) == SImode)
1592 *total = COSTS_N_INSNS (MULW_COST);
1593 else if (GET_MODE (x) == QImode || GET_MODE (x) == HImode)
1594 *total = COSTS_N_INSNS (MULW_COST);
1595 else
1596 *total = COSTS_N_INSNS (MULL_COST);
1597 return true;
1598
1599 case DIV:
1600 case UDIV:
1601 case MOD:
1602 case UMOD:
1603 if (GET_MODE (x) == QImode || GET_MODE (x) == HImode)
1604 *total = COSTS_N_INSNS (DIVW_COST); /* div.w */
1605 else if (TARGET_CF_HWDIV)
1606 *total = COSTS_N_INSNS (18);
1607 else
1608 *total = COSTS_N_INSNS (43); /* div.l */
1609 return true;
1610
1611 default:
1612 return false;
1613 }
1614 }
1615
1616 const char *
1617 output_move_const_into_data_reg (rtx *operands)
1618 {
1619 int i;
1620
1621 i = INTVAL (operands[1]);
1622 switch (const_method (operands[1]))
1623 {
1624 case MVZ:
1625 return "mvsw %1,%0";
1626 case MVS:
1627 return "mvzw %1,%0";
1628 case MOVQ :
1629 return "moveq %1,%0";
1630 case NOTB :
1631 CC_STATUS_INIT;
1632 operands[1] = GEN_INT (i ^ 0xff);
1633 return "moveq %1,%0\n\tnot%.b %0";
1634 case NOTW :
1635 CC_STATUS_INIT;
1636 operands[1] = GEN_INT (i ^ 0xffff);
1637 return "moveq %1,%0\n\tnot%.w %0";
1638 case NEGW :
1639 CC_STATUS_INIT;
1640 return "moveq #-128,%0\n\tneg%.w %0";
1641 case SWAP :
1642 {
1643 unsigned u = i;
1644
1645 operands[1] = GEN_INT ((u << 16) | (u >> 16));
1646 return "moveq %1,%0\n\tswap %0";
1647 }
1648 case MOVL :
1649 return "move%.l %1,%0";
1650 default :
1651 abort ();
1652 }
1653 }
1654
1655 /* Return 1 if 'constant' can be represented by
1656 mov3q on a ColdFire V4 core. */
1657 int
1658 valid_mov3q_const (rtx constant)
1659 {
1660 int i;
1661
1662 if (TARGET_CFV4 && GET_CODE (constant) == CONST_INT)
1663 {
1664 i = INTVAL (constant);
1665 if ((i == -1) || (i >= 1 && i <= 7))
1666 return 1;
1667 }
1668 return 0;
1669 }
1670
1671
1672 const char *
1673 output_move_simode_const (rtx *operands)
1674 {
1675 if (operands[1] == const0_rtx
1676 && (DATA_REG_P (operands[0])
1677 || GET_CODE (operands[0]) == MEM)
1678 /* clr insns on 68000 read before writing.
1679 This isn't so on the 68010, but we have no TARGET_68010. */
1680 && ((TARGET_68020 || TARGET_COLDFIRE)
1681 || !(GET_CODE (operands[0]) == MEM
1682 && MEM_VOLATILE_P (operands[0]))))
1683 return "clr%.l %0";
1684 else if ((GET_MODE (operands[0]) == SImode)
1685 && valid_mov3q_const (operands[1]))
1686 return "mov3q%.l %1,%0";
1687 else if (operands[1] == const0_rtx
1688 && ADDRESS_REG_P (operands[0]))
1689 return "sub%.l %0,%0";
1690 else if (DATA_REG_P (operands[0]))
1691 return output_move_const_into_data_reg (operands);
1692 else if (ADDRESS_REG_P (operands[0])
1693 && INTVAL (operands[1]) < 0x8000
1694 && INTVAL (operands[1]) >= -0x8000)
1695 {
1696 if (valid_mov3q_const (operands[1]))
1697 return "mov3q%.l %1,%0";
1698 return "move%.w %1,%0";
1699 }
1700 else if (GET_CODE (operands[0]) == MEM
1701 && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC
1702 && REGNO (XEXP (XEXP (operands[0], 0), 0)) == STACK_POINTER_REGNUM
1703 && INTVAL (operands[1]) < 0x8000
1704 && INTVAL (operands[1]) >= -0x8000)
1705 {
1706 if (valid_mov3q_const (operands[1]))
1707 return "mov3q%.l %1,%-";
1708 return "pea %a1";
1709 }
1710 return "move%.l %1,%0";
1711 }
1712
1713 const char *
1714 output_move_simode (rtx *operands)
1715 {
1716 if (GET_CODE (operands[1]) == CONST_INT)
1717 return output_move_simode_const (operands);
1718 else if ((GET_CODE (operands[1]) == SYMBOL_REF
1719 || GET_CODE (operands[1]) == CONST)
1720 && push_operand (operands[0], SImode))
1721 return "pea %a1";
1722 else if ((GET_CODE (operands[1]) == SYMBOL_REF
1723 || GET_CODE (operands[1]) == CONST)
1724 && ADDRESS_REG_P (operands[0]))
1725 return "lea %a1,%0";
1726 return "move%.l %1,%0";
1727 }
1728
1729 const char *
1730 output_move_himode (rtx *operands)
1731 {
1732 if (GET_CODE (operands[1]) == CONST_INT)
1733 {
1734 if (operands[1] == const0_rtx
1735 && (DATA_REG_P (operands[0])
1736 || GET_CODE (operands[0]) == MEM)
1737 /* clr insns on 68000 read before writing.
1738 This isn't so on the 68010, but we have no TARGET_68010. */
1739 && ((TARGET_68020 || TARGET_COLDFIRE)
1740 || !(GET_CODE (operands[0]) == MEM
1741 && MEM_VOLATILE_P (operands[0]))))
1742 return "clr%.w %0";
1743 else if (operands[1] == const0_rtx
1744 && ADDRESS_REG_P (operands[0]))
1745 return "sub%.l %0,%0";
1746 else if (DATA_REG_P (operands[0])
1747 && INTVAL (operands[1]) < 128
1748 && INTVAL (operands[1]) >= -128)
1749 {
1750 return "moveq %1,%0";
1751 }
1752 else if (INTVAL (operands[1]) < 0x8000
1753 && INTVAL (operands[1]) >= -0x8000)
1754 return "move%.w %1,%0";
1755 }
1756 else if (CONSTANT_P (operands[1]))
1757 return "move%.l %1,%0";
1758 /* Recognize the insn before a tablejump, one that refers
1759 to a table of offsets. Such an insn will need to refer
1760 to a label on the insn. So output one. Use the label-number
1761 of the table of offsets to generate this label. This code,
1762 and similar code below, assumes that there will be at most one
1763 reference to each table. */
1764 if (GET_CODE (operands[1]) == MEM
1765 && GET_CODE (XEXP (operands[1], 0)) == PLUS
1766 && GET_CODE (XEXP (XEXP (operands[1], 0), 1)) == LABEL_REF
1767 && GET_CODE (XEXP (XEXP (operands[1], 0), 0)) != PLUS)
1768 {
1769 rtx labelref = XEXP (XEXP (operands[1], 0), 1);
1770 if (MOTOROLA)
1771 asm_fprintf (asm_out_file, "\t.set %LLI%d,.+2\n",
1772 CODE_LABEL_NUMBER (XEXP (labelref, 0)));
1773 else
1774 (*targetm.asm_out.internal_label) (asm_out_file, "LI",
1775 CODE_LABEL_NUMBER (XEXP (labelref, 0)));
1776 }
1777 return "move%.w %1,%0";
1778 }
1779
1780 const char *
1781 output_move_qimode (rtx *operands)
1782 {
1783 rtx xoperands[4];
1784
1785 /* This is probably useless, since it loses for pushing a struct
1786 of several bytes a byte at a time. */
1787 /* 68k family always modifies the stack pointer by at least 2, even for
1788 byte pushes. The 5200 (ColdFire) does not do this. */
1789 if (GET_CODE (operands[0]) == MEM
1790 && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC
1791 && XEXP (XEXP (operands[0], 0), 0) == stack_pointer_rtx
1792 && ! ADDRESS_REG_P (operands[1])
1793 && ! TARGET_COLDFIRE)
1794 {
1795 xoperands[1] = operands[1];
1796 xoperands[2]
1797 = gen_rtx_MEM (QImode,
1798 gen_rtx_PLUS (VOIDmode, stack_pointer_rtx, const1_rtx));
1799 /* Just pushing a byte puts it in the high byte of the halfword. */
1800 /* We must put it in the low-order, high-numbered byte. */
1801 if (!reg_mentioned_p (stack_pointer_rtx, operands[1]))
1802 {
1803 xoperands[3] = stack_pointer_rtx;
1804 output_asm_insn ("subq%.l #2,%3\n\tmove%.b %1,%2", xoperands);
1805 }
1806 else
1807 output_asm_insn ("move%.b %1,%-\n\tmove%.b %@,%2", xoperands);
1808 return "";
1809 }
1810
1811 /* clr and st insns on 68000 read before writing.
1812 This isn't so on the 68010, but we have no TARGET_68010. */
1813 if (!ADDRESS_REG_P (operands[0])
1814 && ((TARGET_68020 || TARGET_COLDFIRE)
1815 || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
1816 {
1817 if (operands[1] == const0_rtx)
1818 return "clr%.b %0";
1819 if ((!TARGET_COLDFIRE || DATA_REG_P (operands[0]))
1820 && GET_CODE (operands[1]) == CONST_INT
1821 && (INTVAL (operands[1]) & 255) == 255)
1822 {
1823 CC_STATUS_INIT;
1824 return "st %0";
1825 }
1826 }
1827 if (GET_CODE (operands[1]) == CONST_INT
1828 && DATA_REG_P (operands[0])
1829 && INTVAL (operands[1]) < 128
1830 && INTVAL (operands[1]) >= -128)
1831 {
1832 return "moveq %1,%0";
1833 }
1834 if (operands[1] == const0_rtx && ADDRESS_REG_P (operands[0]))
1835 return "sub%.l %0,%0";
1836 if (GET_CODE (operands[1]) != CONST_INT && CONSTANT_P (operands[1]))
1837 return "move%.l %1,%0";
1838 /* 68k family (including the 5200 ColdFire) does not support byte moves to
1839 from address registers. */
1840 if (ADDRESS_REG_P (operands[0]) || ADDRESS_REG_P (operands[1]))
1841 return "move%.w %1,%0";
1842 return "move%.b %1,%0";
1843 }
1844
1845 const char *
1846 output_move_stricthi (rtx *operands)
1847 {
1848 if (operands[1] == const0_rtx
1849 /* clr insns on 68000 read before writing.
1850 This isn't so on the 68010, but we have no TARGET_68010. */
1851 && ((TARGET_68020 || TARGET_COLDFIRE)
1852 || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
1853 return "clr%.w %0";
1854 return "move%.w %1,%0";
1855 }
1856
1857 const char *
1858 output_move_strictqi (rtx *operands)
1859 {
1860 if (operands[1] == const0_rtx
1861 /* clr insns on 68000 read before writing.
1862 This isn't so on the 68010, but we have no TARGET_68010. */
1863 && ((TARGET_68020 || TARGET_COLDFIRE)
1864 || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))
1865 return "clr%.b %0";
1866 return "move%.b %1,%0";
1867 }
1868
1869 /* Return the best assembler insn template
1870 for moving operands[1] into operands[0] as a fullword. */
1871
1872 static const char *
1873 singlemove_string (rtx *operands)
1874 {
1875 if (GET_CODE (operands[1]) == CONST_INT)
1876 return output_move_simode_const (operands);
1877 return "move%.l %1,%0";
1878 }
1879
1880
1881 /* Output assembler code to perform a doubleword move insn
1882 with operands OPERANDS. */
1883
1884 const char *
1885 output_move_double (rtx *operands)
1886 {
1887 enum
1888 {
1889 REGOP, OFFSOP, MEMOP, PUSHOP, POPOP, CNSTOP, RNDOP
1890 } optype0, optype1;
1891 rtx latehalf[2];
1892 rtx middlehalf[2];
1893 rtx xops[2];
1894 rtx addreg0 = 0, addreg1 = 0;
1895 int dest_overlapped_low = 0;
1896 int size = GET_MODE_SIZE (GET_MODE (operands[0]));
1897
1898 middlehalf[0] = 0;
1899 middlehalf[1] = 0;
1900
1901 /* First classify both operands. */
1902
1903 if (REG_P (operands[0]))
1904 optype0 = REGOP;
1905 else if (offsettable_memref_p (operands[0]))
1906 optype0 = OFFSOP;
1907 else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)
1908 optype0 = POPOP;
1909 else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
1910 optype0 = PUSHOP;
1911 else if (GET_CODE (operands[0]) == MEM)
1912 optype0 = MEMOP;
1913 else
1914 optype0 = RNDOP;
1915
1916 if (REG_P (operands[1]))
1917 optype1 = REGOP;
1918 else if (CONSTANT_P (operands[1]))
1919 optype1 = CNSTOP;
1920 else if (offsettable_memref_p (operands[1]))
1921 optype1 = OFFSOP;
1922 else if (GET_CODE (XEXP (operands[1], 0)) == POST_INC)
1923 optype1 = POPOP;
1924 else if (GET_CODE (XEXP (operands[1], 0)) == PRE_DEC)
1925 optype1 = PUSHOP;
1926 else if (GET_CODE (operands[1]) == MEM)
1927 optype1 = MEMOP;
1928 else
1929 optype1 = RNDOP;
1930
1931 /* Check for the cases that the operand constraints are not
1932 supposed to allow to happen. Abort if we get one,
1933 because generating code for these cases is painful. */
1934
1935 if (optype0 == RNDOP || optype1 == RNDOP)
1936 abort ();
1937
1938 /* If one operand is decrementing and one is incrementing
1939 decrement the former register explicitly
1940 and change that operand into ordinary indexing. */
1941
1942 if (optype0 == PUSHOP && optype1 == POPOP)
1943 {
1944 operands[0] = XEXP (XEXP (operands[0], 0), 0);
1945 if (size == 12)
1946 output_asm_insn ("sub%.l #12,%0", operands);
1947 else
1948 output_asm_insn ("subq%.l #8,%0", operands);
1949 if (GET_MODE (operands[1]) == XFmode)
1950 operands[0] = gen_rtx_MEM (XFmode, operands[0]);
1951 else if (GET_MODE (operands[0]) == DFmode)
1952 operands[0] = gen_rtx_MEM (DFmode, operands[0]);
1953 else
1954 operands[0] = gen_rtx_MEM (DImode, operands[0]);
1955 optype0 = OFFSOP;
1956 }
1957 if (optype0 == POPOP && optype1 == PUSHOP)
1958 {
1959 operands[1] = XEXP (XEXP (operands[1], 0), 0);
1960 if (size == 12)
1961 output_asm_insn ("sub%.l #12,%1", operands);
1962 else
1963 output_asm_insn ("subq%.l #8,%1", operands);
1964 if (GET_MODE (operands[1]) == XFmode)
1965 operands[1] = gen_rtx_MEM (XFmode, operands[1]);
1966 else if (GET_MODE (operands[1]) == DFmode)
1967 operands[1] = gen_rtx_MEM (DFmode, operands[1]);
1968 else
1969 operands[1] = gen_rtx_MEM (DImode, operands[1]);
1970 optype1 = OFFSOP;
1971 }
1972
1973 /* If an operand is an unoffsettable memory ref, find a register
1974 we can increment temporarily to make it refer to the second word. */
1975
1976 if (optype0 == MEMOP)
1977 addreg0 = find_addr_reg (XEXP (operands[0], 0));
1978
1979 if (optype1 == MEMOP)
1980 addreg1 = find_addr_reg (XEXP (operands[1], 0));
1981
1982 /* Ok, we can do one word at a time.
1983 Normally we do the low-numbered word first,
1984 but if either operand is autodecrementing then we
1985 do the high-numbered word first.
1986
1987 In either case, set up in LATEHALF the operands to use
1988 for the high-numbered word and in some cases alter the
1989 operands in OPERANDS to be suitable for the low-numbered word. */
1990
1991 if (size == 12)
1992 {
1993 if (optype0 == REGOP)
1994 {
1995 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 2);
1996 middlehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
1997 }
1998 else if (optype0 == OFFSOP)
1999 {
2000 middlehalf[0] = adjust_address (operands[0], SImode, 4);
2001 latehalf[0] = adjust_address (operands[0], SImode, size - 4);
2002 }
2003 else
2004 {
2005 middlehalf[0] = operands[0];
2006 latehalf[0] = operands[0];
2007 }
2008
2009 if (optype1 == REGOP)
2010 {
2011 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 2);
2012 middlehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
2013 }
2014 else if (optype1 == OFFSOP)
2015 {
2016 middlehalf[1] = adjust_address (operands[1], SImode, 4);
2017 latehalf[1] = adjust_address (operands[1], SImode, size - 4);
2018 }
2019 else if (optype1 == CNSTOP)
2020 {
2021 if (GET_CODE (operands[1]) == CONST_DOUBLE)
2022 {
2023 REAL_VALUE_TYPE r;
2024 long l[3];
2025
2026 REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
2027 REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, l);
2028 operands[1] = GEN_INT (l[0]);
2029 middlehalf[1] = GEN_INT (l[1]);
2030 latehalf[1] = GEN_INT (l[2]);
2031 }
2032 else if (CONSTANT_P (operands[1]))
2033 {
2034 /* actually, no non-CONST_DOUBLE constant should ever
2035 appear here. */
2036 abort ();
2037 if (GET_CODE (operands[1]) == CONST_INT && INTVAL (operands[1]) < 0)
2038 latehalf[1] = constm1_rtx;
2039 else
2040 latehalf[1] = const0_rtx;
2041 }
2042 }
2043 else
2044 {
2045 middlehalf[1] = operands[1];
2046 latehalf[1] = operands[1];
2047 }
2048 }
2049 else
2050 /* size is not 12: */
2051 {
2052 if (optype0 == REGOP)
2053 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
2054 else if (optype0 == OFFSOP)
2055 latehalf[0] = adjust_address (operands[0], SImode, size - 4);
2056 else
2057 latehalf[0] = operands[0];
2058
2059 if (optype1 == REGOP)
2060 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
2061 else if (optype1 == OFFSOP)
2062 latehalf[1] = adjust_address (operands[1], SImode, size - 4);
2063 else if (optype1 == CNSTOP)
2064 split_double (operands[1], &operands[1], &latehalf[1]);
2065 else
2066 latehalf[1] = operands[1];
2067 }
2068
2069 /* If insn is effectively movd N(sp),-(sp) then we will do the
2070 high word first. We should use the adjusted operand 1 (which is N+4(sp))
2071 for the low word as well, to compensate for the first decrement of sp. */
2072 if (optype0 == PUSHOP
2073 && REGNO (XEXP (XEXP (operands[0], 0), 0)) == STACK_POINTER_REGNUM
2074 && reg_overlap_mentioned_p (stack_pointer_rtx, operands[1]))
2075 operands[1] = middlehalf[1] = latehalf[1];
2076
2077 /* For (set (reg:DI N) (mem:DI ... (reg:SI N) ...)),
2078 if the upper part of reg N does not appear in the MEM, arrange to
2079 emit the move late-half first. Otherwise, compute the MEM address
2080 into the upper part of N and use that as a pointer to the memory
2081 operand. */
2082 if (optype0 == REGOP
2083 && (optype1 == OFFSOP || optype1 == MEMOP))
2084 {
2085 rtx testlow = gen_rtx_REG (SImode, REGNO (operands[0]));
2086
2087 if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))
2088 && reg_overlap_mentioned_p (latehalf[0], XEXP (operands[1], 0)))
2089 {
2090 /* If both halves of dest are used in the src memory address,
2091 compute the address into latehalf of dest.
2092 Note that this can't happen if the dest is two data regs. */
2093 compadr:
2094 xops[0] = latehalf[0];
2095 xops[1] = XEXP (operands[1], 0);
2096 output_asm_insn ("lea %a1,%0", xops);
2097 if (GET_MODE (operands[1]) == XFmode )
2098 {
2099 operands[1] = gen_rtx_MEM (XFmode, latehalf[0]);
2100 middlehalf[1] = adjust_address (operands[1], DImode, size - 8);
2101 latehalf[1] = adjust_address (operands[1], DImode, size - 4);
2102 }
2103 else
2104 {
2105 operands[1] = gen_rtx_MEM (DImode, latehalf[0]);
2106 latehalf[1] = adjust_address (operands[1], DImode, size - 4);
2107 }
2108 }
2109 else if (size == 12
2110 && reg_overlap_mentioned_p (middlehalf[0],
2111 XEXP (operands[1], 0)))
2112 {
2113 /* Check for two regs used by both source and dest.
2114 Note that this can't happen if the dest is all data regs.
2115 It can happen if the dest is d6, d7, a0.
2116 But in that case, latehalf is an addr reg, so
2117 the code at compadr does ok. */
2118
2119 if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))
2120 || reg_overlap_mentioned_p (latehalf[0], XEXP (operands[1], 0)))
2121 goto compadr;
2122
2123 /* JRV says this can't happen: */
2124 if (addreg0 || addreg1)
2125 abort ();
2126
2127 /* Only the middle reg conflicts; simply put it last. */
2128 output_asm_insn (singlemove_string (operands), operands);
2129 output_asm_insn (singlemove_string (latehalf), latehalf);
2130 output_asm_insn (singlemove_string (middlehalf), middlehalf);
2131 return "";
2132 }
2133 else if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0)))
2134 /* If the low half of dest is mentioned in the source memory
2135 address, the arrange to emit the move late half first. */
2136 dest_overlapped_low = 1;
2137 }
2138
2139 /* If one or both operands autodecrementing,
2140 do the two words, high-numbered first. */
2141
2142 /* Likewise, the first move would clobber the source of the second one,
2143 do them in the other order. This happens only for registers;
2144 such overlap can't happen in memory unless the user explicitly
2145 sets it up, and that is an undefined circumstance. */
2146
2147 if (optype0 == PUSHOP || optype1 == PUSHOP
2148 || (optype0 == REGOP && optype1 == REGOP
2149 && ((middlehalf[1] && REGNO (operands[0]) == REGNO (middlehalf[1]))
2150 || REGNO (operands[0]) == REGNO (latehalf[1])))
2151 || dest_overlapped_low)
2152 {
2153 /* Make any unoffsettable addresses point at high-numbered word. */
2154 if (addreg0)
2155 {
2156 if (size == 12)
2157 output_asm_insn ("addq%.l #8,%0", &addreg0);
2158 else
2159 output_asm_insn ("addq%.l #4,%0", &addreg0);
2160 }
2161 if (addreg1)
2162 {
2163 if (size == 12)
2164 output_asm_insn ("addq%.l #8,%0", &addreg1);
2165 else
2166 output_asm_insn ("addq%.l #4,%0", &addreg1);
2167 }
2168
2169 /* Do that word. */
2170 output_asm_insn (singlemove_string (latehalf), latehalf);
2171
2172 /* Undo the adds we just did. */
2173 if (addreg0)
2174 output_asm_insn ("subq%.l #4,%0", &addreg0);
2175 if (addreg1)
2176 output_asm_insn ("subq%.l #4,%0", &addreg1);
2177
2178 if (size == 12)
2179 {
2180 output_asm_insn (singlemove_string (middlehalf), middlehalf);
2181 if (addreg0)
2182 output_asm_insn ("subq%.l #4,%0", &addreg0);
2183 if (addreg1)
2184 output_asm_insn ("subq%.l #4,%0", &addreg1);
2185 }
2186
2187 /* Do low-numbered word. */
2188 return singlemove_string (operands);
2189 }
2190
2191 /* Normal case: do the two words, low-numbered first. */
2192
2193 output_asm_insn (singlemove_string (operands), operands);
2194
2195 /* Do the middle one of the three words for long double */
2196 if (size == 12)
2197 {
2198 if (addreg0)
2199 output_asm_insn ("addq%.l #4,%0", &addreg0);
2200 if (addreg1)
2201 output_asm_insn ("addq%.l #4,%0", &addreg1);
2202
2203 output_asm_insn (singlemove_string (middlehalf), middlehalf);
2204 }
2205
2206 /* Make any unoffsettable addresses point at high-numbered word. */
2207 if (addreg0)
2208 output_asm_insn ("addq%.l #4,%0", &addreg0);
2209 if (addreg1)
2210 output_asm_insn ("addq%.l #4,%0", &addreg1);
2211
2212 /* Do that word. */
2213 output_asm_insn (singlemove_string (latehalf), latehalf);
2214
2215 /* Undo the adds we just did. */
2216 if (addreg0)
2217 {
2218 if (size == 12)
2219 output_asm_insn ("subq%.l #8,%0", &addreg0);
2220 else
2221 output_asm_insn ("subq%.l #4,%0", &addreg0);
2222 }
2223 if (addreg1)
2224 {
2225 if (size == 12)
2226 output_asm_insn ("subq%.l #8,%0", &addreg1);
2227 else
2228 output_asm_insn ("subq%.l #4,%0", &addreg1);
2229 }
2230
2231 return "";
2232 }
2233
2234 /* Return a REG that occurs in ADDR with coefficient 1.
2235 ADDR can be effectively incremented by incrementing REG. */
2236
2237 static rtx
2238 find_addr_reg (rtx addr)
2239 {
2240 while (GET_CODE (addr) == PLUS)
2241 {
2242 if (GET_CODE (XEXP (addr, 0)) == REG)
2243 addr = XEXP (addr, 0);
2244 else if (GET_CODE (XEXP (addr, 1)) == REG)
2245 addr = XEXP (addr, 1);
2246 else if (CONSTANT_P (XEXP (addr, 0)))
2247 addr = XEXP (addr, 1);
2248 else if (CONSTANT_P (XEXP (addr, 1)))
2249 addr = XEXP (addr, 0);
2250 else
2251 abort ();
2252 }
2253 if (GET_CODE (addr) == REG)
2254 return addr;
2255 abort ();
2256 }
2257
2258 /* Output assembler code to perform a 32-bit 3-operand add. */
2259
2260 const char *
2261 output_addsi3 (rtx *operands)
2262 {
2263 if (! operands_match_p (operands[0], operands[1]))
2264 {
2265 if (!ADDRESS_REG_P (operands[1]))
2266 {
2267 rtx tmp = operands[1];
2268
2269 operands[1] = operands[2];
2270 operands[2] = tmp;
2271 }
2272
2273 /* These insns can result from reloads to access
2274 stack slots over 64k from the frame pointer. */
2275 if (GET_CODE (operands[2]) == CONST_INT
2276 && (INTVAL (operands[2]) < -32768 || INTVAL (operands[2]) > 32767))
2277 return "move%.l %2,%0\n\tadd%.l %1,%0";
2278 if (GET_CODE (operands[2]) == REG)
2279 return MOTOROLA ? "lea (%1,%2.l),%0" : "lea %1@(0,%2:l),%0";
2280 return MOTOROLA ? "lea (%c2,%1),%0" : "lea %1@(%c2),%0";
2281 }
2282 if (GET_CODE (operands[2]) == CONST_INT)
2283 {
2284 if (INTVAL (operands[2]) > 0
2285 && INTVAL (operands[2]) <= 8)
2286 return "addq%.l %2,%0";
2287 if (INTVAL (operands[2]) < 0
2288 && INTVAL (operands[2]) >= -8)
2289 {
2290 operands[2] = GEN_INT (- INTVAL (operands[2]));
2291 return "subq%.l %2,%0";
2292 }
2293 /* On the CPU32 it is faster to use two addql instructions to
2294 add a small integer (8 < N <= 16) to a register.
2295 Likewise for subql. */
2296 if (TARGET_CPU32 && REG_P (operands[0]))
2297 {
2298 if (INTVAL (operands[2]) > 8
2299 && INTVAL (operands[2]) <= 16)
2300 {
2301 operands[2] = GEN_INT (INTVAL (operands[2]) - 8);
2302 return "addq%.l #8,%0\n\taddq%.l %2,%0";
2303 }
2304 if (INTVAL (operands[2]) < -8
2305 && INTVAL (operands[2]) >= -16)
2306 {
2307 operands[2] = GEN_INT (- INTVAL (operands[2]) - 8);
2308 return "subq%.l #8,%0\n\tsubq%.l %2,%0";
2309 }
2310 }
2311 if (ADDRESS_REG_P (operands[0])
2312 && INTVAL (operands[2]) >= -0x8000
2313 && INTVAL (operands[2]) < 0x8000)
2314 {
2315 if (TARGET_68040)
2316 return "add%.w %2,%0";
2317 else
2318 return MOTOROLA ? "lea (%c2,%0),%0" : "lea %0@(%c2),%0";
2319 }
2320 }
2321 return "add%.l %2,%0";
2322 }
2323 \f
2324 /* Store in cc_status the expressions that the condition codes will
2325 describe after execution of an instruction whose pattern is EXP.
2326 Do not alter them if the instruction would not alter the cc's. */
2327
2328 /* On the 68000, all the insns to store in an address register fail to
2329 set the cc's. However, in some cases these instructions can make it
2330 possibly invalid to use the saved cc's. In those cases we clear out
2331 some or all of the saved cc's so they won't be used. */
2332
2333 void
2334 notice_update_cc (rtx exp, rtx insn)
2335 {
2336 if (GET_CODE (exp) == SET)
2337 {
2338 if (GET_CODE (SET_SRC (exp)) == CALL)
2339 {
2340 CC_STATUS_INIT;
2341 }
2342 else if (ADDRESS_REG_P (SET_DEST (exp)))
2343 {
2344 if (cc_status.value1 && modified_in_p (cc_status.value1, insn))
2345 cc_status.value1 = 0;
2346 if (cc_status.value2 && modified_in_p (cc_status.value2, insn))
2347 cc_status.value2 = 0;
2348 }
2349 else if (!FP_REG_P (SET_DEST (exp))
2350 && SET_DEST (exp) != cc0_rtx
2351 && (FP_REG_P (SET_SRC (exp))
2352 || GET_CODE (SET_SRC (exp)) == FIX
2353 || GET_CODE (SET_SRC (exp)) == FLOAT_TRUNCATE
2354 || GET_CODE (SET_SRC (exp)) == FLOAT_EXTEND))
2355 {
2356 CC_STATUS_INIT;
2357 }
2358 /* A pair of move insns doesn't produce a useful overall cc. */
2359 else if (!FP_REG_P (SET_DEST (exp))
2360 && !FP_REG_P (SET_SRC (exp))
2361 && GET_MODE_SIZE (GET_MODE (SET_SRC (exp))) > 4
2362 && (GET_CODE (SET_SRC (exp)) == REG
2363 || GET_CODE (SET_SRC (exp)) == MEM
2364 || GET_CODE (SET_SRC (exp)) == CONST_DOUBLE))
2365 {
2366 CC_STATUS_INIT;
2367 }
2368 else if (GET_CODE (SET_SRC (exp)) == CALL)
2369 {
2370 CC_STATUS_INIT;
2371 }
2372 else if (XEXP (exp, 0) != pc_rtx)
2373 {
2374 cc_status.flags = 0;
2375 cc_status.value1 = XEXP (exp, 0);
2376 cc_status.value2 = XEXP (exp, 1);
2377 }
2378 }
2379 else if (GET_CODE (exp) == PARALLEL
2380 && GET_CODE (XVECEXP (exp, 0, 0)) == SET)
2381 {
2382 if (ADDRESS_REG_P (XEXP (XVECEXP (exp, 0, 0), 0)))
2383 CC_STATUS_INIT;
2384 else if (XEXP (XVECEXP (exp, 0, 0), 0) != pc_rtx)
2385 {
2386 cc_status.flags = 0;
2387 cc_status.value1 = XEXP (XVECEXP (exp, 0, 0), 0);
2388 cc_status.value2 = XEXP (XVECEXP (exp, 0, 0), 1);
2389 }
2390 }
2391 else
2392 CC_STATUS_INIT;
2393 if (cc_status.value2 != 0
2394 && ADDRESS_REG_P (cc_status.value2)
2395 && GET_MODE (cc_status.value2) == QImode)
2396 CC_STATUS_INIT;
2397 if (cc_status.value2 != 0)
2398 switch (GET_CODE (cc_status.value2))
2399 {
2400 case ASHIFT: case ASHIFTRT: case LSHIFTRT:
2401 case ROTATE: case ROTATERT:
2402 /* These instructions always clear the overflow bit, and set
2403 the carry to the bit shifted out. */
2404 /* ??? We don't currently have a way to signal carry not valid,
2405 nor do we check for it in the branch insns. */
2406 CC_STATUS_INIT;
2407 break;
2408
2409 case PLUS: case MINUS: case MULT:
2410 case DIV: case UDIV: case MOD: case UMOD: case NEG:
2411 if (GET_MODE (cc_status.value2) != VOIDmode)
2412 cc_status.flags |= CC_NO_OVERFLOW;
2413 break;
2414 case ZERO_EXTEND:
2415 /* (SET r1 (ZERO_EXTEND r2)) on this machine
2416 ends with a move insn moving r2 in r2's mode.
2417 Thus, the cc's are set for r2.
2418 This can set N bit spuriously. */
2419 cc_status.flags |= CC_NOT_NEGATIVE;
2420
2421 default:
2422 break;
2423 }
2424 if (cc_status.value1 && GET_CODE (cc_status.value1) == REG
2425 && cc_status.value2
2426 && reg_overlap_mentioned_p (cc_status.value1, cc_status.value2))
2427 cc_status.value2 = 0;
2428 if (((cc_status.value1 && FP_REG_P (cc_status.value1))
2429 || (cc_status.value2 && FP_REG_P (cc_status.value2))))
2430 cc_status.flags = CC_IN_68881;
2431 }
2432 \f
2433 const char *
2434 output_move_const_double (rtx *operands)
2435 {
2436 int code = standard_68881_constant_p (operands[1]);
2437
2438 if (code != 0)
2439 {
2440 static char buf[40];
2441
2442 sprintf (buf, "fmovecr #0x%x,%%0", code & 0xff);
2443 return buf;
2444 }
2445 return "fmove%.d %1,%0";
2446 }
2447
2448 const char *
2449 output_move_const_single (rtx *operands)
2450 {
2451 int code = standard_68881_constant_p (operands[1]);
2452
2453 if (code != 0)
2454 {
2455 static char buf[40];
2456
2457 sprintf (buf, "fmovecr #0x%x,%%0", code & 0xff);
2458 return buf;
2459 }
2460 return "fmove%.s %f1,%0";
2461 }
2462
2463 /* Return nonzero if X, a CONST_DOUBLE, has a value that we can get
2464 from the "fmovecr" instruction.
2465 The value, anded with 0xff, gives the code to use in fmovecr
2466 to get the desired constant. */
2467
2468 /* This code has been fixed for cross-compilation. */
2469
2470 static int inited_68881_table = 0;
2471
2472 static const char *const strings_68881[7] = {
2473 "0.0",
2474 "1.0",
2475 "10.0",
2476 "100.0",
2477 "10000.0",
2478 "1e8",
2479 "1e16"
2480 };
2481
2482 static const int codes_68881[7] = {
2483 0x0f,
2484 0x32,
2485 0x33,
2486 0x34,
2487 0x35,
2488 0x36,
2489 0x37
2490 };
2491
2492 REAL_VALUE_TYPE values_68881[7];
2493
2494 /* Set up values_68881 array by converting the decimal values
2495 strings_68881 to binary. */
2496
2497 void
2498 init_68881_table (void)
2499 {
2500 int i;
2501 REAL_VALUE_TYPE r;
2502 enum machine_mode mode;
2503
2504 mode = SFmode;
2505 for (i = 0; i < 7; i++)
2506 {
2507 if (i == 6)
2508 mode = DFmode;
2509 r = REAL_VALUE_ATOF (strings_68881[i], mode);
2510 values_68881[i] = r;
2511 }
2512 inited_68881_table = 1;
2513 }
2514
2515 int
2516 standard_68881_constant_p (rtx x)
2517 {
2518 REAL_VALUE_TYPE r;
2519 int i;
2520
2521 /* fmovecr must be emulated on the 68040 and 68060, so it shouldn't be
2522 used at all on those chips. */
2523 if (TARGET_68040 || TARGET_68060)
2524 return 0;
2525
2526 if (! inited_68881_table)
2527 init_68881_table ();
2528
2529 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
2530
2531 /* Use REAL_VALUES_IDENTICAL instead of REAL_VALUES_EQUAL so that -0.0
2532 is rejected. */
2533 for (i = 0; i < 6; i++)
2534 {
2535 if (REAL_VALUES_IDENTICAL (r, values_68881[i]))
2536 return (codes_68881[i]);
2537 }
2538
2539 if (GET_MODE (x) == SFmode)
2540 return 0;
2541
2542 if (REAL_VALUES_EQUAL (r, values_68881[6]))
2543 return (codes_68881[6]);
2544
2545 /* larger powers of ten in the constants ram are not used
2546 because they are not equal to a `double' C constant. */
2547 return 0;
2548 }
2549
2550 /* If X is a floating-point constant, return the logarithm of X base 2,
2551 or 0 if X is not a power of 2. */
2552
2553 int
2554 floating_exact_log2 (rtx x)
2555 {
2556 REAL_VALUE_TYPE r, r1;
2557 int exp;
2558
2559 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
2560
2561 if (REAL_VALUES_LESS (r, dconst1))
2562 return 0;
2563
2564 exp = real_exponent (&r);
2565 real_2expN (&r1, exp);
2566 if (REAL_VALUES_EQUAL (r1, r))
2567 return exp;
2568
2569 return 0;
2570 }
2571 \f
2572 /* A C compound statement to output to stdio stream STREAM the
2573 assembler syntax for an instruction operand X. X is an RTL
2574 expression.
2575
2576 CODE is a value that can be used to specify one of several ways
2577 of printing the operand. It is used when identical operands
2578 must be printed differently depending on the context. CODE
2579 comes from the `%' specification that was used to request
2580 printing of the operand. If the specification was just `%DIGIT'
2581 then CODE is 0; if the specification was `%LTR DIGIT' then CODE
2582 is the ASCII code for LTR.
2583
2584 If X is a register, this macro should print the register's name.
2585 The names can be found in an array `reg_names' whose type is
2586 `char *[]'. `reg_names' is initialized from `REGISTER_NAMES'.
2587
2588 When the machine description has a specification `%PUNCT' (a `%'
2589 followed by a punctuation character), this macro is called with
2590 a null pointer for X and the punctuation character for CODE.
2591
2592 The m68k specific codes are:
2593
2594 '.' for dot needed in Motorola-style opcode names.
2595 '-' for an operand pushing on the stack:
2596 sp@-, -(sp) or -(%sp) depending on the style of syntax.
2597 '+' for an operand pushing on the stack:
2598 sp@+, (sp)+ or (%sp)+ depending on the style of syntax.
2599 '@' for a reference to the top word on the stack:
2600 sp@, (sp) or (%sp) depending on the style of syntax.
2601 '#' for an immediate operand prefix (# in MIT and Motorola syntax
2602 but & in SGS syntax).
2603 '!' for the cc register (used in an `and to cc' insn).
2604 '$' for the letter `s' in an op code, but only on the 68040.
2605 '&' for the letter `d' in an op code, but only on the 68040.
2606 '/' for register prefix needed by longlong.h.
2607
2608 'b' for byte insn (no effect, on the Sun; this is for the ISI).
2609 'd' to force memory addressing to be absolute, not relative.
2610 'f' for float insn (print a CONST_DOUBLE as a float rather than in hex)
2611 'o' for operands to go directly to output_operand_address (bypassing
2612 print_operand_address--used only for SYMBOL_REFs under TARGET_PCREL)
2613 'x' for float insn (print a CONST_DOUBLE as a float rather than in hex),
2614 or print pair of registers as rx:ry.
2615
2616 */
2617
2618 void
2619 print_operand (FILE *file, rtx op, int letter)
2620 {
2621 if (letter == '.')
2622 {
2623 if (MOTOROLA)
2624 fprintf (file, ".");
2625 }
2626 else if (letter == '#')
2627 asm_fprintf (file, "%I");
2628 else if (letter == '-')
2629 asm_fprintf (file, MOTOROLA ? "-(%Rsp)" : "%Rsp@-");
2630 else if (letter == '+')
2631 asm_fprintf (file, MOTOROLA ? "(%Rsp)+" : "%Rsp@+");
2632 else if (letter == '@')
2633 asm_fprintf (file, MOTOROLA ? "(%Rsp)" : "%Rsp@");
2634 else if (letter == '!')
2635 asm_fprintf (file, "%Rfpcr");
2636 else if (letter == '$')
2637 {
2638 if (TARGET_68040_ONLY)
2639 fprintf (file, "s");
2640 }
2641 else if (letter == '&')
2642 {
2643 if (TARGET_68040_ONLY)
2644 fprintf (file, "d");
2645 }
2646 else if (letter == '/')
2647 asm_fprintf (file, "%R");
2648 else if (letter == 'o')
2649 {
2650 /* This is only for direct addresses with TARGET_PCREL */
2651 if (GET_CODE (op) != MEM || GET_CODE (XEXP (op, 0)) != SYMBOL_REF
2652 || !TARGET_PCREL)
2653 abort ();
2654 output_addr_const (file, XEXP (op, 0));
2655 }
2656 else if (GET_CODE (op) == REG)
2657 {
2658 if (letter == 'R')
2659 /* Print out the second register name of a register pair.
2660 I.e., R (6) => 7. */
2661 fputs (M68K_REGNAME(REGNO (op) + 1), file);
2662 else
2663 fputs (M68K_REGNAME(REGNO (op)), file);
2664 }
2665 else if (GET_CODE (op) == MEM)
2666 {
2667 output_address (XEXP (op, 0));
2668 if (letter == 'd' && ! TARGET_68020
2669 && CONSTANT_ADDRESS_P (XEXP (op, 0))
2670 && !(GET_CODE (XEXP (op, 0)) == CONST_INT
2671 && INTVAL (XEXP (op, 0)) < 0x8000
2672 && INTVAL (XEXP (op, 0)) >= -0x8000))
2673 fprintf (file, MOTOROLA ? ".l" : ":l");
2674 }
2675 else if (GET_CODE (op) == CONST_DOUBLE && GET_MODE (op) == SFmode)
2676 {
2677 REAL_VALUE_TYPE r;
2678 REAL_VALUE_FROM_CONST_DOUBLE (r, op);
2679 ASM_OUTPUT_FLOAT_OPERAND (letter, file, r);
2680 }
2681 else if (GET_CODE (op) == CONST_DOUBLE && GET_MODE (op) == XFmode)
2682 {
2683 REAL_VALUE_TYPE r;
2684 REAL_VALUE_FROM_CONST_DOUBLE (r, op);
2685 ASM_OUTPUT_LONG_DOUBLE_OPERAND (file, r);
2686 }
2687 else if (GET_CODE (op) == CONST_DOUBLE && GET_MODE (op) == DFmode)
2688 {
2689 REAL_VALUE_TYPE r;
2690 REAL_VALUE_FROM_CONST_DOUBLE (r, op);
2691 ASM_OUTPUT_DOUBLE_OPERAND (file, r);
2692 }
2693 else
2694 {
2695 /* Use `print_operand_address' instead of `output_addr_const'
2696 to ensure that we print relevant PIC stuff. */
2697 asm_fprintf (file, "%I");
2698 if (TARGET_PCREL
2699 && (GET_CODE (op) == SYMBOL_REF || GET_CODE (op) == CONST))
2700 print_operand_address (file, op);
2701 else
2702 output_addr_const (file, op);
2703 }
2704 }
2705
2706 \f
2707 /* A C compound statement to output to stdio stream STREAM the
2708 assembler syntax for an instruction operand that is a memory
2709 reference whose address is ADDR. ADDR is an RTL expression.
2710
2711 Note that this contains a kludge that knows that the only reason
2712 we have an address (plus (label_ref...) (reg...)) when not generating
2713 PIC code is in the insn before a tablejump, and we know that m68k.md
2714 generates a label LInnn: on such an insn.
2715
2716 It is possible for PIC to generate a (plus (label_ref...) (reg...))
2717 and we handle that just like we would a (plus (symbol_ref...) (reg...)).
2718
2719 Some SGS assemblers have a bug such that "Lnnn-LInnn-2.b(pc,d0.l*2)"
2720 fails to assemble. Luckily "Lnnn(pc,d0.l*2)" produces the results
2721 we want. This difference can be accommodated by using an assembler
2722 define such "LDnnn" to be either "Lnnn-LInnn-2.b", "Lnnn", or any other
2723 string, as necessary. This is accomplished via the ASM_OUTPUT_CASE_END
2724 macro. See m68k/sgs.h for an example; for versions without the bug.
2725 Some assemblers refuse all the above solutions. The workaround is to
2726 emit "K(pc,d0.l*2)" with K being a small constant known to give the
2727 right behavior.
2728
2729 They also do not like things like "pea 1.w", so we simple leave off
2730 the .w on small constants.
2731
2732 This routine is responsible for distinguishing between -fpic and -fPIC
2733 style relocations in an address. When generating -fpic code the
2734 offset is output in word mode (eg movel a5@(_foo:w), a0). When generating
2735 -fPIC code the offset is output in long mode (eg movel a5@(_foo:l), a0) */
2736
2737 #if MOTOROLA
2738 # define ASM_OUTPUT_CASE_FETCH(file, labelno, regname)\
2739 asm_fprintf (file, "%LL%d-%LLI%d.b(%Rpc,%s.", labelno, labelno, regname)
2740 #else /* !MOTOROLA */
2741 # define ASM_OUTPUT_CASE_FETCH(file, labelno, regname)\
2742 asm_fprintf (file, "%Rpc@(%LL%d-%LLI%d-2:b,%s:", labelno, labelno, regname)
2743 #endif /* !MOTOROLA */
2744
2745 void
2746 print_operand_address (FILE *file, rtx addr)
2747 {
2748 register rtx reg1, reg2, breg, ireg;
2749 rtx offset;
2750
2751 switch (GET_CODE (addr))
2752 {
2753 case REG:
2754 fprintf (file, MOTOROLA ? "(%s)" : "%s@", M68K_REGNAME(REGNO (addr)));
2755 break;
2756 case PRE_DEC:
2757 fprintf (file, MOTOROLA ? "-(%s)" : "%s@-",
2758 M68K_REGNAME(REGNO (XEXP (addr, 0))));
2759 break;
2760 case POST_INC:
2761 fprintf (file, MOTOROLA ? "(%s)+" : "%s@+",
2762 M68K_REGNAME(REGNO (XEXP (addr, 0))));
2763 break;
2764 case PLUS:
2765 reg1 = reg2 = ireg = breg = offset = 0;
2766 if (CONSTANT_ADDRESS_P (XEXP (addr, 0)))
2767 {
2768 offset = XEXP (addr, 0);
2769 addr = XEXP (addr, 1);
2770 }
2771 else if (CONSTANT_ADDRESS_P (XEXP (addr, 1)))
2772 {
2773 offset = XEXP (addr, 1);
2774 addr = XEXP (addr, 0);
2775 }
2776 if (GET_CODE (addr) != PLUS)
2777 {
2778 ;
2779 }
2780 else if (GET_CODE (XEXP (addr, 0)) == SIGN_EXTEND)
2781 {
2782 reg1 = XEXP (addr, 0);
2783 addr = XEXP (addr, 1);
2784 }
2785 else if (GET_CODE (XEXP (addr, 1)) == SIGN_EXTEND)
2786 {
2787 reg1 = XEXP (addr, 1);
2788 addr = XEXP (addr, 0);
2789 }
2790 else if (GET_CODE (XEXP (addr, 0)) == MULT)
2791 {
2792 reg1 = XEXP (addr, 0);
2793 addr = XEXP (addr, 1);
2794 }
2795 else if (GET_CODE (XEXP (addr, 1)) == MULT)
2796 {
2797 reg1 = XEXP (addr, 1);
2798 addr = XEXP (addr, 0);
2799 }
2800 else if (GET_CODE (XEXP (addr, 0)) == REG)
2801 {
2802 reg1 = XEXP (addr, 0);
2803 addr = XEXP (addr, 1);
2804 }
2805 else if (GET_CODE (XEXP (addr, 1)) == REG)
2806 {
2807 reg1 = XEXP (addr, 1);
2808 addr = XEXP (addr, 0);
2809 }
2810 if (GET_CODE (addr) == REG || GET_CODE (addr) == MULT
2811 || GET_CODE (addr) == SIGN_EXTEND)
2812 {
2813 if (reg1 == 0)
2814 {
2815 reg1 = addr;
2816 }
2817 else
2818 {
2819 reg2 = addr;
2820 }
2821 addr = 0;
2822 }
2823 #if 0 /* for OLD_INDEXING */
2824 else if (GET_CODE (addr) == PLUS)
2825 {
2826 if (GET_CODE (XEXP (addr, 0)) == REG)
2827 {
2828 reg2 = XEXP (addr, 0);
2829 addr = XEXP (addr, 1);
2830 }
2831 else if (GET_CODE (XEXP (addr, 1)) == REG)
2832 {
2833 reg2 = XEXP (addr, 1);
2834 addr = XEXP (addr, 0);
2835 }
2836 }
2837 #endif
2838 if (offset != 0)
2839 {
2840 if (addr != 0)
2841 {
2842 abort ();
2843 }
2844 addr = offset;
2845 }
2846 if ((reg1 && (GET_CODE (reg1) == SIGN_EXTEND
2847 || GET_CODE (reg1) == MULT))
2848 || (reg2 != 0 && REGNO_OK_FOR_BASE_P (REGNO (reg2))))
2849 {
2850 breg = reg2;
2851 ireg = reg1;
2852 }
2853 else if (reg1 != 0 && REGNO_OK_FOR_BASE_P (REGNO (reg1)))
2854 {
2855 breg = reg1;
2856 ireg = reg2;
2857 }
2858 if (ireg != 0 && breg == 0 && GET_CODE (addr) == LABEL_REF
2859 && ! (flag_pic && ireg == pic_offset_table_rtx))
2860 {
2861 int scale = 1;
2862 if (GET_CODE (ireg) == MULT)
2863 {
2864 scale = INTVAL (XEXP (ireg, 1));
2865 ireg = XEXP (ireg, 0);
2866 }
2867 if (GET_CODE (ireg) == SIGN_EXTEND)
2868 {
2869 ASM_OUTPUT_CASE_FETCH (file,
2870 CODE_LABEL_NUMBER (XEXP (addr, 0)),
2871 M68K_REGNAME(REGNO (XEXP (ireg, 0))));
2872 fprintf (file, "w");
2873 }
2874 else
2875 {
2876 ASM_OUTPUT_CASE_FETCH (file,
2877 CODE_LABEL_NUMBER (XEXP (addr, 0)),
2878 M68K_REGNAME(REGNO (ireg)));
2879 fprintf (file, "l");
2880 }
2881 if (scale != 1)
2882 fprintf (file, MOTOROLA ? "*%d" : ":%d", scale);
2883 putc (')', file);
2884 break;
2885 }
2886 if (breg != 0 && ireg == 0 && GET_CODE (addr) == LABEL_REF
2887 && ! (flag_pic && breg == pic_offset_table_rtx))
2888 {
2889 ASM_OUTPUT_CASE_FETCH (file,
2890 CODE_LABEL_NUMBER (XEXP (addr, 0)),
2891 M68K_REGNAME(REGNO (breg)));
2892 fprintf (file, "l)");
2893 break;
2894 }
2895 if (ireg != 0 || breg != 0)
2896 {
2897 int scale = 1;
2898 if (breg == 0)
2899 {
2900 abort ();
2901 }
2902 if (! flag_pic && addr && GET_CODE (addr) == LABEL_REF)
2903 {
2904 abort ();
2905 }
2906 if (MOTOROLA)
2907 {
2908 if (addr != 0)
2909 {
2910 output_addr_const (file, addr);
2911 if (flag_pic && (breg == pic_offset_table_rtx))
2912 {
2913 fprintf (file, "@GOT");
2914 if (flag_pic == 1)
2915 fprintf (file, ".w");
2916 }
2917 }
2918 fprintf (file, "(%s", M68K_REGNAME(REGNO (breg)));
2919 if (ireg != 0)
2920 putc (',', file);
2921 }
2922 else /* !MOTOROLA */
2923 {
2924 fprintf (file, "%s@(", M68K_REGNAME(REGNO (breg)));
2925 if (addr != 0)
2926 {
2927 output_addr_const (file, addr);
2928 if (breg == pic_offset_table_rtx)
2929 switch (flag_pic)
2930 {
2931 case 1:
2932 fprintf (file, ":w"); break;
2933 case 2:
2934 fprintf (file, ":l"); break;
2935 default:
2936 break;
2937 }
2938 if (ireg != 0)
2939 putc (',', file);
2940 }
2941 } /* !MOTOROLA */
2942 if (ireg != 0 && GET_CODE (ireg) == MULT)
2943 {
2944 scale = INTVAL (XEXP (ireg, 1));
2945 ireg = XEXP (ireg, 0);
2946 }
2947 if (ireg != 0 && GET_CODE (ireg) == SIGN_EXTEND)
2948 fprintf (file, MOTOROLA ? "%s.w" : "%s:w",
2949 M68K_REGNAME(REGNO (XEXP (ireg, 0))));
2950 else if (ireg != 0)
2951 fprintf (file, MOTOROLA ? "%s.l" : "%s:l",
2952 M68K_REGNAME(REGNO (ireg)));
2953 if (scale != 1)
2954 fprintf (file, MOTOROLA ? "*%d" : ":%d", scale);
2955 putc (')', file);
2956 break;
2957 }
2958 else if (reg1 != 0 && GET_CODE (addr) == LABEL_REF
2959 && ! (flag_pic && reg1 == pic_offset_table_rtx))
2960 {
2961 ASM_OUTPUT_CASE_FETCH (file,
2962 CODE_LABEL_NUMBER (XEXP (addr, 0)),
2963 M68K_REGNAME(REGNO (reg1)));
2964 fprintf (file, "l)");
2965 break;
2966 }
2967 /* FALL-THROUGH (is this really what we want?) */
2968 default:
2969 if (GET_CODE (addr) == CONST_INT
2970 && INTVAL (addr) < 0x8000
2971 && INTVAL (addr) >= -0x8000)
2972 {
2973 fprintf (file, MOTOROLA ? "%d.w" : "%d:w", (int) INTVAL (addr));
2974 }
2975 else if (GET_CODE (addr) == CONST_INT)
2976 {
2977 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (addr));
2978 }
2979 else if (TARGET_PCREL)
2980 {
2981 fputc ('(', file);
2982 output_addr_const (file, addr);
2983 if (flag_pic == 1)
2984 asm_fprintf (file, ":w,%Rpc)");
2985 else
2986 asm_fprintf (file, ":l,%Rpc)");
2987 }
2988 else
2989 {
2990 /* Special case for SYMBOL_REF if the symbol name ends in
2991 `.<letter>', this can be mistaken as a size suffix. Put
2992 the name in parentheses. */
2993 if (GET_CODE (addr) == SYMBOL_REF
2994 && strlen (XSTR (addr, 0)) > 2
2995 && XSTR (addr, 0)[strlen (XSTR (addr, 0)) - 2] == '.')
2996 {
2997 putc ('(', file);
2998 output_addr_const (file, addr);
2999 putc (')', file);
3000 }
3001 else
3002 output_addr_const (file, addr);
3003 }
3004 break;
3005 }
3006 }
3007 \f
3008 /* Check for cases where a clr insns can be omitted from code using
3009 strict_low_part sets. For example, the second clrl here is not needed:
3010 clrl d0; movw a0@+,d0; use d0; clrl d0; movw a0@+; use d0; ...
3011
3012 MODE is the mode of this STRICT_LOW_PART set. FIRST_INSN is the clear
3013 insn we are checking for redundancy. TARGET is the register set by the
3014 clear insn. */
3015
3016 bool
3017 strict_low_part_peephole_ok (enum machine_mode mode, rtx first_insn,
3018 rtx target)
3019 {
3020 rtx p;
3021
3022 p = prev_nonnote_insn (first_insn);
3023
3024 while (p)
3025 {
3026 /* If it isn't an insn, then give up. */
3027 if (GET_CODE (p) != INSN)
3028 return false;
3029
3030 if (reg_set_p (target, p))
3031 {
3032 rtx set = single_set (p);
3033 rtx dest;
3034
3035 /* If it isn't an easy to recognize insn, then give up. */
3036 if (! set)
3037 return false;
3038
3039 dest = SET_DEST (set);
3040
3041 /* If this sets the entire target register to zero, then our
3042 first_insn is redundant. */
3043 if (rtx_equal_p (dest, target)
3044 && SET_SRC (set) == const0_rtx)
3045 return true;
3046 else if (GET_CODE (dest) == STRICT_LOW_PART
3047 && GET_CODE (XEXP (dest, 0)) == REG
3048 && REGNO (XEXP (dest, 0)) == REGNO (target)
3049 && (GET_MODE_SIZE (GET_MODE (XEXP (dest, 0)))
3050 <= GET_MODE_SIZE (mode)))
3051 /* This is a strict low part set which modifies less than
3052 we are using, so it is safe. */
3053 ;
3054 else
3055 return false;
3056 }
3057
3058 p = prev_nonnote_insn (p);
3059 }
3060
3061 return false;
3062 }
3063
3064 /* Accept integer operands in the range 0..0xffffffff. We have to check the
3065 range carefully since this predicate is used in DImode contexts. Also, we
3066 need some extra crud to make it work when hosted on 64-bit machines. */
3067
3068 int
3069 const_uint32_operand (rtx op, enum machine_mode mode)
3070 {
3071 /* It doesn't make sense to ask this question with a mode that is
3072 not larger than 32 bits. */
3073 if (GET_MODE_BITSIZE (mode) <= 32)
3074 abort ();
3075
3076 #if HOST_BITS_PER_WIDE_INT > 32
3077 /* All allowed constants will fit a CONST_INT. */
3078 return (GET_CODE (op) == CONST_INT
3079 && (INTVAL (op) >= 0 && INTVAL (op) <= 0xffffffffL));
3080 #else
3081 return (GET_CODE (op) == CONST_INT
3082 || (GET_CODE (op) == CONST_DOUBLE && CONST_DOUBLE_HIGH (op) == 0));
3083 #endif
3084 }
3085
3086 /* Accept integer operands in the range -0x80000000..0x7fffffff. We have
3087 to check the range carefully since this predicate is used in DImode
3088 contexts. */
3089
3090 int
3091 const_sint32_operand (rtx op, enum machine_mode mode)
3092 {
3093 /* It doesn't make sense to ask this question with a mode that is
3094 not larger than 32 bits. */
3095 if (GET_MODE_BITSIZE (mode) <= 32)
3096 abort ();
3097
3098 /* All allowed constants will fit a CONST_INT. */
3099 return (GET_CODE (op) == CONST_INT
3100 && (INTVAL (op) >= (-0x7fffffff - 1) && INTVAL (op) <= 0x7fffffff));
3101 }
3102
3103 /* Operand predicates for implementing asymmetric pc-relative addressing
3104 on m68k. The m68k supports pc-relative addressing (mode 7, register 2)
3105 when used as a source operand, but not as a destination operand.
3106
3107 We model this by restricting the meaning of the basic predicates
3108 (general_operand, memory_operand, etc) to forbid the use of this
3109 addressing mode, and then define the following predicates that permit
3110 this addressing mode. These predicates can then be used for the
3111 source operands of the appropriate instructions.
3112
3113 n.b. While it is theoretically possible to change all machine patterns
3114 to use this addressing more where permitted by the architecture,
3115 it has only been implemented for "common" cases: SImode, HImode, and
3116 QImode operands, and only for the principle operations that would
3117 require this addressing mode: data movement and simple integer operations.
3118
3119 In parallel with these new predicates, two new constraint letters
3120 were defined: 'S' and 'T'. 'S' is the -mpcrel analog of 'm'.
3121 'T' replaces 's' in the non-pcrel case. It is a no-op in the pcrel case.
3122 In the pcrel case 's' is only valid in combination with 'a' registers.
3123 See addsi3, subsi3, cmpsi, and movsi patterns for a better understanding
3124 of how these constraints are used.
3125
3126 The use of these predicates is strictly optional, though patterns that
3127 don't will cause an extra reload register to be allocated where one
3128 was not necessary:
3129
3130 lea (abc:w,%pc),%a0 ; need to reload address
3131 moveq &1,%d1 ; since write to pc-relative space
3132 movel %d1,%a0@ ; is not allowed
3133 ...
3134 lea (abc:w,%pc),%a1 ; no need to reload address here
3135 movel %a1@,%d0 ; since "movel (abc:w,%pc),%d0" is ok
3136
3137 For more info, consult tiemann@cygnus.com.
3138
3139
3140 All of the ugliness with predicates and constraints is due to the
3141 simple fact that the m68k does not allow a pc-relative addressing
3142 mode as a destination. gcc does not distinguish between source and
3143 destination addresses. Hence, if we claim that pc-relative address
3144 modes are valid, e.g. GO_IF_LEGITIMATE_ADDRESS accepts them, then we
3145 end up with invalid code. To get around this problem, we left
3146 pc-relative modes as invalid addresses, and then added special
3147 predicates and constraints to accept them.
3148
3149 A cleaner way to handle this is to modify gcc to distinguish
3150 between source and destination addresses. We can then say that
3151 pc-relative is a valid source address but not a valid destination
3152 address, and hopefully avoid a lot of the predicate and constraint
3153 hackery. Unfortunately, this would be a pretty big change. It would
3154 be a useful change for a number of ports, but there aren't any current
3155 plans to undertake this.
3156
3157 ***************************************************************************/
3158
3159
3160 /* Special case of a general operand that's used as a source operand.
3161 Use this to permit reads from PC-relative memory when -mpcrel
3162 is specified. */
3163
3164 int
3165 general_src_operand (rtx op, enum machine_mode mode)
3166 {
3167 if (TARGET_PCREL
3168 && GET_CODE (op) == MEM
3169 && (GET_CODE (XEXP (op, 0)) == SYMBOL_REF
3170 || GET_CODE (XEXP (op, 0)) == LABEL_REF
3171 || GET_CODE (XEXP (op, 0)) == CONST))
3172 return 1;
3173 return general_operand (op, mode);
3174 }
3175
3176 /* Special case of a nonimmediate operand that's used as a source.
3177 Use this to permit reads from PC-relative memory when -mpcrel
3178 is specified. */
3179
3180 int
3181 nonimmediate_src_operand (rtx op, enum machine_mode mode)
3182 {
3183 if (TARGET_PCREL && GET_CODE (op) == MEM
3184 && (GET_CODE (XEXP (op, 0)) == SYMBOL_REF
3185 || GET_CODE (XEXP (op, 0)) == LABEL_REF
3186 || GET_CODE (XEXP (op, 0)) == CONST))
3187 return 1;
3188 return nonimmediate_operand (op, mode);
3189 }
3190
3191 /* Special case of a memory operand that's used as a source.
3192 Use this to permit reads from PC-relative memory when -mpcrel
3193 is specified. */
3194
3195 int
3196 memory_src_operand (rtx op, enum machine_mode mode)
3197 {
3198 if (TARGET_PCREL && GET_CODE (op) == MEM
3199 && (GET_CODE (XEXP (op, 0)) == SYMBOL_REF
3200 || GET_CODE (XEXP (op, 0)) == LABEL_REF
3201 || GET_CODE (XEXP (op, 0)) == CONST))
3202 return 1;
3203 return memory_operand (op, mode);
3204 }
3205
3206 /* Predicate that accepts only a pc-relative address. This is needed
3207 because pc-relative addresses don't satisfy the predicate
3208 "general_src_operand". */
3209
3210 int
3211 pcrel_address (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
3212 {
3213 return (GET_CODE (op) == SYMBOL_REF || GET_CODE (op) == LABEL_REF
3214 || GET_CODE (op) == CONST);
3215 }
3216
3217 const char *
3218 output_andsi3 (rtx *operands)
3219 {
3220 int logval;
3221 if (GET_CODE (operands[2]) == CONST_INT
3222 && (INTVAL (operands[2]) | 0xffff) == (HOST_WIDE_INT)0xffffffff
3223 && (DATA_REG_P (operands[0])
3224 || offsettable_memref_p (operands[0]))
3225 && !TARGET_COLDFIRE)
3226 {
3227 if (GET_CODE (operands[0]) != REG)
3228 operands[0] = adjust_address (operands[0], HImode, 2);
3229 operands[2] = GEN_INT (INTVAL (operands[2]) & 0xffff);
3230 /* Do not delete a following tstl %0 insn; that would be incorrect. */
3231 CC_STATUS_INIT;
3232 if (operands[2] == const0_rtx)
3233 return "clr%.w %0";
3234 return "and%.w %2,%0";
3235 }
3236 if (GET_CODE (operands[2]) == CONST_INT
3237 && (logval = exact_log2 (~ INTVAL (operands[2]))) >= 0
3238 && (DATA_REG_P (operands[0])
3239 || offsettable_memref_p (operands[0])))
3240 {
3241 if (DATA_REG_P (operands[0]))
3242 {
3243 operands[1] = GEN_INT (logval);
3244 }
3245 else
3246 {
3247 operands[0] = adjust_address (operands[0], SImode, 3 - (logval / 8));
3248 operands[1] = GEN_INT (logval % 8);
3249 }
3250 /* This does not set condition codes in a standard way. */
3251 CC_STATUS_INIT;
3252 return "bclr %1,%0";
3253 }
3254 return "and%.l %2,%0";
3255 }
3256
3257 const char *
3258 output_iorsi3 (rtx *operands)
3259 {
3260 register int logval;
3261 if (GET_CODE (operands[2]) == CONST_INT
3262 && INTVAL (operands[2]) >> 16 == 0
3263 && (DATA_REG_P (operands[0])
3264 || offsettable_memref_p (operands[0]))
3265 && !TARGET_COLDFIRE)
3266 {
3267 if (GET_CODE (operands[0]) != REG)
3268 operands[0] = adjust_address (operands[0], HImode, 2);
3269 /* Do not delete a following tstl %0 insn; that would be incorrect. */
3270 CC_STATUS_INIT;
3271 if (INTVAL (operands[2]) == 0xffff)
3272 return "mov%.w %2,%0";
3273 return "or%.w %2,%0";
3274 }
3275 if (GET_CODE (operands[2]) == CONST_INT
3276 && (logval = exact_log2 (INTVAL (operands[2]))) >= 0
3277 && (DATA_REG_P (operands[0])
3278 || offsettable_memref_p (operands[0])))
3279 {
3280 if (DATA_REG_P (operands[0]))
3281 operands[1] = GEN_INT (logval);
3282 else
3283 {
3284 operands[0] = adjust_address (operands[0], SImode, 3 - (logval / 8));
3285 operands[1] = GEN_INT (logval % 8);
3286 }
3287 CC_STATUS_INIT;
3288 return "bset %1,%0";
3289 }
3290 return "or%.l %2,%0";
3291 }
3292
3293 const char *
3294 output_xorsi3 (rtx *operands)
3295 {
3296 register int logval;
3297 if (GET_CODE (operands[2]) == CONST_INT
3298 && INTVAL (operands[2]) >> 16 == 0
3299 && (offsettable_memref_p (operands[0]) || DATA_REG_P (operands[0]))
3300 && !TARGET_COLDFIRE)
3301 {
3302 if (! DATA_REG_P (operands[0]))
3303 operands[0] = adjust_address (operands[0], HImode, 2);
3304 /* Do not delete a following tstl %0 insn; that would be incorrect. */
3305 CC_STATUS_INIT;
3306 if (INTVAL (operands[2]) == 0xffff)
3307 return "not%.w %0";
3308 return "eor%.w %2,%0";
3309 }
3310 if (GET_CODE (operands[2]) == CONST_INT
3311 && (logval = exact_log2 (INTVAL (operands[2]))) >= 0
3312 && (DATA_REG_P (operands[0])
3313 || offsettable_memref_p (operands[0])))
3314 {
3315 if (DATA_REG_P (operands[0]))
3316 operands[1] = GEN_INT (logval);
3317 else
3318 {
3319 operands[0] = adjust_address (operands[0], SImode, 3 - (logval / 8));
3320 operands[1] = GEN_INT (logval % 8);
3321 }
3322 CC_STATUS_INIT;
3323 return "bchg %1,%0";
3324 }
3325 return "eor%.l %2,%0";
3326 }
3327
3328 #ifdef M68K_TARGET_COFF
3329
3330 /* Output assembly to switch to section NAME with attribute FLAGS. */
3331
3332 static void
3333 m68k_coff_asm_named_section (const char *name, unsigned int flags)
3334 {
3335 char flagchar;
3336
3337 if (flags & SECTION_WRITE)
3338 flagchar = 'd';
3339 else
3340 flagchar = 'x';
3341
3342 fprintf (asm_out_file, "\t.section\t%s,\"%c\"\n", name, flagchar);
3343 }
3344
3345 #endif /* M68K_TARGET_COFF */
3346
3347 static void
3348 m68k_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
3349 HOST_WIDE_INT delta,
3350 HOST_WIDE_INT vcall_offset ATTRIBUTE_UNUSED,
3351 tree function)
3352 {
3353 rtx xops[1];
3354 const char *fmt;
3355
3356 if (delta > 0 && delta <= 8)
3357 asm_fprintf (file, MOTOROLA ?
3358 "\taddq.l %I%d,4(%Rsp)\n" :
3359 "\taddql %I%d,%Rsp@(4)\n",
3360 (int) delta);
3361 else if (delta < 0 && delta >= -8)
3362 asm_fprintf (file, MOTOROLA ?
3363 "\tsubq.l %I%d,4(%Rsp)\n" :
3364 "\tsubql %I%d,%Rsp@(4)\n",
3365 (int) -delta);
3366 else if (TARGET_COLDFIRE)
3367 {
3368 /* ColdFire can't add/sub a constant to memory unless it is in
3369 the range of addq/subq. So load the value into %d0 and
3370 then add it to 4(%sp). */
3371 if (delta >= -128 && delta <= 127)
3372 asm_fprintf (file, MOTOROLA ?
3373 "\tmoveq.l %I%wd,%Rd0\n" :
3374 "\tmoveql %I%wd,%Rd0\n", delta);
3375 else
3376 asm_fprintf (file, MOTOROLA ?
3377 "\tmove.l %I%wd,%Rd0\n" :
3378 "\tmovel %I%wd,%Rd0\n", delta);
3379 asm_fprintf (file, MOTOROLA ?
3380 "\tadd.l %Rd0,4(%Rsp)\n" :
3381 "\taddl %Rd0,%Rsp@(4)\n");
3382 }
3383 else
3384 asm_fprintf (file, MOTOROLA ?
3385 "\tadd.l %I%wd,4(%Rsp)\n" :
3386 "\taddl %I%wd,%Rsp@(4)\n",
3387 delta);
3388
3389 xops[0] = DECL_RTL (function);
3390
3391 /* Logic taken from call patterns in m68k.md. */
3392 if (flag_pic)
3393 {
3394 if (TARGET_PCREL)
3395 fmt = "bra.l %o0";
3396 else if ((flag_pic == 1) || TARGET_68020)
3397 {
3398 if (MOTOROLA)
3399 #if defined(USE_GAS)
3400 fmt = "bra.l %0@PLTPC";
3401 #else
3402 fmt = "bra %0@PLTPC";
3403 #endif
3404 else /* !MOTOROLA */
3405 #ifdef USE_GAS
3406 fmt = "bra.l %0";
3407 #else
3408 fmt = "jra %0,a1";
3409 #endif
3410 }
3411 else if (optimize_size || TARGET_ID_SHARED_LIBRARY)
3412 fmt = "move.l %0@GOT(%%a5), %%a1\n\tjmp (%%a1)";
3413 else
3414 fmt = "lea %0-.-8,%%a1\n\tjsr 0(%%pc,%%a1)";
3415 }
3416 else
3417 {
3418 #if MOTOROLA && !defined (USE_GAS)
3419 fmt = "jmp %0";
3420 #else
3421 fmt = "jra %0";
3422 #endif
3423 }
3424
3425 output_asm_insn (fmt, xops);
3426 }
3427
3428 /* Worker function for TARGET_STRUCT_VALUE_RTX. */
3429
3430 static rtx
3431 m68k_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
3432 int incoming ATTRIBUTE_UNUSED)
3433 {
3434 return gen_rtx_REG (Pmode, M68K_STRUCT_VALUE_REGNUM);
3435 }