* Makefile.in (cse.o): Depend on TARGET_H.
[official-gcc.git] / gcc / config / h8300 / h8300.c
blobe59e87776f4ed8ede7b5fc2c2da682c47ce93170
1 /* Subroutines for insn-output.c for Hitachi H8/300.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003 Free Software Foundation, Inc.
4 Contributed by Steve Chamberlain (sac@cygnus.com),
5 Jim Wilson (wilson@cygnus.com), and Doug Evans (dje@cygnus.com).
7 This file is part of GNU CC.
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "rtl.h"
29 #include "tree.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 "flags.h"
38 #include "recog.h"
39 #include "expr.h"
40 #include "function.h"
41 #include "toplev.h"
42 #include "c-pragma.h"
43 #include "tm_p.h"
44 #include "ggc.h"
45 #include "target.h"
46 #include "target-def.h"
48 /* Forward declarations. */
49 static const char *byte_reg PARAMS ((rtx, int));
50 static int h8300_interrupt_function_p PARAMS ((tree));
51 static int h8300_monitor_function_p PARAMS ((tree));
52 static int h8300_os_task_function_p PARAMS ((tree));
53 static void dosize PARAMS ((int, unsigned int));
54 static int round_frame_size PARAMS ((int));
55 static unsigned int compute_saved_regs PARAMS ((void));
56 static void push PARAMS ((int));
57 static void pop PARAMS ((int));
58 static const char *cond_string PARAMS ((enum rtx_code));
59 static unsigned int h8300_asm_insn_count PARAMS ((const char *));
60 const struct attribute_spec h8300_attribute_table[];
61 static tree h8300_handle_fndecl_attribute PARAMS ((tree *, tree, tree, int, bool *));
62 static tree h8300_handle_eightbit_data_attribute PARAMS ((tree *, tree, tree, int, bool *));
63 static tree h8300_handle_tiny_data_attribute PARAMS ((tree *, tree, tree, int, bool *));
64 static void h8300_output_function_epilogue PARAMS ((FILE *, HOST_WIDE_INT));
65 static void h8300_insert_attributes PARAMS ((tree, tree *));
66 #ifndef OBJECT_FORMAT_ELF
67 static void h8300_asm_named_section PARAMS ((const char *, unsigned int));
68 #endif
69 static void h8300_encode_label PARAMS ((tree));
70 static void h8300_encode_section_info PARAMS ((tree, int));
71 static const char *h8300_strip_name_encoding PARAMS ((const char *));
72 static int const_costs PARAMS ((rtx, enum rtx_code, enum rtx_code));
73 static int h8300_and_costs PARAMS ((rtx));
74 static int h8300_shift_costs PARAMS ((rtx));
75 static bool h8300_rtx_costs PARAMS ((rtx, int, int, int *));
77 /* CPU_TYPE, says what cpu we're compiling for. */
78 int cpu_type;
80 /* True if a #pragma interrupt has been seen for the current function. */
81 static int pragma_interrupt;
83 /* True if a #pragma saveall has been seen for the current function. */
84 static int pragma_saveall;
86 static const char *const names_big[] =
87 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7" };
89 static const char *const names_extended[] =
90 { "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7" };
92 static const char *const names_upper_extended[] =
93 { "e0", "e1", "e2", "e3", "e4", "e5", "e6", "e7" };
95 /* Points to one of the above. */
96 /* ??? The above could be put in an array indexed by CPU_TYPE. */
97 const char * const *h8_reg_names;
99 /* Various operations needed by the following, indexed by CPU_TYPE. */
101 const char *h8_push_op, *h8_pop_op, *h8_mov_op;
103 /* Initialize the GCC target structure. */
104 #undef TARGET_ATTRIBUTE_TABLE
105 #define TARGET_ATTRIBUTE_TABLE h8300_attribute_table
107 #undef TARGET_ASM_ALIGNED_HI_OP
108 #define TARGET_ASM_ALIGNED_HI_OP "\t.word\t"
110 #undef TARGET_ASM_FUNCTION_EPILOGUE
111 #define TARGET_ASM_FUNCTION_EPILOGUE h8300_output_function_epilogue
112 #undef TARGET_ENCODE_SECTION_INFO
113 #define TARGET_ENCODE_SECTION_INFO h8300_encode_section_info
114 #undef TARGET_STRIP_NAME_ENCODING
115 #define TARGET_STRIP_NAME_ENCODING h8300_strip_name_encoding
117 #undef TARGET_INSERT_ATTRIBUTES
118 #define TARGET_INSERT_ATTRIBUTES h8300_insert_attributes
120 #undef TARGET_RTX_COSTS
121 #define TARGET_RTX_COSTS h8300_rtx_costs
123 struct gcc_target targetm = TARGET_INITIALIZER;
125 /* See below where shifts are handled for explanation of this enum. */
127 enum shift_alg
129 SHIFT_INLINE,
130 SHIFT_ROT_AND,
131 SHIFT_SPECIAL,
132 SHIFT_LOOP
135 /* Symbols of the various shifts which can be used as indices. */
137 enum shift_type
139 SHIFT_ASHIFT, SHIFT_LSHIFTRT, SHIFT_ASHIFTRT
142 /* Macros to keep the shift algorithm tables small. */
143 #define INL SHIFT_INLINE
144 #define ROT SHIFT_ROT_AND
145 #define LOP SHIFT_LOOP
146 #define SPC SHIFT_SPECIAL
148 /* The shift algorithms for each machine, mode, shift type, and shift
149 count are defined below. The three tables below correspond to
150 QImode, HImode, and SImode, respectively. Each table is organized
151 by, in the order of indices, machine, shift type, and shift count. */
153 static enum shift_alg shift_alg_qi[3][3][8] = {
155 /* TARGET_H8300 */
156 /* 0 1 2 3 4 5 6 7 */
157 { INL, INL, INL, INL, INL, ROT, ROT, ROT }, /* SHIFT_ASHIFT */
158 { INL, INL, INL, INL, INL, ROT, ROT, ROT }, /* SHIFT_LSHIFTRT */
159 { INL, INL, INL, INL, INL, LOP, LOP, SPC } /* SHIFT_ASHIFTRT */
162 /* TARGET_H8300H */
163 /* 0 1 2 3 4 5 6 7 */
164 { INL, INL, INL, INL, INL, ROT, ROT, ROT }, /* SHIFT_ASHIFT */
165 { INL, INL, INL, INL, INL, ROT, ROT, ROT }, /* SHIFT_LSHIFTRT */
166 { INL, INL, INL, INL, INL, LOP, LOP, SPC } /* SHIFT_ASHIFTRT */
169 /* TARGET_H8300S */
170 /* 0 1 2 3 4 5 6 7 */
171 { INL, INL, INL, INL, INL, INL, ROT, ROT }, /* SHIFT_ASHIFT */
172 { INL, INL, INL, INL, INL, INL, ROT, ROT }, /* SHIFT_LSHIFTRT */
173 { INL, INL, INL, INL, INL, INL, INL, SPC } /* SHIFT_ASHIFTRT */
177 static enum shift_alg shift_alg_hi[3][3][16] = {
179 /* TARGET_H8300 */
180 /* 0 1 2 3 4 5 6 7 */
181 /* 8 9 10 11 12 13 14 15 */
182 { INL, INL, INL, INL, INL, INL, INL, SPC,
183 SPC, SPC, SPC, SPC, SPC, SPC, SPC, SPC }, /* SHIFT_ASHIFT */
184 { INL, INL, INL, INL, INL, LOP, LOP, SPC,
185 SPC, SPC, SPC, SPC, SPC, SPC, SPC, SPC }, /* SHIFT_LSHIFTRT */
186 { INL, INL, INL, INL, INL, LOP, LOP, SPC,
187 SPC, SPC, SPC, SPC, SPC, SPC, SPC, SPC }, /* SHIFT_ASHIFTRT */
190 /* TARGET_H8300H */
191 /* 0 1 2 3 4 5 6 7 */
192 /* 8 9 10 11 12 13 14 15 */
193 { INL, INL, INL, INL, INL, INL, INL, SPC,
194 SPC, SPC, SPC, SPC, SPC, ROT, ROT, ROT }, /* SHIFT_ASHIFT */
195 { INL, INL, INL, INL, INL, INL, INL, SPC,
196 SPC, SPC, SPC, SPC, SPC, ROT, ROT, ROT }, /* SHIFT_LSHIFTRT */
197 { INL, INL, INL, INL, INL, INL, INL, SPC,
198 SPC, SPC, SPC, SPC, SPC, SPC, SPC, SPC }, /* SHIFT_ASHIFTRT */
201 /* TARGET_H8300S */
202 /* 0 1 2 3 4 5 6 7 */
203 /* 8 9 10 11 12 13 14 15 */
204 { INL, INL, INL, INL, INL, INL, INL, INL,
205 SPC, SPC, SPC, SPC, SPC, ROT, ROT, ROT }, /* SHIFT_ASHIFT */
206 { INL, INL, INL, INL, INL, INL, INL, INL,
207 SPC, SPC, SPC, SPC, SPC, ROT, ROT, ROT }, /* SHIFT_LSHIFTRT */
208 { INL, INL, INL, INL, INL, INL, INL, INL,
209 SPC, SPC, SPC, SPC, SPC, SPC, SPC, SPC }, /* SHIFT_ASHIFTRT */
213 static enum shift_alg shift_alg_si[3][3][32] = {
215 /* TARGET_H8300 */
216 /* 0 1 2 3 4 5 6 7 */
217 /* 8 9 10 11 12 13 14 15 */
218 /* 16 17 18 19 20 21 22 23 */
219 /* 24 25 26 27 28 29 30 31 */
220 { INL, INL, INL, LOP, LOP, LOP, LOP, LOP,
221 SPC, LOP, LOP, LOP, LOP, LOP, LOP, LOP,
222 SPC, SPC, SPC, SPC, SPC, LOP, LOP, LOP,
223 SPC, SPC, SPC, SPC, LOP, LOP, LOP, SPC }, /* SHIFT_ASHIFT */
224 { INL, INL, INL, LOP, LOP, LOP, LOP, LOP,
225 SPC, SPC, LOP, LOP, LOP, LOP, LOP, SPC,
226 SPC, SPC, SPC, LOP, LOP, LOP, LOP, LOP,
227 SPC, SPC, SPC, SPC, SPC, LOP, LOP, SPC }, /* SHIFT_LSHIFTRT */
228 { INL, INL, INL, LOP, LOP, LOP, LOP, LOP,
229 SPC, LOP, LOP, LOP, LOP, LOP, LOP, SPC,
230 SPC, SPC, LOP, LOP, LOP, LOP, LOP, LOP,
231 SPC, SPC, SPC, LOP, LOP, LOP, LOP, SPC }, /* SHIFT_ASHIFTRT */
234 /* TARGET_H8300H */
235 /* 0 1 2 3 4 5 6 7 */
236 /* 8 9 10 11 12 13 14 15 */
237 /* 16 17 18 19 20 21 22 23 */
238 /* 24 25 26 27 28 29 30 31 */
239 { INL, INL, INL, INL, INL, LOP, LOP, LOP,
240 SPC, LOP, LOP, LOP, LOP, LOP, LOP, SPC,
241 SPC, SPC, SPC, SPC, LOP, LOP, LOP, LOP,
242 SPC, LOP, LOP, LOP, SPC, SPC, SPC, SPC }, /* SHIFT_ASHIFT */
243 { INL, INL, INL, INL, INL, LOP, LOP, LOP,
244 SPC, LOP, LOP, LOP, LOP, LOP, LOP, SPC,
245 SPC, SPC, SPC, SPC, LOP, LOP, LOP, LOP,
246 SPC, LOP, LOP, LOP, SPC, SPC, SPC, SPC }, /* SHIFT_LSHIFTRT */
247 { INL, INL, INL, INL, INL, LOP, LOP, LOP,
248 SPC, LOP, LOP, LOP, LOP, LOP, LOP, LOP,
249 SPC, SPC, SPC, SPC, LOP, LOP, LOP, LOP,
250 SPC, LOP, LOP, LOP, LOP, LOP, LOP, SPC }, /* SHIFT_ASHIFTRT */
253 /* TARGET_H8300S */
254 /* 0 1 2 3 4 5 6 7 */
255 /* 8 9 10 11 12 13 14 15 */
256 /* 16 17 18 19 20 21 22 23 */
257 /* 24 25 26 27 28 29 30 31 */
258 { INL, INL, INL, INL, INL, INL, INL, INL,
259 INL, INL, INL, LOP, LOP, LOP, LOP, SPC,
260 SPC, SPC, SPC, SPC, SPC, SPC, LOP, LOP,
261 SPC, SPC, LOP, LOP, SPC, SPC, SPC, SPC }, /* SHIFT_ASHIFT */
262 { INL, INL, INL, INL, INL, INL, INL, INL,
263 INL, INL, INL, LOP, LOP, LOP, LOP, SPC,
264 SPC, SPC, SPC, SPC, SPC, SPC, LOP, LOP,
265 SPC, SPC, LOP, LOP, SPC, SPC, SPC, SPC }, /* SHIFT_LSHIFTRT */
266 { INL, INL, INL, INL, INL, INL, INL, INL,
267 INL, INL, INL, LOP, LOP, LOP, LOP, LOP,
268 SPC, SPC, SPC, SPC, SPC, SPC, LOP, LOP,
269 SPC, SPC, LOP, LOP, LOP, LOP, LOP, SPC }, /* SHIFT_ASHIFTRT */
273 #undef INL
274 #undef ROT
275 #undef LOP
276 #undef SPC
278 enum h8_cpu
280 H8_300,
281 H8_300H,
282 H8_S
285 /* Initialize various cpu specific globals at start up. */
287 void
288 h8300_init_once ()
290 static const char *const h8_push_ops[2] = { "push" , "push.l" };
291 static const char *const h8_pop_ops[2] = { "pop" , "pop.l" };
292 static const char *const h8_mov_ops[2] = { "mov.w", "mov.l" };
294 if (TARGET_H8300)
296 cpu_type = (int) CPU_H8300;
297 h8_reg_names = names_big;
299 else
301 /* For this we treat the H8/300H and H8S the same. */
302 cpu_type = (int) CPU_H8300H;
303 h8_reg_names = names_extended;
305 h8_push_op = h8_push_ops[cpu_type];
306 h8_pop_op = h8_pop_ops[cpu_type];
307 h8_mov_op = h8_mov_ops[cpu_type];
309 if (!TARGET_H8300S && TARGET_MAC)
311 error ("-ms2600 is used without -ms");
312 target_flags |= MASK_H8300S;
315 if (TARGET_H8300 && TARGET_NORMAL_MODE)
317 error ("-mn is used without -mh or -ms");
318 target_flags ^= MASK_NORMAL_MODE;
321 /* Some of the shifts are optimized for speed by default.
322 See http://gcc.gnu.org/ml/gcc-patches/2002-07/msg01858.html
323 If optimizing for size, change shift_alg for those shift to
324 SHIFT_LOOP. */
325 if (optimize_size)
327 /* H8/300 */
328 shift_alg_hi[H8_300][SHIFT_ASHIFT][5] = SHIFT_LOOP;
329 shift_alg_hi[H8_300][SHIFT_ASHIFT][6] = SHIFT_LOOP;
330 shift_alg_hi[H8_300][SHIFT_ASHIFT][13] = SHIFT_LOOP;
331 shift_alg_hi[H8_300][SHIFT_ASHIFT][14] = SHIFT_LOOP;
333 shift_alg_hi[H8_300][SHIFT_LSHIFTRT][13] = SHIFT_LOOP;
334 shift_alg_hi[H8_300][SHIFT_LSHIFTRT][14] = SHIFT_LOOP;
336 shift_alg_hi[H8_300][SHIFT_ASHIFTRT][13] = SHIFT_LOOP;
337 shift_alg_hi[H8_300][SHIFT_ASHIFTRT][14] = SHIFT_LOOP;
339 /* H8/300H */
340 shift_alg_hi[H8_300H][SHIFT_ASHIFT][5] = SHIFT_LOOP;
341 shift_alg_hi[H8_300H][SHIFT_ASHIFT][6] = SHIFT_LOOP;
343 shift_alg_hi[H8_300H][SHIFT_LSHIFTRT][5] = SHIFT_LOOP;
344 shift_alg_hi[H8_300H][SHIFT_LSHIFTRT][6] = SHIFT_LOOP;
346 shift_alg_hi[H8_300H][SHIFT_ASHIFTRT][5] = SHIFT_LOOP;
347 shift_alg_hi[H8_300H][SHIFT_ASHIFTRT][6] = SHIFT_LOOP;
348 shift_alg_hi[H8_300H][SHIFT_ASHIFTRT][13] = SHIFT_LOOP;
349 shift_alg_hi[H8_300H][SHIFT_ASHIFTRT][14] = SHIFT_LOOP;
351 /* H8S */
352 shift_alg_hi[H8_S][SHIFT_ASHIFTRT][14] = SHIFT_LOOP;
356 static const char *
357 byte_reg (x, b)
358 rtx x;
359 int b;
361 static const char *const names_small[] = {
362 "r0l", "r0h", "r1l", "r1h", "r2l", "r2h", "r3l", "r3h",
363 "r4l", "r4h", "r5l", "r5h", "r6l", "r6h", "r7l", "r7h"
366 return names_small[REGNO (x) * 2 + b];
369 /* REGNO must be saved/restored across calls if this macro is true. */
371 #define WORD_REG_USED(regno) \
372 (regno < 7 \
373 /* No need to save registers if this function will not return. */ \
374 && ! TREE_THIS_VOLATILE (current_function_decl) \
375 && (pragma_saveall \
376 /* Save any call saved register that was used. */ \
377 || (regs_ever_live[regno] && !call_used_regs[regno]) \
378 /* Save the frame pointer if it was used. */ \
379 || (regno == FRAME_POINTER_REGNUM && regs_ever_live[regno]) \
380 /* Save any register used in an interrupt handler. */ \
381 || (h8300_current_function_interrupt_function_p () \
382 && regs_ever_live[regno]) \
383 /* Save call clobbered registers in non-leaf interrupt \
384 handlers. */ \
385 || (h8300_current_function_interrupt_function_p () \
386 && call_used_regs[regno] \
387 && !current_function_is_leaf)))
389 /* Output assembly language to FILE for the operation OP with operand size
390 SIZE to adjust the stack pointer. */
392 static void
393 dosize (sign, size)
394 int sign;
395 unsigned int size;
397 /* H8/300 cannot add/subtract a large constant with a single
398 instruction. If a temporary register is available, load the
399 constant to it and then do the addition. */
400 if (TARGET_H8300
401 && size > 4
402 && !h8300_current_function_interrupt_function_p ()
403 && !(current_function_needs_context && sign < 0))
405 rtx new_sp;
406 rtx r3 = gen_rtx_REG (Pmode, 3);
407 emit_insn (gen_rtx_SET (Pmode, r3, GEN_INT (sign * size)));
408 new_sp = gen_rtx_PLUS (Pmode, stack_pointer_rtx, r3);
409 emit_insn (gen_rtx_SET (Pmode, stack_pointer_rtx, new_sp));
411 else
413 /* The stack adjustment made here is further optimized by the
414 splitter. In case of H8/300, the splitter always splits the
415 addition emitted here to make the adjustment
416 interrupt-safe. */
417 rtx new_sp = plus_constant (stack_pointer_rtx, sign * size);
418 emit_insn (gen_rtx_SET (Pmode, stack_pointer_rtx, new_sp));
422 /* Round up frame size SIZE. */
424 static int
425 round_frame_size (size)
426 int size;
428 return ((size + STACK_BOUNDARY / BITS_PER_UNIT - 1)
429 & -STACK_BOUNDARY / BITS_PER_UNIT);
432 /* Compute which registers to push/pop.
433 Return a bit vector of registers. */
435 static unsigned int
436 compute_saved_regs ()
438 unsigned int saved_regs = 0;
439 int regno;
441 /* Construct a bit vector of registers to be pushed/popped. */
442 for (regno = 0; regno <= FRAME_POINTER_REGNUM; regno++)
444 if (WORD_REG_USED (regno))
445 saved_regs |= 1 << regno;
448 /* Don't push/pop the frame pointer as it is treated separately. */
449 if (frame_pointer_needed)
450 saved_regs &= ~(1 << FRAME_POINTER_REGNUM);
452 return saved_regs;
455 /* Emit an insn to push register RN. */
457 static void
458 push (rn)
459 int rn;
461 rtx reg = gen_rtx_REG (word_mode, rn);
462 rtx x;
464 if (TARGET_H8300)
465 x = gen_push_h8300 (reg);
466 else
467 x = gen_push_h8300hs (reg);
468 x = emit_insn (x);
469 REG_NOTES (x) = gen_rtx_EXPR_LIST (REG_INC, stack_pointer_rtx, 0);
472 /* Emit an insn to pop register RN. */
474 static void
475 pop (rn)
476 int rn;
478 rtx reg = gen_rtx_REG (word_mode, rn);
479 rtx x;
481 if (TARGET_H8300)
482 x = gen_pop_h8300 (reg);
483 else
484 x = gen_pop_h8300hs (reg);
485 x = emit_insn (x);
486 REG_NOTES (x) = gen_rtx_EXPR_LIST (REG_INC, stack_pointer_rtx, 0);
489 /* This is what the stack looks like after the prolog of
490 a function with a frame has been set up:
492 <args>
494 FP <- fp
495 <locals>
496 <saved registers> <- sp
498 This is what the stack looks like after the prolog of
499 a function which doesn't have a frame:
501 <args>
503 <locals>
504 <saved registers> <- sp
507 /* Generate RTL code for the function prologue. */
509 void
510 h8300_expand_prologue ()
512 int regno;
513 int saved_regs;
514 int n_regs;
516 /* If the current function has the OS_Task attribute set, then
517 we have a naked prologue. */
518 if (h8300_os_task_function_p (current_function_decl))
519 return;
521 if (h8300_monitor_function_p (current_function_decl))
522 /* My understanding of monitor functions is they act just like
523 interrupt functions, except the prologue must mask
524 interrupts. */
525 emit_insn (gen_monitor_prologue ());
527 if (frame_pointer_needed)
529 /* Push fp. */
530 push (FRAME_POINTER_REGNUM);
531 emit_insn (gen_rtx_SET (Pmode, frame_pointer_rtx, stack_pointer_rtx));
534 /* Leave room for locals. */
535 dosize (-1, round_frame_size (get_frame_size ()));
537 /* Push the rest of the registers in ascending order. */
538 saved_regs = compute_saved_regs ();
539 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno += n_regs)
541 n_regs = 1;
542 if (saved_regs & (1 << regno))
544 if (TARGET_H8300S)
546 /* See how many registers we can push at the same time. */
547 if ((regno == 0 || regno == 4)
548 && ((saved_regs >> regno) & 0x0f) == 0x0f)
549 n_regs = 4;
551 else if ((regno == 0 || regno == 4)
552 && ((saved_regs >> regno) & 0x07) == 0x07)
553 n_regs = 3;
555 else if ((regno == 0 || regno == 2 || regno == 4 || regno == 6)
556 && ((saved_regs >> regno) & 0x03) == 0x03)
557 n_regs = 2;
560 switch (n_regs)
562 case 1:
563 push (regno);
564 break;
565 case 2:
566 emit_insn (gen_stm_h8300s_2 (gen_rtx_REG (SImode, regno),
567 gen_rtx_REG (SImode, regno + 1)));
568 break;
569 case 3:
570 emit_insn (gen_stm_h8300s_3 (gen_rtx_REG (SImode, regno),
571 gen_rtx_REG (SImode, regno + 1),
572 gen_rtx_REG (SImode, regno + 2)));
573 break;
574 case 4:
575 emit_insn (gen_stm_h8300s_4 (gen_rtx_REG (SImode, regno),
576 gen_rtx_REG (SImode, regno + 1),
577 gen_rtx_REG (SImode, regno + 2),
578 gen_rtx_REG (SImode, regno + 3)));
579 break;
580 default:
581 abort ();
588 h8300_can_use_return_insn_p ()
590 return (reload_completed
591 && !frame_pointer_needed
592 && get_frame_size () == 0
593 && compute_saved_regs () == 0);
596 /* Generate RTL code for the function epilogue. */
598 void
599 h8300_expand_epilogue ()
601 int regno;
602 int saved_regs;
603 int n_regs;
605 if (h8300_os_task_function_p (current_function_decl))
606 /* OS_Task epilogues are nearly naked -- they just have an
607 rts instruction. */
608 return;
610 /* Pop the saved registers in descending order. */
611 saved_regs = compute_saved_regs ();
612 for (regno = FIRST_PSEUDO_REGISTER - 1; regno >= 0; regno -= n_regs)
614 n_regs = 1;
615 if (saved_regs & (1 << regno))
617 if (TARGET_H8300S)
619 /* See how many registers we can pop at the same time. */
620 if ((regno == 7 || regno == 3)
621 && ((saved_regs >> (regno - 3)) & 0x0f) == 0x0f)
622 n_regs = 4;
624 else if ((regno == 6 || regno == 2)
625 && ((saved_regs >> (regno - 2)) & 0x07) == 0x07)
626 n_regs = 3;
628 else if ((regno == 7 || regno == 5 || regno == 3 || regno == 1)
629 && ((saved_regs >> (regno - 1)) & 0x03) == 0x03)
630 n_regs = 2;
633 switch (n_regs)
635 case 1:
636 pop (regno);
637 break;
638 case 2:
639 emit_insn (gen_ldm_h8300s_2 (gen_rtx_REG (SImode, regno - 1),
640 gen_rtx_REG (SImode, regno)));
641 break;
642 case 3:
643 emit_insn (gen_ldm_h8300s_3 (gen_rtx_REG (SImode, regno - 2),
644 gen_rtx_REG (SImode, regno - 1),
645 gen_rtx_REG (SImode, regno)));
646 break;
647 case 4:
648 emit_insn (gen_ldm_h8300s_4 (gen_rtx_REG (SImode, regno - 3),
649 gen_rtx_REG (SImode, regno - 2),
650 gen_rtx_REG (SImode, regno - 1),
651 gen_rtx_REG (SImode, regno)));
652 break;
653 default:
654 abort ();
659 /* Deallocate locals. */
660 dosize (1, round_frame_size (get_frame_size ()));
662 /* Pop frame pointer if we had one. */
663 if (frame_pointer_needed)
664 pop (FRAME_POINTER_REGNUM);
667 /* Output assembly language code for the function epilogue. */
669 static void
670 h8300_output_function_epilogue (file, size)
671 FILE *file ATTRIBUTE_UNUSED;
672 HOST_WIDE_INT size ATTRIBUTE_UNUSED;
674 pragma_saveall = 0;
677 /* Return nonzero if the current function is an interrupt
678 function. */
681 h8300_current_function_interrupt_function_p ()
683 return (h8300_interrupt_function_p (current_function_decl)
684 || h8300_monitor_function_p (current_function_decl));
687 /* Output assembly code for the start of the file. */
689 void
690 asm_file_start (file)
691 FILE *file;
693 fprintf (file, ";\tGCC For the Hitachi H8/300\n");
694 fprintf (file, ";\tBy Hitachi America Ltd and Cygnus Support\n");
696 if (optimize_size)
697 fprintf (file, "; -Os\n");
698 else if (optimize)
699 fprintf (file, "; -O%d\n", optimize);
700 if (TARGET_H8300H)
701 fprintf (file, "\n\t.h8300h\n");
702 else if (TARGET_H8300S)
703 fprintf (file, "\n\t.h8300s\n");
704 else
705 fprintf (file, "\n\n");
706 output_file_directive (file, main_input_filename);
709 /* Output assembly language code for the end of file. */
711 void
712 asm_file_end (file)
713 FILE *file;
715 fprintf (file, "\t.end\n");
718 /* Return true if OP is a valid source operand for an integer move
719 instruction. */
722 general_operand_src (op, mode)
723 rtx op;
724 enum machine_mode mode;
726 if (GET_CODE (op) == MEM && GET_CODE (XEXP (op, 0)) == POST_INC)
727 return 1;
728 return general_operand (op, mode);
731 /* Return true if OP is a valid destination operand for an integer move
732 instruction. */
735 general_operand_dst (op, mode)
736 rtx op;
737 enum machine_mode mode;
739 if (GET_CODE (op) == MEM && GET_CODE (XEXP (op, 0)) == PRE_DEC)
740 return 1;
741 return general_operand (op, mode);
744 /* Return true if OP is a constant that contains only one 1 in its
745 binary representation. */
748 single_one_operand (operand, mode)
749 rtx operand;
750 enum machine_mode mode ATTRIBUTE_UNUSED;
752 if (GET_CODE (operand) == CONST_INT)
754 /* We really need to do this masking because 0x80 in QImode is
755 represented as -128 for example. */
756 unsigned HOST_WIDE_INT mask =
757 (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_WIDE_INT)
758 ? ((unsigned HOST_WIDE_INT) 1 << GET_MODE_BITSIZE (mode)) - 1
759 : ~(unsigned HOST_WIDE_INT) 0;
760 unsigned HOST_WIDE_INT value = INTVAL (operand);
762 if (exact_log2 (value & mask) >= 0)
763 return 1;
766 return 0;
769 /* Return true if OP is a constant that contains only one 0 in its
770 binary representation. */
773 single_zero_operand (operand, mode)
774 rtx operand;
775 enum machine_mode mode ATTRIBUTE_UNUSED;
777 if (GET_CODE (operand) == CONST_INT)
779 /* We really need to do this masking because 0x80 in QImode is
780 represented as -128 for example. */
781 unsigned HOST_WIDE_INT mask =
782 (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_WIDE_INT)
783 ? ((unsigned HOST_WIDE_INT) 1 << GET_MODE_BITSIZE (mode)) - 1
784 : ~(unsigned HOST_WIDE_INT) 0;
785 unsigned HOST_WIDE_INT value = INTVAL (operand);
787 if (exact_log2 (~value & mask) >= 0)
788 return 1;
791 return 0;
794 /* Return true if OP is a valid call operand. */
797 call_insn_operand (op, mode)
798 rtx op;
799 enum machine_mode mode ATTRIBUTE_UNUSED;
801 if (GET_CODE (op) == MEM)
803 rtx inside = XEXP (op, 0);
804 if (register_operand (inside, Pmode))
805 return 1;
806 if (CONSTANT_ADDRESS_P (inside))
807 return 1;
809 return 0;
812 /* Return 1 if an addition/subtraction of a constant integer can be
813 transformed into two consecutive adds/subs that are faster than the
814 straightforward way. Otherwise, return 0. */
817 two_insn_adds_subs_operand (op, mode)
818 rtx op;
819 enum machine_mode mode;
821 if (GET_CODE (op) == CONST_INT)
823 HOST_WIDE_INT value = INTVAL (op);
825 /* Force VALUE to be positive so that we do not have to consider
826 the negative case. */
827 if (value < 0)
828 value = -value;
829 if (TARGET_H8300H || TARGET_H8300S)
831 /* A constant addition/subtraction takes 2 states in QImode,
832 4 states in HImode, and 6 states in SImode. Thus, the
833 only case we can win is when SImode is used, in which
834 case, two adds/subs are used, taking 4 states. */
835 if (mode == SImode
836 && (value == 2 + 1
837 || value == 4 + 1
838 || value == 4 + 2
839 || value == 4 + 4))
840 return 1;
842 else
844 /* We do not profit directly by splitting addition or
845 subtraction of 3 and 4. However, since these are
846 implemented as a sequence of adds or subs, they do not
847 clobber (cc0) unlike a sequence of add.b and add.x. */
848 if (mode == HImode
849 && (value == 2 + 1
850 || value == 2 + 2))
851 return 1;
855 return 0;
858 /* Split an add of a small constant into two adds/subs insns.
860 If USE_INCDEC_P is nonzero, we generate the last insn using inc/dec
861 instead of adds/subs. */
863 void
864 split_adds_subs (mode, operands, use_incdec_p)
865 enum machine_mode mode;
866 rtx *operands;
867 int use_incdec_p;
869 HOST_WIDE_INT val = INTVAL (operands[1]);
870 rtx reg = operands[0];
871 HOST_WIDE_INT sign = 1;
872 HOST_WIDE_INT amount;
873 rtx (*gen_last) (rtx, rtx, rtx);
874 rtx (*gen_normal) (rtx, rtx, rtx);
876 /* Force VAL to be positive so that we do not have to consider the
877 sign. */
878 if (val < 0)
880 val = -val;
881 sign = -1;
884 switch (mode)
886 case HImode:
887 gen_normal = gen_addhi3;
888 gen_last = gen_addhi3_incdec;
889 break;
891 case SImode:
892 gen_normal = gen_addsi3;
893 gen_last = gen_addsi3_incdec;
894 break;
896 default:
897 abort ();
900 /* Try different amounts in descending order. */
901 for (amount = (TARGET_H8300H || TARGET_H8300S) ? 4 : 2;
902 amount > 0;
903 amount /= 2)
905 for (; val >= amount; val -= amount)
907 /* If requested, generate the last insn using inc/dec. */
908 if (use_incdec_p && amount <= 2 && val == amount)
909 emit_insn (gen_last (reg, reg, GEN_INT (sign * amount)));
910 else
911 emit_insn (gen_normal (reg, reg, GEN_INT (sign * amount)));
915 return;
918 /* Return true if OP is a valid call operand, and OP represents
919 an operand for a small call (4 bytes instead of 6 bytes). */
922 small_call_insn_operand (op, mode)
923 rtx op;
924 enum machine_mode mode ATTRIBUTE_UNUSED;
926 if (GET_CODE (op) == MEM)
928 rtx inside = XEXP (op, 0);
930 /* Register indirect is a small call. */
931 if (register_operand (inside, Pmode))
932 return 1;
934 /* A call through the function vector is a small
935 call too. */
936 if (GET_CODE (inside) == SYMBOL_REF
937 && SYMBOL_REF_FLAG (inside))
938 return 1;
940 /* Otherwise it's a large call. */
941 return 0;
944 /* Return true if OP is a valid jump operand. */
947 jump_address_operand (op, mode)
948 rtx op;
949 enum machine_mode mode;
951 if (GET_CODE (op) == REG)
952 return mode == Pmode;
954 if (GET_CODE (op) == MEM)
956 rtx inside = XEXP (op, 0);
957 if (register_operand (inside, Pmode))
958 return 1;
959 if (CONSTANT_ADDRESS_P (inside))
960 return 1;
962 return 0;
965 /* Recognize valid operands for bit-field instructions. */
967 extern int rtx_equal_function_value_matters;
970 bit_operand (op, mode)
971 rtx op;
972 enum machine_mode mode;
974 /* We can accept any general operand, except that MEM operands must
975 be limited to those that use addresses valid for the 'U' constraint. */
976 if (!general_operand (op, mode))
977 return 0;
979 /* Accept any mem during RTL generation. Otherwise, the code that does
980 insv and extzv will think that we can not handle memory. However,
981 to avoid reload problems, we only accept 'U' MEM operands after RTL
982 generation. This means that any named pattern which uses this predicate
983 must force its operands to match 'U' before emitting RTL. */
985 if (GET_CODE (op) == REG)
986 return 1;
987 if (GET_CODE (op) == SUBREG)
988 return 1;
989 if (!rtx_equal_function_value_matters)
990 /* We're building rtl. */
991 return GET_CODE (op) == MEM;
992 else
993 return (GET_CODE (op) == MEM
994 && EXTRA_CONSTRAINT (op, 'U'));
998 bit_memory_operand (op, mode)
999 rtx op;
1000 enum machine_mode mode ATTRIBUTE_UNUSED;
1002 return (GET_CODE (op) == MEM
1003 && EXTRA_CONSTRAINT (op, 'U'));
1006 /* Handle machine specific pragmas for compatibility with existing
1007 compilers for the H8/300.
1009 pragma saveall generates prologue/epilogue code which saves and
1010 restores all the registers on function entry.
1012 pragma interrupt saves and restores all registers, and exits with
1013 an rte instruction rather than an rts. A pointer to a function
1014 with this attribute may be safely used in an interrupt vector. */
1016 void
1017 h8300_pr_interrupt (pfile)
1018 struct cpp_reader *pfile ATTRIBUTE_UNUSED;
1020 pragma_interrupt = 1;
1023 void
1024 h8300_pr_saveall (pfile)
1025 struct cpp_reader *pfile ATTRIBUTE_UNUSED;
1027 pragma_saveall = 1;
1030 /* If the next function argument with MODE and TYPE is to be passed in
1031 a register, return a reg RTX for the hard register in which to pass
1032 the argument. CUM represents the state after the last argument.
1033 If the argument is to be pushed, NULL_RTX is returned. */
1036 function_arg (cum, mode, type, named)
1037 CUMULATIVE_ARGS *cum;
1038 enum machine_mode mode;
1039 tree type;
1040 int named;
1042 static const char *const hand_list[] = {
1043 "__main",
1044 "__cmpsi2",
1045 "__divhi3",
1046 "__modhi3",
1047 "__udivhi3",
1048 "__umodhi3",
1049 "__divsi3",
1050 "__modsi3",
1051 "__udivsi3",
1052 "__umodsi3",
1053 "__mulhi3",
1054 "__mulsi3",
1055 "__reg_memcpy",
1056 "__reg_memset",
1057 "__ucmpsi2",
1061 rtx result = NULL_RTX;
1062 const char *fname;
1063 int regpass = 0;
1065 /* Never pass unnamed arguments in registers. */
1066 if (!named)
1067 return NULL_RTX;
1069 /* Pass 3 regs worth of data in regs when user asked on the command line. */
1070 if (TARGET_QUICKCALL)
1071 regpass = 3;
1073 /* If calling hand written assembler, use 4 regs of args. */
1074 if (cum->libcall)
1076 const char * const *p;
1078 fname = XSTR (cum->libcall, 0);
1080 /* See if this libcall is one of the hand coded ones. */
1081 for (p = hand_list; *p && strcmp (*p, fname) != 0; p++)
1084 if (*p)
1085 regpass = 4;
1088 if (regpass)
1090 int size;
1092 if (mode == BLKmode)
1093 size = int_size_in_bytes (type);
1094 else
1095 size = GET_MODE_SIZE (mode);
1097 if (size + cum->nbytes <= regpass * UNITS_PER_WORD
1098 && cum->nbytes / UNITS_PER_WORD <= 3)
1099 result = gen_rtx_REG (mode, cum->nbytes / UNITS_PER_WORD);
1102 return result;
1105 /* Return the cost of the rtx R with code CODE. */
1107 static int
1108 const_costs (r, c, outer_code)
1109 rtx r;
1110 enum rtx_code c;
1111 enum rtx_code outer_code;
1113 switch (c)
1115 case CONST_INT:
1117 HOST_WIDE_INT n = INTVAL (r);
1119 if (-4 <= n || n <= 4)
1121 switch ((int) n)
1123 case 0:
1124 return 0;
1125 case 1:
1126 case 2:
1127 case -1:
1128 case -2:
1129 return 0 + (outer_code == SET);
1130 case 4:
1131 case -4:
1132 if (TARGET_H8300H || TARGET_H8300S)
1133 return 0 + (outer_code == SET);
1134 else
1135 return 1;
1138 return 1;
1141 case CONST:
1142 case LABEL_REF:
1143 case SYMBOL_REF:
1144 return 3;
1146 case CONST_DOUBLE:
1147 return 20;
1149 default:
1150 return 4;
1154 static int
1155 h8300_and_costs (x)
1156 rtx x;
1158 rtx operands[4];
1160 if (GET_MODE (x) == QImode)
1161 return 1;
1163 if (GET_MODE (x) != HImode
1164 && GET_MODE (x) != SImode)
1165 return 100;
1167 operands[0] = NULL;
1168 operands[1] = NULL;
1169 operands[2] = XEXP (x, 1);
1170 operands[3] = x;
1171 return compute_logical_op_length (GET_MODE (x), operands);
1174 static int
1175 h8300_shift_costs (x)
1176 rtx x;
1178 rtx operands[4];
1180 if (GET_MODE (x) != QImode
1181 && GET_MODE (x) != HImode
1182 && GET_MODE (x) != SImode)
1183 return 100;
1185 operands[0] = NULL;
1186 operands[1] = NULL;
1187 operands[2] = XEXP (x, 1);
1188 operands[3] = x;
1189 return compute_a_shift_length (NULL, operands);
1192 static bool
1193 h8300_rtx_costs (x, code, outer_code, total)
1194 rtx x;
1195 int code, outer_code;
1196 int *total;
1198 switch (code)
1200 case AND:
1201 *total = COSTS_N_INSNS (h8300_and_costs (x));
1202 return true;
1204 /* We say that MOD and DIV are so expensive because otherwise we'll
1205 generate some really horrible code for division of a power of two. */
1206 case MOD:
1207 case DIV:
1208 *total = 60;
1209 return true;
1211 case MULT:
1212 *total = 20;
1213 return true;
1215 case ASHIFT:
1216 case ASHIFTRT:
1217 case LSHIFTRT:
1218 *total = COSTS_N_INSNS (h8300_shift_costs (x));
1219 return true;
1221 case ROTATE:
1222 case ROTATERT:
1223 if (GET_MODE (x) == HImode)
1224 *total = 2;
1225 else
1226 *total = 8;
1227 return true;
1229 default:
1230 *total = const_costs (x, code, outer_code);
1231 return true;
1235 /* Documentation for the machine specific operand escapes:
1237 'E' like s but negative.
1238 'F' like t but negative.
1239 'G' constant just the negative
1240 'R' print operand as a byte:8 address if appropriate, else fall back to
1241 'X' handling.
1242 'S' print operand as a long word
1243 'T' print operand as a word
1244 'V' find the set bit, and print its number.
1245 'W' find the clear bit, and print its number.
1246 'X' print operand as a byte
1247 'Y' print either l or h depending on whether last 'Z' operand < 8 or >= 8.
1248 If this operand isn't a register, fall back to 'R' handling.
1249 'Z' print int & 7.
1250 'b' print the bit opcode
1251 'e' first word of 32 bit value - if reg, then least reg. if mem
1252 then least. if const then most sig word
1253 'f' second word of 32 bit value - if reg, then biggest reg. if mem
1254 then +2. if const then least sig word
1255 'j' print operand as condition code.
1256 'k' print operand as reverse condition code.
1257 's' print as low byte of 16 bit value
1258 't' print as high byte of 16 bit value
1259 'w' print as low byte of 32 bit value
1260 'x' print as 2nd byte of 32 bit value
1261 'y' print as 3rd byte of 32 bit value
1262 'z' print as msb of 32 bit value
1265 /* Return assembly language string which identifies a comparison type. */
1267 static const char *
1268 cond_string (code)
1269 enum rtx_code code;
1271 switch (code)
1273 case NE:
1274 return "ne";
1275 case EQ:
1276 return "eq";
1277 case GE:
1278 return "ge";
1279 case GT:
1280 return "gt";
1281 case LE:
1282 return "le";
1283 case LT:
1284 return "lt";
1285 case GEU:
1286 return "hs";
1287 case GTU:
1288 return "hi";
1289 case LEU:
1290 return "ls";
1291 case LTU:
1292 return "lo";
1293 default:
1294 abort ();
1298 /* Print operand X using operand code CODE to assembly language output file
1299 FILE. */
1301 void
1302 print_operand (file, x, code)
1303 FILE *file;
1304 rtx x;
1305 int code;
1307 /* This is used for communication between codes V,W,Z and Y. */
1308 static int bitint;
1310 switch (code)
1312 case 'E':
1313 switch (GET_CODE (x))
1315 case REG:
1316 fprintf (file, "%sl", names_big[REGNO (x)]);
1317 break;
1318 case CONST_INT:
1319 fprintf (file, "#%ld", (-INTVAL (x)) & 0xff);
1320 break;
1321 default:
1322 abort ();
1324 break;
1325 case 'F':
1326 switch (GET_CODE (x))
1328 case REG:
1329 fprintf (file, "%sh", names_big[REGNO (x)]);
1330 break;
1331 case CONST_INT:
1332 fprintf (file, "#%ld", ((-INTVAL (x)) & 0xff00) >> 8);
1333 break;
1334 default:
1335 abort ();
1337 break;
1338 case 'G':
1339 if (GET_CODE (x) != CONST_INT)
1340 abort ();
1341 fprintf (file, "#%ld", 0xff & (-INTVAL (x)));
1342 break;
1343 case 'S':
1344 if (GET_CODE (x) == REG)
1345 fprintf (file, "%s", names_extended[REGNO (x)]);
1346 else
1347 goto def;
1348 break;
1349 case 'T':
1350 if (GET_CODE (x) == REG)
1351 fprintf (file, "%s", names_big[REGNO (x)]);
1352 else
1353 goto def;
1354 break;
1355 case 'V':
1356 bitint = exact_log2 (INTVAL (x) & 0xff);
1357 if (bitint == -1)
1358 abort ();
1359 fprintf (file, "#%d", bitint);
1360 break;
1361 case 'W':
1362 bitint = exact_log2 ((~INTVAL (x)) & 0xff);
1363 if (bitint == -1)
1364 abort ();
1365 fprintf (file, "#%d", bitint);
1366 break;
1367 case 'R':
1368 case 'X':
1369 if (GET_CODE (x) == REG)
1370 fprintf (file, "%s", byte_reg (x, 0));
1371 else
1372 goto def;
1373 break;
1374 case 'Y':
1375 if (bitint == -1)
1376 abort ();
1377 if (GET_CODE (x) == REG)
1378 fprintf (file, "%s%c", names_big[REGNO (x)], bitint > 7 ? 'h' : 'l');
1379 else
1380 print_operand (file, x, 'R');
1381 bitint = -1;
1382 break;
1383 case 'Z':
1384 bitint = INTVAL (x);
1385 fprintf (file, "#%d", bitint & 7);
1386 break;
1387 case 'b':
1388 switch (GET_CODE (x))
1390 case IOR:
1391 fprintf (file, "bor");
1392 break;
1393 case XOR:
1394 fprintf (file, "bxor");
1395 break;
1396 case AND:
1397 fprintf (file, "band");
1398 break;
1399 default:
1400 break;
1402 break;
1403 case 'e':
1404 switch (GET_CODE (x))
1406 case REG:
1407 if (TARGET_H8300)
1408 fprintf (file, "%s", names_big[REGNO (x)]);
1409 else
1410 fprintf (file, "%s", names_upper_extended[REGNO (x)]);
1411 break;
1412 case MEM:
1413 print_operand (file, x, 0);
1414 break;
1415 case CONST_INT:
1416 fprintf (file, "#%ld", ((INTVAL (x) >> 16) & 0xffff));
1417 break;
1418 case CONST_DOUBLE:
1420 long val;
1421 REAL_VALUE_TYPE rv;
1422 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
1423 REAL_VALUE_TO_TARGET_SINGLE (rv, val);
1424 fprintf (file, "#%ld", ((val >> 16) & 0xffff));
1425 break;
1427 default:
1428 abort ();
1429 break;
1431 break;
1432 case 'f':
1433 switch (GET_CODE (x))
1435 case REG:
1436 if (TARGET_H8300)
1437 fprintf (file, "%s", names_big[REGNO (x) + 1]);
1438 else
1439 fprintf (file, "%s", names_big[REGNO (x)]);
1440 break;
1441 case MEM:
1442 x = adjust_address (x, HImode, 2);
1443 print_operand (file, x, 0);
1444 break;
1445 case CONST_INT:
1446 fprintf (file, "#%ld", INTVAL (x) & 0xffff);
1447 break;
1448 case CONST_DOUBLE:
1450 long val;
1451 REAL_VALUE_TYPE rv;
1452 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
1453 REAL_VALUE_TO_TARGET_SINGLE (rv, val);
1454 fprintf (file, "#%ld", (val & 0xffff));
1455 break;
1457 default:
1458 abort ();
1460 break;
1461 case 'j':
1462 fputs (cond_string (GET_CODE (x)), file);
1463 break;
1464 case 'k':
1465 fputs (cond_string (reverse_condition (GET_CODE (x))), file);
1466 break;
1467 case 's':
1468 if (GET_CODE (x) == CONST_INT)
1469 fprintf (file, "#%ld", (INTVAL (x)) & 0xff);
1470 else
1471 fprintf (file, "%s", byte_reg (x, 0));
1472 break;
1473 case 't':
1474 if (GET_CODE (x) == CONST_INT)
1475 fprintf (file, "#%ld", (INTVAL (x) >> 8) & 0xff);
1476 else
1477 fprintf (file, "%s", byte_reg (x, 1));
1478 break;
1479 case 'u':
1480 if (GET_CODE (x) != CONST_INT)
1481 abort ();
1482 fprintf (file, "%ld", INTVAL (x));
1483 break;
1484 case 'w':
1485 if (GET_CODE (x) == CONST_INT)
1486 fprintf (file, "#%ld", INTVAL (x) & 0xff);
1487 else
1488 fprintf (file, "%s",
1489 byte_reg (x, TARGET_H8300 ? 2 : 0));
1490 break;
1491 case 'x':
1492 if (GET_CODE (x) == CONST_INT)
1493 fprintf (file, "#%ld", (INTVAL (x) >> 8) & 0xff);
1494 else
1495 fprintf (file, "%s",
1496 byte_reg (x, TARGET_H8300 ? 3 : 1));
1497 break;
1498 case 'y':
1499 if (GET_CODE (x) == CONST_INT)
1500 fprintf (file, "#%ld", (INTVAL (x) >> 16) & 0xff);
1501 else
1502 fprintf (file, "%s", byte_reg (x, 0));
1503 break;
1504 case 'z':
1505 if (GET_CODE (x) == CONST_INT)
1506 fprintf (file, "#%ld", (INTVAL (x) >> 24) & 0xff);
1507 else
1508 fprintf (file, "%s", byte_reg (x, 1));
1509 break;
1511 default:
1512 def:
1513 switch (GET_CODE (x))
1515 case REG:
1516 switch (GET_MODE (x))
1518 case QImode:
1519 #if 0 /* Is it asm ("mov.b %0,r2l", ...) */
1520 fprintf (file, "%s", byte_reg (x, 0));
1521 #else /* ... or is it asm ("mov.b %0l,r2l", ...) */
1522 fprintf (file, "%s", names_big[REGNO (x)]);
1523 #endif
1524 break;
1525 case HImode:
1526 fprintf (file, "%s", names_big[REGNO (x)]);
1527 break;
1528 case SImode:
1529 case SFmode:
1530 fprintf (file, "%s", names_extended[REGNO (x)]);
1531 break;
1532 default:
1533 abort ();
1535 break;
1537 case MEM:
1539 rtx addr = XEXP (x, 0);
1541 fprintf (file, "@");
1542 output_address (addr);
1544 /* We fall back from smaller addressing to larger
1545 addressing in various ways depending on CODE. */
1546 switch (code)
1548 case 'R':
1549 /* Used for mov.b and bit operations. */
1550 if (h8300_eightbit_constant_address_p (addr))
1552 fprintf (file, ":8");
1553 break;
1556 /* Fall through. We should not get here if we are
1557 processing bit operations on H8/300 or H8/300H
1558 because 'U' constraint does not allow bit
1559 operations on the tiny area on these machines. */
1561 case 'T':
1562 case 'S':
1563 /* Used for mov.w and mov.l. */
1564 if (h8300_tiny_constant_address_p (addr))
1565 fprintf (file, ":16");
1566 break;
1567 default:
1568 break;
1571 break;
1573 case CONST_INT:
1574 case SYMBOL_REF:
1575 case CONST:
1576 case LABEL_REF:
1577 fprintf (file, "#");
1578 print_operand_address (file, x);
1579 break;
1580 case CONST_DOUBLE:
1582 long val;
1583 REAL_VALUE_TYPE rv;
1584 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
1585 REAL_VALUE_TO_TARGET_SINGLE (rv, val);
1586 fprintf (file, "#%ld", val);
1587 break;
1589 default:
1590 break;
1595 /* Output assembly language output for the address ADDR to FILE. */
1597 void
1598 print_operand_address (file, addr)
1599 FILE *file;
1600 rtx addr;
1602 switch (GET_CODE (addr))
1604 case REG:
1605 fprintf (file, "%s", h8_reg_names[REGNO (addr)]);
1606 break;
1608 case PRE_DEC:
1609 fprintf (file, "-%s", h8_reg_names[REGNO (XEXP (addr, 0))]);
1610 break;
1612 case POST_INC:
1613 fprintf (file, "%s+", h8_reg_names[REGNO (XEXP (addr, 0))]);
1614 break;
1616 case PLUS:
1617 fprintf (file, "(");
1618 if (GET_CODE (XEXP (addr, 0)) == REG)
1620 /* reg,foo */
1621 print_operand_address (file, XEXP (addr, 1));
1622 fprintf (file, ",");
1623 print_operand_address (file, XEXP (addr, 0));
1625 else
1627 /* foo+k */
1628 print_operand_address (file, XEXP (addr, 0));
1629 fprintf (file, "+");
1630 print_operand_address (file, XEXP (addr, 1));
1632 fprintf (file, ")");
1633 break;
1635 case CONST_INT:
1637 /* Since the H8/300 only has 16 bit pointers, negative values are also
1638 those >= 32768. This happens for example with pointer minus a
1639 constant. We don't want to turn (char *p - 2) into
1640 (char *p + 65534) because loop unrolling can build upon this
1641 (IE: char *p + 131068). */
1642 int n = INTVAL (addr);
1643 if (TARGET_H8300)
1644 n = (int) (short) n;
1645 fprintf (file, "%d", n);
1646 break;
1649 default:
1650 output_addr_const (file, addr);
1651 break;
1655 /* Output all insn addresses and their sizes into the assembly language
1656 output file. This is helpful for debugging whether the length attributes
1657 in the md file are correct. This is not meant to be a user selectable
1658 option. */
1660 void
1661 final_prescan_insn (insn, operand, num_operands)
1662 rtx insn, *operand ATTRIBUTE_UNUSED;
1663 int num_operands ATTRIBUTE_UNUSED;
1665 /* This holds the last insn address. */
1666 static int last_insn_address = 0;
1668 const int uid = INSN_UID (insn);
1670 if (TARGET_RTL_DUMP)
1672 fprintf (asm_out_file, "\n****************");
1673 print_rtl (asm_out_file, PATTERN (insn));
1674 fprintf (asm_out_file, "\n");
1677 if (TARGET_ADDRESSES)
1679 fprintf (asm_out_file, "; 0x%x %d\n", INSN_ADDRESSES (uid),
1680 INSN_ADDRESSES (uid) - last_insn_address);
1681 last_insn_address = INSN_ADDRESSES (uid);
1685 /* Prepare for an SI sized move. */
1688 do_movsi (operands)
1689 rtx operands[];
1691 rtx src = operands[1];
1692 rtx dst = operands[0];
1693 if (!reload_in_progress && !reload_completed)
1695 if (!register_operand (dst, GET_MODE (dst)))
1697 rtx tmp = gen_reg_rtx (GET_MODE (dst));
1698 emit_move_insn (tmp, src);
1699 operands[1] = tmp;
1702 return 0;
1705 /* Function for INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET).
1706 Define the offset between two registers, one to be eliminated, and
1707 the other its replacement, at the start of a routine. */
1710 h8300_initial_elimination_offset (from, to)
1711 int from, to;
1713 int offset = 0;
1715 if (from == ARG_POINTER_REGNUM && to == FRAME_POINTER_REGNUM)
1716 offset = UNITS_PER_WORD + frame_pointer_needed * UNITS_PER_WORD;
1717 else if (from == RETURN_ADDRESS_POINTER_REGNUM && to == FRAME_POINTER_REGNUM)
1718 offset = frame_pointer_needed * UNITS_PER_WORD;
1719 else
1721 int regno;
1723 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1724 if (WORD_REG_USED (regno))
1725 offset += UNITS_PER_WORD;
1727 /* See the comments for get_frame_size. We need to round it up to
1728 STACK_BOUNDARY. */
1730 offset += round_frame_size (get_frame_size ());
1732 if (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
1733 offset += UNITS_PER_WORD; /* Skip saved PC */
1736 if ((TARGET_H8300H || TARGET_H8300S) && TARGET_NORMAL_MODE)
1737 offset -= 2;
1739 return offset;
1743 h8300_return_addr_rtx (count, frame)
1744 int count;
1745 rtx frame;
1747 rtx ret;
1749 if (count == 0)
1750 ret = gen_rtx_MEM (Pmode,
1751 gen_rtx_REG (Pmode, RETURN_ADDRESS_POINTER_REGNUM));
1752 else if (flag_omit_frame_pointer)
1753 return (rtx) 0;
1754 else
1755 ret = gen_rtx_MEM (Pmode,
1756 memory_address (Pmode,
1757 plus_constant (frame, UNITS_PER_WORD)));
1758 set_mem_alias_set (ret, get_frame_alias_set ());
1759 return ret;
1762 /* Update the condition code from the insn. */
1764 void
1765 notice_update_cc (body, insn)
1766 rtx body;
1767 rtx insn;
1769 rtx set;
1771 switch (get_attr_cc (insn))
1773 case CC_NONE:
1774 /* Insn does not affect CC at all. */
1775 break;
1777 case CC_NONE_0HIT:
1778 /* Insn does not change CC, but the 0'th operand has been changed. */
1779 if (cc_status.value1 != 0
1780 && reg_overlap_mentioned_p (recog_data.operand[0], cc_status.value1))
1781 cc_status.value1 = 0;
1782 if (cc_status.value2 != 0
1783 && reg_overlap_mentioned_p (recog_data.operand[0], cc_status.value2))
1784 cc_status.value2 = 0;
1785 break;
1787 case CC_SET_ZN:
1788 /* Insn sets the Z,N flags of CC to recog_data.operand[0].
1789 The V flag is unusable. The C flag may or may not be known but
1790 that's ok because alter_cond will change tests to use EQ/NE. */
1791 CC_STATUS_INIT;
1792 cc_status.flags |= CC_OVERFLOW_UNUSABLE | CC_NO_CARRY;
1793 set = single_set (insn);
1794 cc_status.value1 = SET_SRC (set);
1795 if (SET_DEST (set) != cc0_rtx)
1796 cc_status.value2 = SET_DEST (set);
1797 break;
1799 case CC_SET_ZNV:
1800 /* Insn sets the Z,N,V flags of CC to recog_data.operand[0].
1801 The C flag may or may not be known but that's ok because
1802 alter_cond will change tests to use EQ/NE. */
1803 CC_STATUS_INIT;
1804 cc_status.flags |= CC_NO_CARRY;
1805 set = single_set (insn);
1806 cc_status.value1 = SET_SRC (set);
1807 if (SET_DEST (set) != cc0_rtx)
1808 cc_status.value2 = SET_DEST (set);
1809 break;
1811 case CC_COMPARE:
1812 /* The insn is a compare instruction. */
1813 CC_STATUS_INIT;
1814 cc_status.value1 = SET_SRC (body);
1815 break;
1817 case CC_CLOBBER:
1818 /* Insn doesn't leave CC in a usable state. */
1819 CC_STATUS_INIT;
1820 break;
1824 /* Return nonzero if X is a stack pointer. */
1827 stack_pointer_operand (x, mode)
1828 rtx x;
1829 enum machine_mode mode ATTRIBUTE_UNUSED;
1831 return x == stack_pointer_rtx;
1834 /* Return nonzero if X is a constant whose absolute value is no
1835 greater than 2. */
1838 const_int_le_2_operand (x, mode)
1839 rtx x;
1840 enum machine_mode mode ATTRIBUTE_UNUSED;
1842 return (GET_CODE (x) == CONST_INT
1843 && abs (INTVAL (x)) <= 2);
1846 /* Return nonzero if X is a constant whose absolute value is no
1847 greater than 6. */
1850 const_int_le_6_operand (x, mode)
1851 rtx x;
1852 enum machine_mode mode ATTRIBUTE_UNUSED;
1854 return (GET_CODE (x) == CONST_INT
1855 && abs (INTVAL (x)) <= 6);
1858 /* Return nonzero if X is a constant whose absolute value is greater
1859 than 2. */
1862 const_int_gt_2_operand (x, mode)
1863 rtx x;
1864 enum machine_mode mode ATTRIBUTE_UNUSED;
1866 return (GET_CODE (x) == CONST_INT
1867 && abs (INTVAL (x)) > 2);
1870 /* Return nonzero if X is a constant whose absolute value is no
1871 smaller than 8. */
1874 const_int_ge_8_operand (x, mode)
1875 rtx x;
1876 enum machine_mode mode ATTRIBUTE_UNUSED;
1878 return (GET_CODE (x) == CONST_INT
1879 && abs (INTVAL (x)) >= 8);
1882 /* Return nonzero if X is a constant expressible in QImode. */
1885 const_int_qi_operand (x, mode)
1886 rtx x;
1887 enum machine_mode mode ATTRIBUTE_UNUSED;
1889 return (GET_CODE (x) == CONST_INT
1890 && (INTVAL (x) & 0xff) == INTVAL (x));
1893 /* Return nonzero if X is a constant expressible in HImode. */
1896 const_int_hi_operand (x, mode)
1897 rtx x;
1898 enum machine_mode mode ATTRIBUTE_UNUSED;
1900 return (GET_CODE (x) == CONST_INT
1901 && (INTVAL (x) & 0xffff) == INTVAL (x));
1904 /* Return nonzero if X is a constant suitable for inc/dec. */
1907 incdec_operand (x, mode)
1908 rtx x;
1909 enum machine_mode mode ATTRIBUTE_UNUSED;
1911 return (GET_CODE (x) == CONST_INT
1912 && (CONST_OK_FOR_M (INTVAL (x))
1913 || CONST_OK_FOR_O (INTVAL (x))));
1916 /* Return nonzero if X is either EQ or NE. */
1919 eqne_operator (x, mode)
1920 rtx x;
1921 enum machine_mode mode ATTRIBUTE_UNUSED;
1923 enum rtx_code code = GET_CODE (x);
1925 return (code == EQ || code == NE);
1928 /* Recognize valid operators for bit instructions. */
1931 bit_operator (x, mode)
1932 rtx x;
1933 enum machine_mode mode ATTRIBUTE_UNUSED;
1935 enum rtx_code code = GET_CODE (x);
1937 return (code == XOR
1938 || code == AND
1939 || code == IOR);
1942 const char *
1943 output_plussi (operands)
1944 rtx *operands;
1946 enum machine_mode mode = GET_MODE (operands[0]);
1948 if (mode != SImode)
1949 abort ();
1951 if (TARGET_H8300)
1953 if (GET_CODE (operands[2]) == REG)
1954 return "add.w\t%f2,%f0\n\taddx\t%y2,%y0\n\taddx\t%z2,%z0";
1956 if (GET_CODE (operands[2]) == CONST_INT)
1958 HOST_WIDE_INT n = INTVAL (operands[2]);
1960 if ((n & 0xffffff) == 0)
1961 return "add\t%z2,%z0";
1962 if ((n & 0xffff) == 0)
1963 return "add\t%y2,%y0\n\taddx\t%z2,%z0";
1964 if ((n & 0xff) == 0)
1965 return "add\t%x2,%x0\n\taddx\t%y2,%y0\n\taddx\t%z2,%z0";
1968 return "add\t%w2,%w0\n\taddx\t%x2,%x0\n\taddx\t%y2,%y0\n\taddx\t%z2,%z0";
1970 else
1972 if (GET_CODE (operands[2]) == REG)
1973 return "add.l\t%S2,%S0";
1975 if (GET_CODE (operands[2]) == CONST_INT)
1977 HOST_WIDE_INT intval = INTVAL (operands[2]);
1979 /* See if we can finish with 2 bytes. */
1981 switch ((unsigned int) intval & 0xffffffff)
1983 case 0x00000001:
1984 case 0x00000002:
1985 case 0x00000004:
1986 return "adds\t%2,%S0";
1988 case 0xffffffff:
1989 case 0xfffffffe:
1990 case 0xfffffffc:
1991 return "subs\t%G2,%S0";
1993 case 0x00010000:
1994 case 0x00020000:
1995 operands[2] = GEN_INT (intval >> 16);
1996 return "inc.w\t%2,%e0";
1998 case 0xffff0000:
1999 case 0xfffe0000:
2000 operands[2] = GEN_INT (intval >> 16);
2001 return "dec.w\t%G2,%e0";
2004 /* See if we can finish with 4 bytes. */
2005 if ((intval & 0xffff) == 0)
2007 operands[2] = GEN_INT (intval >> 16);
2008 return "add.w\t%2,%e0";
2012 return "add.l\t%S2,%S0";
2016 unsigned int
2017 compute_plussi_length (operands)
2018 rtx *operands;
2020 enum machine_mode mode = GET_MODE (operands[0]);
2022 if (mode != SImode)
2023 abort ();
2025 if (TARGET_H8300)
2027 if (GET_CODE (operands[2]) == REG)
2028 return 6;
2030 if (GET_CODE (operands[2]) == CONST_INT)
2032 HOST_WIDE_INT n = INTVAL (operands[2]);
2034 if ((n & 0xffffff) == 0)
2035 return 2;
2036 if ((n & 0xffff) == 0)
2037 return 4;
2038 if ((n & 0xff) == 0)
2039 return 6;
2042 return 8;
2044 else
2046 if (GET_CODE (operands[2]) == REG)
2047 return 2;
2049 if (GET_CODE (operands[2]) == CONST_INT)
2051 HOST_WIDE_INT intval = INTVAL (operands[2]);
2053 /* See if we can finish with 2 bytes. */
2055 switch ((unsigned int) intval & 0xffffffff)
2057 case 0x00000001:
2058 case 0x00000002:
2059 case 0x00000004:
2060 return 2;
2062 case 0xffffffff:
2063 case 0xfffffffe:
2064 case 0xfffffffc:
2065 return 2;
2067 case 0x00010000:
2068 case 0x00020000:
2069 return 2;
2071 case 0xffff0000:
2072 case 0xfffe0000:
2073 return 2;
2076 /* See if we can finish with 4 bytes. */
2077 if ((intval & 0xffff) == 0)
2078 return 4;
2081 return 6;
2085 enum attr_cc
2086 compute_plussi_cc (operands)
2087 rtx *operands;
2089 enum machine_mode mode = GET_MODE (operands[0]);
2091 if (mode != SImode)
2092 abort ();
2094 if (TARGET_H8300)
2096 return CC_CLOBBER;
2098 else
2100 if (GET_CODE (operands[2]) == REG)
2101 return CC_SET_ZN;
2103 if (GET_CODE (operands[2]) == CONST_INT)
2105 HOST_WIDE_INT intval = INTVAL (operands[2]);
2107 /* See if we can finish with 2 bytes. */
2109 switch ((unsigned int) intval & 0xffffffff)
2111 case 0x00000001:
2112 case 0x00000002:
2113 case 0x00000004:
2114 return CC_NONE_0HIT;
2116 case 0xffffffff:
2117 case 0xfffffffe:
2118 case 0xfffffffc:
2119 return CC_NONE_0HIT;
2121 case 0x00010000:
2122 case 0x00020000:
2123 return CC_CLOBBER;
2125 case 0xffff0000:
2126 case 0xfffe0000:
2127 return CC_CLOBBER;
2130 /* See if we can finish with 4 bytes. */
2131 if ((intval & 0xffff) == 0)
2132 return CC_CLOBBER;
2135 return CC_SET_ZN;
2139 const char *
2140 output_logical_op (mode, operands)
2141 enum machine_mode mode;
2142 rtx *operands;
2144 /* Figure out the logical op that we need to perform. */
2145 enum rtx_code code = GET_CODE (operands[3]);
2146 /* Pretend that every byte is affected if both operands are registers. */
2147 const unsigned HOST_WIDE_INT intval =
2148 (unsigned HOST_WIDE_INT) ((GET_CODE (operands[2]) == CONST_INT)
2149 ? INTVAL (operands[2]) : 0x55555555);
2150 /* The determinant of the algorithm. If we perform an AND, 0
2151 affects a bit. Otherwise, 1 affects a bit. */
2152 const unsigned HOST_WIDE_INT det = (code != AND) ? intval : ~intval;
2153 /* Break up DET into pieces. */
2154 const unsigned HOST_WIDE_INT b0 = (det >> 0) & 0xff;
2155 const unsigned HOST_WIDE_INT b1 = (det >> 8) & 0xff;
2156 const unsigned HOST_WIDE_INT b2 = (det >> 16) & 0xff;
2157 const unsigned HOST_WIDE_INT b3 = (det >> 24) & 0xff;
2158 const unsigned HOST_WIDE_INT w0 = (det >> 0) & 0xffff;
2159 const unsigned HOST_WIDE_INT w1 = (det >> 16) & 0xffff;
2160 int lower_half_easy_p = 0;
2161 int upper_half_easy_p = 0;
2162 /* The name of an insn. */
2163 const char *opname;
2164 char insn_buf[100];
2166 switch (code)
2168 case AND:
2169 opname = "and";
2170 break;
2171 case IOR:
2172 opname = "or";
2173 break;
2174 case XOR:
2175 opname = "xor";
2176 break;
2177 default:
2178 abort ();
2181 switch (mode)
2183 case HImode:
2184 /* First, see if we can finish with one insn. */
2185 if ((TARGET_H8300H || TARGET_H8300S)
2186 && b0 != 0
2187 && b1 != 0)
2189 sprintf (insn_buf, "%s.w\t%%T2,%%T0", opname);
2190 output_asm_insn (insn_buf, operands);
2192 else
2194 /* Take care of the lower byte. */
2195 if (b0 != 0)
2197 sprintf (insn_buf, "%s\t%%s2,%%s0", opname);
2198 output_asm_insn (insn_buf, operands);
2200 /* Take care of the upper byte. */
2201 if (b1 != 0)
2203 sprintf (insn_buf, "%s\t%%t2,%%t0", opname);
2204 output_asm_insn (insn_buf, operands);
2207 break;
2208 case SImode:
2209 if (TARGET_H8300H || TARGET_H8300S)
2211 /* Determine if the lower half can be taken care of in no more
2212 than two bytes. */
2213 lower_half_easy_p = (b0 == 0
2214 || b1 == 0
2215 || (code != IOR && w0 == 0xffff));
2217 /* Determine if the upper half can be taken care of in no more
2218 than two bytes. */
2219 upper_half_easy_p = ((code != IOR && w1 == 0xffff)
2220 || (code == AND && w1 == 0xff00));
2223 /* Check if doing everything with one insn is no worse than
2224 using multiple insns. */
2225 if ((TARGET_H8300H || TARGET_H8300S)
2226 && w0 != 0 && w1 != 0
2227 && !(lower_half_easy_p && upper_half_easy_p))
2229 sprintf (insn_buf, "%s.l\t%%S2,%%S0", opname);
2230 output_asm_insn (insn_buf, operands);
2232 else
2234 /* Take care of the lower and upper words individually. For
2235 each word, we try different methods in the order of
2237 1) the special insn (in case of AND or XOR),
2238 2) the word-wise insn, and
2239 3) The byte-wise insn. */
2240 if (w0 == 0xffff
2241 && (TARGET_H8300 ? (code == AND) : (code != IOR)))
2242 output_asm_insn ((code == AND)
2243 ? "sub.w\t%f0,%f0" : "not.w\t%f0",
2244 operands);
2245 else if ((TARGET_H8300H || TARGET_H8300S)
2246 && (b0 != 0)
2247 && (b1 != 0))
2249 sprintf (insn_buf, "%s.w\t%%f2,%%f0", opname);
2250 output_asm_insn (insn_buf, operands);
2252 else
2254 if (b0 != 0)
2256 sprintf (insn_buf, "%s\t%%w2,%%w0", opname);
2257 output_asm_insn (insn_buf, operands);
2259 if (b1 != 0)
2261 sprintf (insn_buf, "%s\t%%x2,%%x0", opname);
2262 output_asm_insn (insn_buf, operands);
2266 if ((w1 == 0xffff)
2267 && (TARGET_H8300 ? (code == AND) : (code != IOR)))
2268 output_asm_insn ((code == AND)
2269 ? "sub.w\t%e0,%e0" : "not.w\t%e0",
2270 operands);
2271 else if ((TARGET_H8300H || TARGET_H8300S)
2272 && code == AND
2273 && w1 == 0xff00)
2275 output_asm_insn ("extu.w\t%e0", operands);
2277 else if (TARGET_H8300H || TARGET_H8300S)
2279 if (w1 != 0)
2281 sprintf (insn_buf, "%s.w\t%%e2,%%e0", opname);
2282 output_asm_insn (insn_buf, operands);
2285 else
2287 if (b2 != 0)
2289 sprintf (insn_buf, "%s\t%%y2,%%y0", opname);
2290 output_asm_insn (insn_buf, operands);
2292 if (b3 != 0)
2294 sprintf (insn_buf, "%s\t%%z2,%%z0", opname);
2295 output_asm_insn (insn_buf, operands);
2299 break;
2300 default:
2301 abort ();
2303 return "";
2306 unsigned int
2307 compute_logical_op_length (mode, operands)
2308 enum machine_mode mode;
2309 rtx *operands;
2311 /* Figure out the logical op that we need to perform. */
2312 enum rtx_code code = GET_CODE (operands[3]);
2313 /* Pretend that every byte is affected if both operands are registers. */
2314 const unsigned HOST_WIDE_INT intval =
2315 (unsigned HOST_WIDE_INT) ((GET_CODE (operands[2]) == CONST_INT)
2316 ? INTVAL (operands[2]) : 0x55555555);
2317 /* The determinant of the algorithm. If we perform an AND, 0
2318 affects a bit. Otherwise, 1 affects a bit. */
2319 const unsigned HOST_WIDE_INT det = (code != AND) ? intval : ~intval;
2320 /* Break up DET into pieces. */
2321 const unsigned HOST_WIDE_INT b0 = (det >> 0) & 0xff;
2322 const unsigned HOST_WIDE_INT b1 = (det >> 8) & 0xff;
2323 const unsigned HOST_WIDE_INT b2 = (det >> 16) & 0xff;
2324 const unsigned HOST_WIDE_INT b3 = (det >> 24) & 0xff;
2325 const unsigned HOST_WIDE_INT w0 = (det >> 0) & 0xffff;
2326 const unsigned HOST_WIDE_INT w1 = (det >> 16) & 0xffff;
2327 int lower_half_easy_p = 0;
2328 int upper_half_easy_p = 0;
2329 /* Insn length. */
2330 unsigned int length = 0;
2332 switch (mode)
2334 case HImode:
2335 /* First, see if we can finish with one insn. */
2336 if ((TARGET_H8300H || TARGET_H8300S)
2337 && b0 != 0
2338 && b1 != 0)
2340 if (REG_P (operands[2]))
2341 length += 2;
2342 else
2343 length += 4;
2345 else
2347 /* Take care of the lower byte. */
2348 if (b0 != 0)
2349 length += 2;
2351 /* Take care of the upper byte. */
2352 if (b1 != 0)
2353 length += 2;
2355 break;
2356 case SImode:
2357 if (TARGET_H8300H || TARGET_H8300S)
2359 /* Determine if the lower half can be taken care of in no more
2360 than two bytes. */
2361 lower_half_easy_p = (b0 == 0
2362 || b1 == 0
2363 || (code != IOR && w0 == 0xffff));
2365 /* Determine if the upper half can be taken care of in no more
2366 than two bytes. */
2367 upper_half_easy_p = ((code != IOR && w1 == 0xffff)
2368 || (code == AND && w1 == 0xff00));
2371 /* Check if doing everything with one insn is no worse than
2372 using multiple insns. */
2373 if ((TARGET_H8300H || TARGET_H8300S)
2374 && w0 != 0 && w1 != 0
2375 && !(lower_half_easy_p && upper_half_easy_p))
2377 if (REG_P (operands[2]))
2378 length += 4;
2379 else
2380 length += 6;
2382 else
2384 /* Take care of the lower and upper words individually. For
2385 each word, we try different methods in the order of
2387 1) the special insn (in case of AND or XOR),
2388 2) the word-wise insn, and
2389 3) The byte-wise insn. */
2390 if (w0 == 0xffff
2391 && (TARGET_H8300 ? (code == AND) : (code != IOR)))
2393 length += 2;
2395 else if ((TARGET_H8300H || TARGET_H8300S)
2396 && (b0 != 0)
2397 && (b1 != 0))
2399 length += 4;
2401 else
2403 if (b0 != 0)
2404 length += 2;
2406 if (b1 != 0)
2407 length += 2;
2410 if (w1 == 0xffff
2411 && (TARGET_H8300 ? (code == AND) : (code != IOR)))
2413 length += 2;
2415 else if ((TARGET_H8300H || TARGET_H8300S)
2416 && code == AND
2417 && w1 == 0xff00)
2419 length += 2;
2421 else if (TARGET_H8300H || TARGET_H8300S)
2423 if (w1 != 0)
2424 length += 4;
2426 else
2428 if (b2 != 0)
2429 length += 2;
2431 if (b3 != 0)
2432 length += 2;
2435 break;
2436 default:
2437 abort ();
2439 return length;
2443 compute_logical_op_cc (mode, operands)
2444 enum machine_mode mode;
2445 rtx *operands;
2447 /* Figure out the logical op that we need to perform. */
2448 enum rtx_code code = GET_CODE (operands[3]);
2449 /* Pretend that every byte is affected if both operands are registers. */
2450 const unsigned HOST_WIDE_INT intval =
2451 (unsigned HOST_WIDE_INT) ((GET_CODE (operands[2]) == CONST_INT)
2452 ? INTVAL (operands[2]) : 0x55555555);
2453 /* The determinant of the algorithm. If we perform an AND, 0
2454 affects a bit. Otherwise, 1 affects a bit. */
2455 const unsigned HOST_WIDE_INT det = (code != AND) ? intval : ~intval;
2456 /* Break up DET into pieces. */
2457 const unsigned HOST_WIDE_INT b0 = (det >> 0) & 0xff;
2458 const unsigned HOST_WIDE_INT b1 = (det >> 8) & 0xff;
2459 const unsigned HOST_WIDE_INT w0 = (det >> 0) & 0xffff;
2460 const unsigned HOST_WIDE_INT w1 = (det >> 16) & 0xffff;
2461 int lower_half_easy_p = 0;
2462 int upper_half_easy_p = 0;
2463 /* Condition code. */
2464 enum attr_cc cc = CC_CLOBBER;
2466 switch (mode)
2468 case HImode:
2469 /* First, see if we can finish with one insn. */
2470 if ((TARGET_H8300H || TARGET_H8300S)
2471 && b0 != 0
2472 && b1 != 0)
2474 cc = CC_SET_ZNV;
2476 break;
2477 case SImode:
2478 if (TARGET_H8300H || TARGET_H8300S)
2480 /* Determine if the lower half can be taken care of in no more
2481 than two bytes. */
2482 lower_half_easy_p = (b0 == 0
2483 || b1 == 0
2484 || (code != IOR && w0 == 0xffff));
2486 /* Determine if the upper half can be taken care of in no more
2487 than two bytes. */
2488 upper_half_easy_p = ((code != IOR && w1 == 0xffff)
2489 || (code == AND && w1 == 0xff00));
2492 /* Check if doing everything with one insn is no worse than
2493 using multiple insns. */
2494 if ((TARGET_H8300H || TARGET_H8300S)
2495 && w0 != 0 && w1 != 0
2496 && !(lower_half_easy_p && upper_half_easy_p))
2498 cc = CC_SET_ZNV;
2500 break;
2501 default:
2502 abort ();
2504 return cc;
2507 /* Shifts.
2509 We devote a fair bit of code to getting efficient shifts since we
2510 can only shift one bit at a time on the H8/300 and H8/300H and only
2511 one or two bits at a time on the H8S.
2513 All shift code falls into one of the following ways of
2514 implementation:
2516 o SHIFT_INLINE: Emit straight line code for the shift; this is used
2517 when a straight line shift is about the same size or smaller than
2518 a loop.
2520 o SHIFT_ROT_AND: Rotate the value the opposite direction, then mask
2521 off the bits we don't need. This is used when only a few of the
2522 bits in the original value will survive in the shifted value.
2524 o SHIFT_SPECIAL: Often it's possible to move a byte or a word to
2525 simulate a shift by 8, 16, or 24 bits. Once moved, a few inline
2526 shifts can be added if the shift count is slightly more than 8 or
2527 16. This case also includes other oddballs that are not worth
2528 explaining here.
2530 o SHIFT_LOOP: Emit a loop using one (or two on H8S) bit shifts.
2532 For each shift count, we try to use code that has no trade-off
2533 between code size and speed whenever possible.
2535 If the trade-off is unavoidable, we try to be reasonable.
2536 Specifically, the fastest version is one instruction longer than
2537 the shortest version, we take the fastest version. We also provide
2538 the use a way to switch back to the shortest version with -Os.
2540 For the details of the shift algorithms for various shift counts,
2541 refer to shift_alg_[qhs]i. */
2544 nshift_operator (x, mode)
2545 rtx x;
2546 enum machine_mode mode ATTRIBUTE_UNUSED;
2548 switch (GET_CODE (x))
2550 case ASHIFTRT:
2551 case LSHIFTRT:
2552 case ASHIFT:
2553 return 1;
2555 default:
2556 return 0;
2560 /* Emit code to do shifts. */
2562 void
2563 expand_a_shift (mode, code, operands)
2564 enum machine_mode mode;
2565 int code;
2566 rtx operands[];
2568 emit_move_insn (operands[0], operands[1]);
2570 /* Need a loop to get all the bits we want - we generate the
2571 code at emit time, but need to allocate a scratch reg now. */
2573 emit_insn (gen_rtx_PARALLEL
2574 (VOIDmode,
2575 gen_rtvec (2,
2576 gen_rtx_SET (VOIDmode, operands[0],
2577 gen_rtx (code, mode, operands[0],
2578 operands[2])),
2579 gen_rtx_CLOBBER (VOIDmode,
2580 gen_rtx_SCRATCH (QImode)))));
2583 /* Symbols of the various modes which can be used as indices. */
2585 enum shift_mode
2587 QIshift, HIshift, SIshift
2590 /* For single bit shift insns, record assembler and what bits of the
2591 condition code are valid afterwards (represented as various CC_FOO
2592 bits, 0 means CC isn't left in a usable state). */
2594 struct shift_insn
2596 const char *const assembler;
2597 const int cc_valid;
2600 /* Assembler instruction shift table.
2602 These tables are used to look up the basic shifts.
2603 They are indexed by cpu, shift_type, and mode. */
2605 static const struct shift_insn shift_one[2][3][3] =
2607 /* H8/300 */
2609 /* SHIFT_ASHIFT */
2611 { "shll\t%X0", CC_NO_CARRY },
2612 { "add.w\t%T0,%T0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY },
2613 { "add.w\t%f0,%f0\n\taddx\t%y0,%y0\n\taddx\t%z0,%z0", 0 }
2615 /* SHIFT_LSHIFTRT */
2617 { "shlr\t%X0", CC_NO_CARRY },
2618 { "shlr\t%t0\n\trotxr\t%s0", 0 },
2619 { "shlr\t%z0\n\trotxr\t%y0\n\trotxr\t%x0\n\trotxr\t%w0", 0 }
2621 /* SHIFT_ASHIFTRT */
2623 { "shar\t%X0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY },
2624 { "shar\t%t0\n\trotxr\t%s0", 0 },
2625 { "shar\t%z0\n\trotxr\t%y0\n\trotxr\t%x0\n\trotxr\t%w0", 0 }
2628 /* H8/300H */
2630 /* SHIFT_ASHIFT */
2632 { "shll.b\t%X0", CC_NO_CARRY },
2633 { "shll.w\t%T0", CC_NO_CARRY },
2634 { "shll.l\t%S0", CC_NO_CARRY }
2636 /* SHIFT_LSHIFTRT */
2638 { "shlr.b\t%X0", CC_NO_CARRY },
2639 { "shlr.w\t%T0", CC_NO_CARRY },
2640 { "shlr.l\t%S0", CC_NO_CARRY }
2642 /* SHIFT_ASHIFTRT */
2644 { "shar.b\t%X0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY },
2645 { "shar.w\t%T0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY },
2646 { "shar.l\t%S0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY }
2651 static const struct shift_insn shift_two[3][3] =
2653 /* SHIFT_ASHIFT */
2655 { "shll.b\t#2,%X0", CC_NO_CARRY },
2656 { "shll.w\t#2,%T0", CC_NO_CARRY },
2657 { "shll.l\t#2,%S0", CC_NO_CARRY }
2659 /* SHIFT_LSHIFTRT */
2661 { "shlr.b\t#2,%X0", CC_NO_CARRY },
2662 { "shlr.w\t#2,%T0", CC_NO_CARRY },
2663 { "shlr.l\t#2,%S0", CC_NO_CARRY }
2665 /* SHIFT_ASHIFTRT */
2667 { "shar.b\t#2,%X0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY },
2668 { "shar.w\t#2,%T0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY },
2669 { "shar.l\t#2,%S0", CC_OVERFLOW_UNUSABLE | CC_NO_CARRY }
2673 /* Rotates are organized by which shift they'll be used in implementing.
2674 There's no need to record whether the cc is valid afterwards because
2675 it is the AND insn that will decide this. */
2677 static const char *const rotate_one[2][3][3] =
2679 /* H8/300 */
2681 /* SHIFT_ASHIFT */
2683 "rotr\t%X0",
2684 "shlr\t%t0\n\trotxr\t%s0\n\tbst\t#7,%t0",
2687 /* SHIFT_LSHIFTRT */
2689 "rotl\t%X0",
2690 "shll\t%s0\n\trotxl\t%t0\n\tbst\t#0,%s0",
2693 /* SHIFT_ASHIFTRT */
2695 "rotl\t%X0",
2696 "shll\t%s0\n\trotxl\t%t0\n\tbst\t#0,%s0",
2700 /* H8/300H */
2702 /* SHIFT_ASHIFT */
2704 "rotr.b\t%X0",
2705 "rotr.w\t%T0",
2706 "rotr.l\t%S0"
2708 /* SHIFT_LSHIFTRT */
2710 "rotl.b\t%X0",
2711 "rotl.w\t%T0",
2712 "rotl.l\t%S0"
2714 /* SHIFT_ASHIFTRT */
2716 "rotl.b\t%X0",
2717 "rotl.w\t%T0",
2718 "rotl.l\t%S0"
2723 static const char *const rotate_two[3][3] =
2725 /* SHIFT_ASHIFT */
2727 "rotr.b\t#2,%X0",
2728 "rotr.w\t#2,%T0",
2729 "rotr.l\t#2,%S0"
2731 /* SHIFT_LSHIFTRT */
2733 "rotl.b\t#2,%X0",
2734 "rotl.w\t#2,%T0",
2735 "rotl.l\t#2,%S0"
2737 /* SHIFT_ASHIFTRT */
2739 "rotl.b\t#2,%X0",
2740 "rotl.w\t#2,%T0",
2741 "rotl.l\t#2,%S0"
2745 struct shift_info {
2746 /* Shift algorithm. */
2747 enum shift_alg alg;
2749 /* The number of bits to be shifted by shift1 and shift2. Valid
2750 when ALG is SHIFT_SPECIAL. */
2751 unsigned int remainder;
2753 /* Special insn for a shift. Valid when ALG is SHIFT_SPECIAL. */
2754 const char *special;
2756 /* Insn for a one-bit shift. Valid when ALG is either SHIFT_INLINE
2757 or SHIFT_SPECIAL, and REMAINDER is nonzero. */
2758 const char *shift1;
2760 /* Insn for a two-bit shift. Valid when ALG is either SHIFT_INLINE
2761 or SHIFT_SPECIAL, and REMAINDER is nonzero. */
2762 const char *shift2;
2764 /* Valid CC flags. */
2765 int cc_valid_p;
2768 static void get_shift_alg PARAMS ((enum shift_type,
2769 enum shift_mode, unsigned int,
2770 struct shift_info *));
2772 /* Given SHIFT_TYPE, SHIFT_MODE, and shift count COUNT, determine the
2773 best algorithm for doing the shift. The assembler code is stored
2774 in the pointers in INFO. We achieve the maximum efficiency in most
2775 cases when !TARGET_H8300. In case of TARGET_H8300, shifts in
2776 SImode in particular have a lot of room to optimize.
2778 We first determine the strategy of the shift algorithm by a table
2779 lookup. If that tells us to use a hand crafted assembly code, we
2780 go into the big switch statement to find what that is. Otherwise,
2781 we resort to a generic way, such as inlining. In either case, the
2782 result is returned through INFO. */
2784 static void
2785 get_shift_alg (shift_type, shift_mode, count, info)
2786 enum shift_type shift_type;
2787 enum shift_mode shift_mode;
2788 unsigned int count;
2789 struct shift_info *info;
2791 enum h8_cpu cpu;
2793 /* Find the target CPU. */
2794 if (TARGET_H8300)
2795 cpu = H8_300;
2796 else if (TARGET_H8300H)
2797 cpu = H8_300H;
2798 else
2799 cpu = H8_S;
2801 /* Find the shift algorithm. */
2802 info->alg = SHIFT_LOOP;
2803 switch (shift_mode)
2805 case QIshift:
2806 if (count < GET_MODE_BITSIZE (QImode))
2807 info->alg = shift_alg_qi[cpu][shift_type][count];
2808 break;
2810 case HIshift:
2811 if (count < GET_MODE_BITSIZE (HImode))
2812 info->alg = shift_alg_hi[cpu][shift_type][count];
2813 break;
2815 case SIshift:
2816 if (count < GET_MODE_BITSIZE (SImode))
2817 info->alg = shift_alg_si[cpu][shift_type][count];
2818 break;
2820 default:
2821 abort ();
2824 /* Fill in INFO. Return unless we have SHIFT_SPECIAL. */
2825 switch (info->alg)
2827 case SHIFT_INLINE:
2828 info->remainder = count;
2829 /* Fall through. */
2831 case SHIFT_LOOP:
2832 /* It is up to the caller to know that looping clobbers cc. */
2833 info->shift1 = shift_one[cpu_type][shift_type][shift_mode].assembler;
2834 info->shift2 = shift_two[shift_type][shift_mode].assembler;
2835 info->cc_valid_p = shift_one[cpu_type][shift_type][shift_mode].cc_valid;
2836 goto end;
2838 case SHIFT_ROT_AND:
2839 info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
2840 info->shift2 = rotate_two[shift_type][shift_mode];
2841 info->cc_valid_p = 0;
2842 goto end;
2844 case SHIFT_SPECIAL:
2845 /* REMAINDER is 0 for most cases, so initialize it to 0. */
2846 info->remainder = 0;
2847 info->shift1 = shift_one[cpu_type][shift_type][shift_mode].assembler;
2848 info->shift2 = shift_two[shift_type][shift_mode].assembler;
2849 info->cc_valid_p = 0;
2850 break;
2853 /* Here we only deal with SHIFT_SPECIAL. */
2854 switch (shift_mode)
2856 case QIshift:
2857 /* For ASHIFTRT by 7 bits, the sign bit is simply replicated
2858 through the entire value. */
2859 if (shift_type == SHIFT_ASHIFTRT && count == 7)
2861 info->special = "shll\t%X0\n\tsubx\t%X0,%X0";
2862 goto end;
2864 abort ();
2866 case HIshift:
2867 if (count == 7)
2869 switch (shift_type)
2871 case SHIFT_ASHIFT:
2872 if (TARGET_H8300)
2873 info->special = "shar.b\t%t0\n\tmov.b\t%s0,%t0\n\trotxr.b\t%t0\n\trotr.b\t%s0\n\tand.b\t#0x80,%s0";
2874 else
2875 info->special = "shar.b\t%t0\n\tmov.b\t%s0,%t0\n\trotxr.w\t%T0\n\tand.b\t#0x80,%s0";
2876 goto end;
2877 case SHIFT_LSHIFTRT:
2878 if (TARGET_H8300)
2879 info->special = "shal.b\t%s0\n\tmov.b\t%t0,%s0\n\trotxl.b\t%s0\n\trotl.b\t%t0\n\tand.b\t#0x01,%t0";
2880 else
2881 info->special = "shal.b\t%s0\n\tmov.b\t%t0,%s0\n\trotxl.w\t%T0\n\tand.b\t#0x01,%t0";
2882 goto end;
2883 case SHIFT_ASHIFTRT:
2884 info->special = "shal.b\t%s0\n\tmov.b\t%t0,%s0\n\trotxl.b\t%s0\n\tsubx\t%t0,%t0";
2885 goto end;
2888 else if ((8 <= count && count <= 13)
2889 || (TARGET_H8300S && count == 14))
2891 info->remainder = count - 8;
2893 switch (shift_type)
2895 case SHIFT_ASHIFT:
2896 info->special = "mov.b\t%s0,%t0\n\tsub.b\t%s0,%s0";
2897 goto end;
2898 case SHIFT_LSHIFTRT:
2899 if (TARGET_H8300)
2901 info->special = "mov.b\t%t0,%s0\n\tsub.b\t%t0,%t0";
2902 info->shift1 = "shlr.b\t%s0";
2904 else
2906 info->special = "mov.b\t%t0,%s0\n\textu.w\t%T0";
2908 goto end;
2909 case SHIFT_ASHIFTRT:
2910 if (TARGET_H8300)
2912 info->special = "mov.b\t%t0,%s0\n\tbld\t#7,%s0\n\tsubx\t%t0,%t0";
2913 info->shift1 = "shar.b\t%s0";
2915 else
2917 info->special = "mov.b\t%t0,%s0\n\texts.w\t%T0";
2919 goto end;
2922 else if (count == 14)
2924 switch (shift_type)
2926 case SHIFT_ASHIFT:
2927 if (TARGET_H8300)
2928 info->special = "mov.b\t%s0,%t0\n\trotr.b\t%t0\n\trotr.b\t%t0\n\tand.b\t#0xC0,%t0\n\tsub.b\t%s0,%s0";
2929 goto end;
2930 case SHIFT_LSHIFTRT:
2931 if (TARGET_H8300)
2932 info->special = "mov.b\t%t0,%s0\n\trotl.b\t%s0\n\trotl.b\t%s0\n\tand.b\t#3,%s0\n\tsub.b\t%t0,%t0";
2933 goto end;
2934 case SHIFT_ASHIFTRT:
2935 if (TARGET_H8300)
2936 info->special = "mov.b\t%t0,%s0\n\tshll.b\t%s0\n\tsubx.b\t%t0,%t0\n\tshll.b\t%s0\n\tmov.b\t%t0,%s0\n\tbst.b\t#0,%s0";
2937 else if (TARGET_H8300H)
2938 info->special = "shll.b\t%t0\n\tsubx.b\t%s0,%s0\n\tshll.b\t%t0\n\trotxl.b\t%s0\n\texts.w\t%T0";
2939 else /* TARGET_H8300S */
2940 abort ();
2941 goto end;
2944 else if (count == 15)
2946 switch (shift_type)
2948 case SHIFT_ASHIFT:
2949 info->special = "bld\t#0,%s0\n\txor\t%s0,%s0\n\txor\t%t0,%t0\n\tbst\t#7,%t0";
2950 goto end;
2951 case SHIFT_LSHIFTRT:
2952 info->special = "bld\t#7,%t0\n\txor\t%s0,%s0\n\txor\t%t0,%t0\n\tbst\t#0,%s0";
2953 goto end;
2954 case SHIFT_ASHIFTRT:
2955 info->special = "shll\t%t0\n\tsubx\t%t0,%t0\n\tmov.b\t%t0,%s0";
2956 goto end;
2959 abort ();
2961 case SIshift:
2962 if (TARGET_H8300 && 8 <= count && count <= 9)
2964 info->remainder = count - 8;
2966 switch (shift_type)
2968 case SHIFT_ASHIFT:
2969 info->special = "mov.b\t%y0,%z0\n\tmov.b\t%x0,%y0\n\tmov.b\t%w0,%x0\n\tsub.b\t%w0,%w0";
2970 goto end;
2971 case SHIFT_LSHIFTRT:
2972 info->special = "mov.b\t%x0,%w0\n\tmov.b\t%y0,%x0\n\tmov.b\t%z0,%y0\n\tsub.b\t%z0,%z0";
2973 info->shift1 = "shlr\t%y0\n\trotxr\t%x0\n\trotxr\t%w0";
2974 goto end;
2975 case SHIFT_ASHIFTRT:
2976 info->special = "mov.b\t%x0,%w0\n\tmov.b\t%y0,%x0\n\tmov.b\t%z0,%y0\n\tshll\t%z0\n\tsubx\t%z0,%z0";
2977 goto end;
2980 else if (count == 8 && !TARGET_H8300)
2982 switch (shift_type)
2984 case SHIFT_ASHIFT:
2985 info->special = "mov.w\t%e0,%f4\n\tmov.b\t%s4,%t4\n\tmov.b\t%t0,%s4\n\tmov.b\t%s0,%t0\n\tsub.b\t%s0,%s0\n\tmov.w\t%f4,%e0";
2986 goto end;
2987 case SHIFT_LSHIFTRT:
2988 info->special = "mov.w\t%e0,%f4\n\tmov.b\t%t0,%s0\n\tmov.b\t%s4,%t0\n\tmov.b\t%t4,%s4\n\textu.w\t%f4\n\tmov.w\t%f4,%e0";
2989 goto end;
2990 case SHIFT_ASHIFTRT:
2991 info->special = "mov.w\t%e0,%f4\n\tmov.b\t%t0,%s0\n\tmov.b\t%s4,%t0\n\tmov.b\t%t4,%s4\n\texts.w\t%f4\n\tmov.w\t%f4,%e0";
2992 goto end;
2995 else if (count == 15 && TARGET_H8300)
2997 switch (shift_type)
2999 case SHIFT_ASHIFT:
3000 abort ();
3001 case SHIFT_LSHIFTRT:
3002 info->special = "bld\t#7,%z0\n\tmov.w\t%e0,%f0\n\txor\t%y0,%y0\n\txor\t%z0,%z0\n\trotxl\t%w0,%w0\n\trotxl\t%x0,%x0\n\trotxl\t%y0,%y0";
3003 goto end;
3004 case SHIFT_ASHIFTRT:
3005 info->special = "bld\t#7,%z0\n\tmov.w\t%e0,%f0\n\trotxl\t%w0,%w0\n\trotxl\t%x0,%x0\n\tsubx\t%y0,%y0\n\tsubx\t%z0,%z0";
3006 goto end;
3009 else if (count == 15 && !TARGET_H8300)
3011 switch (shift_type)
3013 case SHIFT_ASHIFT:
3014 info->special = "shlr.w\t%e0\n\tmov.w\t%f0,%e0\n\txor.w\t%f0,%f0\n\trotxr.l\t%S0";
3015 goto end;
3016 case SHIFT_LSHIFTRT:
3017 info->special = "shll.w\t%f0\n\tmov.w\t%e0,%f0\n\txor.w\t%e0,%e0\n\trotxl.l\t%S0";
3018 goto end;
3019 case SHIFT_ASHIFTRT:
3020 abort ();
3023 else if ((TARGET_H8300 && 16 <= count && count <= 20)
3024 || (TARGET_H8300H && 16 <= count && count <= 19)
3025 || (TARGET_H8300S && 16 <= count && count <= 21))
3027 info->remainder = count - 16;
3029 switch (shift_type)
3031 case SHIFT_ASHIFT:
3032 info->special = "mov.w\t%f0,%e0\n\tsub.w\t%f0,%f0";
3033 if (TARGET_H8300)
3034 info->shift1 = "add.w\t%e0,%e0";
3035 goto end;
3036 case SHIFT_LSHIFTRT:
3037 if (TARGET_H8300)
3039 info->special = "mov.w\t%e0,%f0\n\tsub.w\t%e0,%e0";
3040 info->shift1 = "shlr\t%x0\n\trotxr\t%w0";
3042 else
3044 info->special = "mov.w\t%e0,%f0\n\textu.l\t%S0";
3046 goto end;
3047 case SHIFT_ASHIFTRT:
3048 if (TARGET_H8300)
3050 info->special = "mov.w\t%e0,%f0\n\tshll\t%z0\n\tsubx\t%z0,%z0\n\tmov.b\t%z0,%y0";
3051 info->shift1 = "shar\t%x0\n\trotxr\t%w0";
3053 else
3055 info->special = "mov.w\t%e0,%f0\n\texts.l\t%S0";
3057 goto end;
3060 else if (TARGET_H8300 && 24 <= count && count <= 28)
3062 info->remainder = count - 24;
3064 switch (shift_type)
3066 case SHIFT_ASHIFT:
3067 info->special = "mov.b\t%w0,%z0\n\tsub.b\t%y0,%y0\n\tsub.w\t%f0,%f0";
3068 info->shift1 = "shll.b\t%z0";
3069 goto end;
3070 case SHIFT_LSHIFTRT:
3071 info->special = "mov.b\t%z0,%w0\n\tsub.b\t%x0,%x0\n\tsub.w\t%e0,%e0";
3072 info->shift1 = "shlr.b\t%w0";
3073 goto end;
3074 case SHIFT_ASHIFTRT:
3075 info->special = "mov.b\t%z0,%w0\n\tbld\t#7,%w0\n\tsubx\t%x0,%x0\n\tsubx\t%x0,%x0\n\tsubx\t%x0,%x0";
3076 info->shift1 = "shar.b\t%w0";
3077 goto end;
3080 else if ((TARGET_H8300H && count == 24)
3081 || (TARGET_H8300S && 24 <= count && count <= 25))
3083 info->remainder = count - 24;
3085 switch (shift_type)
3087 case SHIFT_ASHIFT:
3088 info->special = "mov.b\t%s0,%t0\n\tsub.b\t%s0,%s0\n\tmov.w\t%f0,%e0\n\tsub.w\t%f0,%f0";
3089 goto end;
3090 case SHIFT_LSHIFTRT:
3091 info->special = "mov.w\t%e0,%f0\n\tmov.b\t%t0,%s0\n\textu.w\t%f0\n\textu.l\t%S0";
3092 goto end;
3093 case SHIFT_ASHIFTRT:
3094 info->special = "mov.w\t%e0,%f0\n\tmov.b\t%t0,%s0\n\texts.w\t%f0\n\texts.l\t%S0";
3095 goto end;
3098 else if (!TARGET_H8300 && count == 28)
3100 switch (shift_type)
3102 case SHIFT_ASHIFT:
3103 if (TARGET_H8300H)
3104 info->special = "sub.w\t%e0,%e0\n\trotr.l\t%S0\n\trotr.l\t%S0\n\trotr.l\t%S0\n\trotr.l\t%S0\n\tsub.w\t%f0,%f0";
3105 else
3106 info->special = "sub.w\t%e0,%e0\n\trotr.l\t#2,%S0\n\trotr.l\t#2,%S0\n\tsub.w\t%f0,%f0";
3107 goto end;
3108 case SHIFT_LSHIFTRT:
3109 if (TARGET_H8300H)
3110 info->special = "sub.w\t%f0,%f0\n\trotl.l\t%S0\n\trotl.l\t%S0\n\trotl.l\t%S0\n\trotl.l\t%S0\n\textu.l\t%S0";
3111 else
3112 info->special = "sub.w\t%f0,%f0\n\trotl.l\t#2,%S0\n\trotl.l\t#2,%S0\n\textu.l\t%S0";
3113 goto end;
3114 case SHIFT_ASHIFTRT:
3115 abort ();
3118 else if (!TARGET_H8300 && count == 29)
3120 switch (shift_type)
3122 case SHIFT_ASHIFT:
3123 if (TARGET_H8300H)
3124 info->special = "sub.w\t%e0,%e0\n\trotr.l\t%S0\n\trotr.l\t%S0\n\trotr.l\t%S0\n\tsub.w\t%f0,%f0";
3125 else
3126 info->special = "sub.w\t%e0,%e0\n\trotr.l\t#2,%S0\n\trotr.l\t%S0\n\tsub.w\t%f0,%f0";
3127 goto end;
3128 case SHIFT_LSHIFTRT:
3129 if (TARGET_H8300H)
3130 info->special = "sub.w\t%f0,%f0\n\trotl.l\t%S0\n\trotl.l\t%S0\n\trotl.l\t%S0\n\textu.l\t%S0";
3131 else
3132 info->special = "sub.w\t%f0,%f0\n\trotl.l\t#2,%S0\n\trotl.l\t%S0\n\textu.l\t%S0";
3133 goto end;
3134 case SHIFT_ASHIFTRT:
3135 abort ();
3138 else if (!TARGET_H8300 && count == 30)
3140 switch (shift_type)
3142 case SHIFT_ASHIFT:
3143 if (TARGET_H8300H)
3144 info->special = "sub.w\t%e0,%e0\n\trotr.l\t%S0\n\trotr.l\t%S0\n\tsub.w\t%f0,%f0";
3145 else
3146 info->special = "sub.w\t%e0,%e0\n\trotr.l\t#2,%S0\n\tsub.w\t%f0,%f0";
3147 goto end;
3148 case SHIFT_LSHIFTRT:
3149 if (TARGET_H8300H)
3150 info->special = "sub.w\t%f0,%f0\n\trotl.l\t%S0\n\trotl.l\t%S0\n\textu.l\t%S0";
3151 else
3152 info->special = "sub.w\t%f0,%f0\n\trotl.l\t#2,%S0\n\textu.l\t%S0";
3153 goto end;
3154 case SHIFT_ASHIFTRT:
3155 abort ();
3158 else if (count == 31)
3160 if (TARGET_H8300)
3162 switch (shift_type)
3164 case SHIFT_ASHIFT:
3165 info->special = "sub.w\t%e0,%e0\n\tshlr\t%w0\n\tmov.w\t%e0,%f0\n\trotxr\t%z0";
3166 goto end;
3167 case SHIFT_LSHIFTRT:
3168 info->special = "sub.w\t%f0,%f0\n\tshll\t%z0\n\tmov.w\t%f0,%e0\n\trotxl\t%w0";
3169 goto end;
3170 case SHIFT_ASHIFTRT:
3171 info->special = "shll\t%z0\n\tsubx\t%w0,%w0\n\tmov.b\t%w0,%x0\n\tmov.w\t%f0,%e0";
3172 goto end;
3175 else
3177 switch (shift_type)
3179 case SHIFT_ASHIFT:
3180 info->special = "shlr.l\t%S0\n\txor.l\t%S0,%S0\n\trotxr.l\t%S0";
3181 goto end;
3182 case SHIFT_LSHIFTRT:
3183 info->special = "shll.l\t%S0\n\txor.l\t%S0,%S0\n\trotxl.l\t%S0";
3184 goto end;
3185 case SHIFT_ASHIFTRT:
3186 info->special = "shll\t%e0\n\tsubx\t%w0,%w0\n\texts.w\t%T0\n\texts.l\t%S0";
3187 goto end;
3191 abort ();
3193 default:
3194 abort ();
3197 end:
3198 if (!TARGET_H8300S)
3199 info->shift2 = NULL;
3202 /* Given COUNT and MODE of a shift, return 1 if a scratch reg may be
3203 needed for some shift with COUNT and MODE. Return 0 otherwise. */
3206 h8300_shift_needs_scratch_p (count, mode)
3207 int count;
3208 enum machine_mode mode;
3210 enum h8_cpu cpu;
3211 int a, lr, ar;
3213 if (GET_MODE_BITSIZE (mode) <= count)
3214 return 1;
3216 /* Find out the target CPU. */
3217 if (TARGET_H8300)
3218 cpu = H8_300;
3219 else if (TARGET_H8300H)
3220 cpu = H8_300H;
3221 else
3222 cpu = H8_S;
3224 /* Find the shift algorithm. */
3225 switch (mode)
3227 case QImode:
3228 a = shift_alg_qi[cpu][SHIFT_ASHIFT][count];
3229 lr = shift_alg_qi[cpu][SHIFT_LSHIFTRT][count];
3230 ar = shift_alg_qi[cpu][SHIFT_ASHIFTRT][count];
3231 break;
3233 case HImode:
3234 a = shift_alg_hi[cpu][SHIFT_ASHIFT][count];
3235 lr = shift_alg_hi[cpu][SHIFT_LSHIFTRT][count];
3236 ar = shift_alg_hi[cpu][SHIFT_ASHIFTRT][count];
3237 break;
3239 case SImode:
3240 a = shift_alg_si[cpu][SHIFT_ASHIFT][count];
3241 lr = shift_alg_si[cpu][SHIFT_LSHIFTRT][count];
3242 ar = shift_alg_si[cpu][SHIFT_ASHIFTRT][count];
3243 break;
3245 default:
3246 abort ();
3249 /* On H8/300H, count == 8 uses a scratch register. */
3250 return (a == SHIFT_LOOP || lr == SHIFT_LOOP || ar == SHIFT_LOOP
3251 || (TARGET_H8300H && mode == SImode && count == 8));
3254 /* Emit the assembler code for doing shifts. */
3256 const char *
3257 output_a_shift (operands)
3258 rtx *operands;
3260 static int loopend_lab;
3261 rtx shift = operands[3];
3262 enum machine_mode mode = GET_MODE (shift);
3263 enum rtx_code code = GET_CODE (shift);
3264 enum shift_type shift_type;
3265 enum shift_mode shift_mode;
3266 struct shift_info info;
3268 loopend_lab++;
3270 switch (mode)
3272 case QImode:
3273 shift_mode = QIshift;
3274 break;
3275 case HImode:
3276 shift_mode = HIshift;
3277 break;
3278 case SImode:
3279 shift_mode = SIshift;
3280 break;
3281 default:
3282 abort ();
3285 switch (code)
3287 case ASHIFTRT:
3288 shift_type = SHIFT_ASHIFTRT;
3289 break;
3290 case LSHIFTRT:
3291 shift_type = SHIFT_LSHIFTRT;
3292 break;
3293 case ASHIFT:
3294 shift_type = SHIFT_ASHIFT;
3295 break;
3296 default:
3297 abort ();
3300 if (GET_CODE (operands[2]) != CONST_INT)
3302 /* This case must be taken care of by one of the two splitters
3303 that convert a variable shift into a loop. */
3304 abort ();
3306 else
3308 int n = INTVAL (operands[2]);
3310 /* If the count is negative, make it 0. */
3311 if (n < 0)
3312 n = 0;
3313 /* If the count is too big, truncate it.
3314 ANSI says shifts of GET_MODE_BITSIZE are undefined - we choose to
3315 do the intuitive thing. */
3316 else if ((unsigned int) n > GET_MODE_BITSIZE (mode))
3317 n = GET_MODE_BITSIZE (mode);
3319 get_shift_alg (shift_type, shift_mode, n, &info);
3321 switch (info.alg)
3323 case SHIFT_SPECIAL:
3324 output_asm_insn (info.special, operands);
3325 /* Fall through. */
3327 case SHIFT_INLINE:
3328 n = info.remainder;
3330 /* Emit two bit shifts first. */
3331 if (info.shift2 != NULL)
3333 for (; n > 1; n -= 2)
3334 output_asm_insn (info.shift2, operands);
3337 /* Now emit one bit shifts for any residual. */
3338 for (; n > 0; n--)
3339 output_asm_insn (info.shift1, operands);
3341 /* Keep track of CC. */
3342 if (info.cc_valid_p)
3344 cc_status.value1 = operands[0];
3345 cc_status.flags |= info.cc_valid_p;
3347 return "";
3349 case SHIFT_ROT_AND:
3351 int m = GET_MODE_BITSIZE (mode) - n;
3352 const int mask = (shift_type == SHIFT_ASHIFT
3353 ? ((1 << m) - 1) << n
3354 : (1 << m) - 1);
3355 char insn_buf[200];
3357 /* Not all possibilities of rotate are supported. They shouldn't
3358 be generated, but let's watch for 'em. */
3359 if (info.shift1 == 0)
3360 abort ();
3362 /* Emit two bit rotates first. */
3363 if (info.shift2 != NULL)
3365 for (; m > 1; m -= 2)
3366 output_asm_insn (info.shift2, operands);
3369 /* Now single bit rotates for any residual. */
3370 for (; m > 0; m--)
3371 output_asm_insn (info.shift1, operands);
3373 /* Now mask off the high bits. */
3374 if (mode == QImode)
3375 sprintf (insn_buf, "and\t#%d,%%X0", mask);
3376 else if (mode == HImode && (TARGET_H8300H || TARGET_H8300S))
3377 sprintf (insn_buf, "and.w\t#%d,%%T0", mask);
3378 else
3379 abort ();
3381 cc_status.value1 = operands[0];
3382 cc_status.flags |= CC_NO_CARRY;
3383 output_asm_insn (insn_buf, operands);
3384 return "";
3387 case SHIFT_LOOP:
3388 /* A loop to shift by a "large" constant value.
3389 If we have shift-by-2 insns, use them. */
3390 if (info.shift2 != NULL)
3392 fprintf (asm_out_file, "\tmov.b #%d,%sl\n", n / 2,
3393 names_big[REGNO (operands[4])]);
3394 fprintf (asm_out_file, ".Llt%d:\n", loopend_lab);
3395 output_asm_insn (info.shift2, operands);
3396 output_asm_insn ("add #0xff,%X4", operands);
3397 fprintf (asm_out_file, "\tbne .Llt%d\n", loopend_lab);
3398 if (n % 2)
3399 output_asm_insn (info.shift1, operands);
3401 else
3403 fprintf (asm_out_file, "\tmov.b #%d,%sl\n", n,
3404 names_big[REGNO (operands[4])]);
3405 fprintf (asm_out_file, ".Llt%d:\n", loopend_lab);
3406 output_asm_insn (info.shift1, operands);
3407 output_asm_insn ("add #0xff,%X4", operands);
3408 fprintf (asm_out_file, "\tbne .Llt%d\n", loopend_lab);
3410 return "";
3412 default:
3413 abort ();
3418 static unsigned int
3419 h8300_asm_insn_count (template)
3420 const char *template;
3422 unsigned int count = 1;
3424 for (; *template; template++)
3425 if (*template == '\n')
3426 count++;
3428 return count;
3431 unsigned int
3432 compute_a_shift_length (insn, operands)
3433 rtx insn ATTRIBUTE_UNUSED;
3434 rtx *operands;
3436 rtx shift = operands[3];
3437 enum machine_mode mode = GET_MODE (shift);
3438 enum rtx_code code = GET_CODE (shift);
3439 enum shift_type shift_type;
3440 enum shift_mode shift_mode;
3441 struct shift_info info;
3442 unsigned int wlength = 0;
3444 switch (mode)
3446 case QImode:
3447 shift_mode = QIshift;
3448 break;
3449 case HImode:
3450 shift_mode = HIshift;
3451 break;
3452 case SImode:
3453 shift_mode = SIshift;
3454 break;
3455 default:
3456 abort ();
3459 switch (code)
3461 case ASHIFTRT:
3462 shift_type = SHIFT_ASHIFTRT;
3463 break;
3464 case LSHIFTRT:
3465 shift_type = SHIFT_LSHIFTRT;
3466 break;
3467 case ASHIFT:
3468 shift_type = SHIFT_ASHIFT;
3469 break;
3470 default:
3471 abort ();
3474 if (GET_CODE (operands[2]) != CONST_INT)
3476 /* Get the assembler code to do one shift. */
3477 get_shift_alg (shift_type, shift_mode, 1, &info);
3479 return (4 + h8300_asm_insn_count (info.shift1)) * 2;
3481 else
3483 int n = INTVAL (operands[2]);
3485 /* If the count is negative, make it 0. */
3486 if (n < 0)
3487 n = 0;
3488 /* If the count is too big, truncate it.
3489 ANSI says shifts of GET_MODE_BITSIZE are undefined - we choose to
3490 do the intuitive thing. */
3491 else if ((unsigned int) n > GET_MODE_BITSIZE (mode))
3492 n = GET_MODE_BITSIZE (mode);
3494 get_shift_alg (shift_type, shift_mode, n, &info);
3496 switch (info.alg)
3498 case SHIFT_SPECIAL:
3499 wlength += h8300_asm_insn_count (info.special);
3501 /* Every assembly instruction used in SHIFT_SPECIAL case
3502 takes 2 bytes except xor.l, which takes 4 bytes, so if we
3503 see xor.l, we just pretend that xor.l counts as two insns
3504 so that the insn length will be computed correctly. */
3505 if (strstr (info.special, "xor.l") != NULL)
3506 wlength++;
3508 /* Fall through. */
3510 case SHIFT_INLINE:
3511 n = info.remainder;
3513 if (info.shift2 != NULL)
3515 wlength += h8300_asm_insn_count (info.shift2) * (n / 2);
3516 n = n % 2;
3519 wlength += h8300_asm_insn_count (info.shift1) * n;
3521 return 2 * wlength;
3523 case SHIFT_ROT_AND:
3525 int m = GET_MODE_BITSIZE (mode) - n;
3527 /* Not all possibilities of rotate are supported. They shouldn't
3528 be generated, but let's watch for 'em. */
3529 if (info.shift1 == 0)
3530 abort ();
3532 if (info.shift2 != NULL)
3534 wlength += h8300_asm_insn_count (info.shift2) * (m / 2);
3535 m = m % 2;
3538 wlength += h8300_asm_insn_count (info.shift1) * m;
3540 /* Now mask off the high bits. */
3541 switch (mode)
3543 case QImode:
3544 wlength += 1;
3545 break;
3546 case HImode:
3547 wlength += 2;
3548 break;
3549 case SImode:
3550 if (TARGET_H8300)
3551 abort ();
3552 wlength += 3;
3553 break;
3554 default:
3555 abort ();
3557 return 2 * wlength;
3560 case SHIFT_LOOP:
3561 /* A loop to shift by a "large" constant value.
3562 If we have shift-by-2 insns, use them. */
3563 if (info.shift2 != NULL)
3565 wlength += 3 + h8300_asm_insn_count (info.shift2);
3566 if (n % 2)
3567 wlength += h8300_asm_insn_count (info.shift1);
3569 else
3571 wlength += 3 + h8300_asm_insn_count (info.shift1);
3573 return 2 * wlength;
3575 default:
3576 abort ();
3581 /* A rotation by a non-constant will cause a loop to be generated, in
3582 which a rotation by one bit is used. A rotation by a constant,
3583 including the one in the loop, will be taken care of by
3584 emit_a_rotate () at the insn emit time. */
3587 expand_a_rotate (code, operands)
3588 enum rtx_code code;
3589 rtx operands[];
3591 rtx dst = operands[0];
3592 rtx src = operands[1];
3593 rtx rotate_amount = operands[2];
3594 enum machine_mode mode = GET_MODE (dst);
3595 rtx tmp;
3597 /* We rotate in place. */
3598 emit_move_insn (dst, src);
3600 if (GET_CODE (rotate_amount) != CONST_INT)
3602 rtx counter = gen_reg_rtx (QImode);
3603 rtx start_label = gen_label_rtx ();
3604 rtx end_label = gen_label_rtx ();
3606 /* If the rotate amount is less than or equal to 0,
3607 we go out of the loop. */
3608 emit_cmp_and_jump_insns (rotate_amount, GEN_INT (0), LE, NULL_RTX,
3609 QImode, 0, end_label);
3611 /* Initialize the loop counter. */
3612 emit_move_insn (counter, rotate_amount);
3614 emit_label (start_label);
3616 /* Rotate by one bit. */
3617 tmp = gen_rtx (code, mode, dst, GEN_INT (1));
3618 emit_insn (gen_rtx_SET (mode, dst, tmp));
3620 /* Decrement the counter by 1. */
3621 tmp = gen_rtx_PLUS (QImode, counter, GEN_INT (-1));
3622 emit_insn (gen_rtx_SET (VOIDmode, counter, tmp));
3624 /* If the loop counter is nonzero, we go back to the beginning
3625 of the loop. */
3626 emit_cmp_and_jump_insns (counter, GEN_INT (0), NE, NULL_RTX, QImode, 1,
3627 start_label);
3629 emit_label (end_label);
3631 else
3633 /* Rotate by AMOUNT bits. */
3634 tmp = gen_rtx (code, mode, dst, rotate_amount);
3635 emit_insn (gen_rtx_SET (mode, dst, tmp));
3638 return 1;
3641 /* Emit rotate insns. */
3643 const char *
3644 emit_a_rotate (code, operands)
3645 enum rtx_code code;
3646 rtx *operands;
3648 rtx dst = operands[0];
3649 rtx rotate_amount = operands[2];
3650 enum shift_mode rotate_mode;
3651 enum shift_type rotate_type;
3652 const char *insn_buf;
3653 int bits;
3654 int amount;
3655 enum machine_mode mode = GET_MODE (dst);
3657 if (GET_CODE (rotate_amount) != CONST_INT)
3658 abort ();
3660 switch (mode)
3662 case QImode:
3663 rotate_mode = QIshift;
3664 break;
3665 case HImode:
3666 rotate_mode = HIshift;
3667 break;
3668 case SImode:
3669 rotate_mode = SIshift;
3670 break;
3671 default:
3672 abort ();
3675 switch (code)
3677 case ROTATERT:
3678 rotate_type = SHIFT_ASHIFT;
3679 break;
3680 case ROTATE:
3681 rotate_type = SHIFT_LSHIFTRT;
3682 break;
3683 default:
3684 abort ();
3687 amount = INTVAL (rotate_amount);
3689 /* Clean up AMOUNT. */
3690 if (amount < 0)
3691 amount = 0;
3692 if ((unsigned int) amount > GET_MODE_BITSIZE (mode))
3693 amount = GET_MODE_BITSIZE (mode);
3695 /* Determine the faster direction. After this phase, amount will be
3696 at most a half of GET_MODE_BITSIZE (mode). */
3697 if ((unsigned int) amount > GET_MODE_BITSIZE (mode) / (unsigned) 2)
3699 /* Flip the direction. */
3700 amount = GET_MODE_BITSIZE (mode) - amount;
3701 rotate_type =
3702 (rotate_type == SHIFT_ASHIFT) ? SHIFT_LSHIFTRT : SHIFT_ASHIFT;
3705 /* See if a byte swap (in HImode) or a word swap (in SImode) can
3706 boost up the rotation. */
3707 if ((mode == HImode && TARGET_H8300 && amount >= 5)
3708 || (mode == HImode && TARGET_H8300H && amount >= 6)
3709 || (mode == HImode && TARGET_H8300S && amount == 8)
3710 || (mode == SImode && TARGET_H8300H && amount >= 10)
3711 || (mode == SImode && TARGET_H8300S && amount >= 13))
3713 switch (mode)
3715 case HImode:
3716 /* This code works on any family. */
3717 insn_buf = "xor.b\t%s0,%t0\n\txor.b\t%t0,%s0\n\txor.b\t%s0,%t0";
3718 output_asm_insn (insn_buf, operands);
3719 break;
3721 case SImode:
3722 /* This code works on the H8/300H and H8S. */
3723 insn_buf = "xor.w\t%e0,%f0\n\txor.w\t%f0,%e0\n\txor.w\t%e0,%f0";
3724 output_asm_insn (insn_buf, operands);
3725 break;
3727 default:
3728 abort ();
3731 /* Adjust AMOUNT and flip the direction. */
3732 amount = GET_MODE_BITSIZE (mode) / 2 - amount;
3733 rotate_type =
3734 (rotate_type == SHIFT_ASHIFT) ? SHIFT_LSHIFTRT : SHIFT_ASHIFT;
3737 /* Emit rotate insns. */
3738 for (bits = TARGET_H8300S ? 2 : 1; bits > 0; bits /= 2)
3740 if (bits == 2)
3741 insn_buf = rotate_two[rotate_type][rotate_mode];
3742 else
3743 insn_buf = rotate_one[cpu_type][rotate_type][rotate_mode];
3745 for (; amount >= bits; amount -= bits)
3746 output_asm_insn (insn_buf, operands);
3749 return "";
3752 /* Fix the operands of a gen_xxx so that it could become a bit
3753 operating insn. */
3756 fix_bit_operand (operands, what, type)
3757 rtx *operands;
3758 int what;
3759 enum rtx_code type;
3761 /* The bit_operand predicate accepts any memory during RTL generation, but
3762 only 'U' memory afterwards, so if this is a MEM operand, we must force
3763 it to be valid for 'U' by reloading the address. */
3765 if ((what == 0 && single_zero_operand (operands[2], QImode))
3766 || (what == 1 && single_one_operand (operands[2], QImode)))
3768 /* OK to have a memory dest. */
3769 if (GET_CODE (operands[0]) == MEM
3770 && !EXTRA_CONSTRAINT (operands[0], 'U'))
3772 rtx mem = gen_rtx_MEM (GET_MODE (operands[0]),
3773 copy_to_mode_reg (Pmode,
3774 XEXP (operands[0], 0)));
3775 MEM_COPY_ATTRIBUTES (mem, operands[0]);
3776 operands[0] = mem;
3779 if (GET_CODE (operands[1]) == MEM
3780 && !EXTRA_CONSTRAINT (operands[1], 'U'))
3782 rtx mem = gen_rtx_MEM (GET_MODE (operands[1]),
3783 copy_to_mode_reg (Pmode,
3784 XEXP (operands[1], 0)));
3785 MEM_COPY_ATTRIBUTES (mem, operands[0]);
3786 operands[1] = mem;
3788 return 0;
3791 /* Dest and src op must be register. */
3793 operands[1] = force_reg (QImode, operands[1]);
3795 rtx res = gen_reg_rtx (QImode);
3796 emit_insn (gen_rtx_SET (VOIDmode, res,
3797 gen_rtx (type, QImode, operands[1], operands[2])));
3798 emit_insn (gen_rtx_SET (VOIDmode, operands[0], res));
3800 return 1;
3803 /* Return nonzero if FUNC is an interrupt function as specified
3804 by the "interrupt" attribute. */
3806 static int
3807 h8300_interrupt_function_p (func)
3808 tree func;
3810 tree a;
3812 if (TREE_CODE (func) != FUNCTION_DECL)
3813 return 0;
3815 a = lookup_attribute ("interrupt_handler", DECL_ATTRIBUTES (func));
3816 return a != NULL_TREE;
3819 /* Return nonzero if FUNC is an OS_Task function as specified
3820 by the "OS_Task" attribute. */
3822 static int
3823 h8300_os_task_function_p (func)
3824 tree func;
3826 tree a;
3828 if (TREE_CODE (func) != FUNCTION_DECL)
3829 return 0;
3831 a = lookup_attribute ("OS_Task", DECL_ATTRIBUTES (func));
3832 return a != NULL_TREE;
3835 /* Return nonzero if FUNC is a monitor function as specified
3836 by the "monitor" attribute. */
3838 static int
3839 h8300_monitor_function_p (func)
3840 tree func;
3842 tree a;
3844 if (TREE_CODE (func) != FUNCTION_DECL)
3845 return 0;
3847 a = lookup_attribute ("monitor", DECL_ATTRIBUTES (func));
3848 return a != NULL_TREE;
3851 /* Return nonzero if FUNC is a function that should be called
3852 through the function vector. */
3855 h8300_funcvec_function_p (func)
3856 tree func;
3858 tree a;
3860 if (TREE_CODE (func) != FUNCTION_DECL)
3861 return 0;
3863 a = lookup_attribute ("function_vector", DECL_ATTRIBUTES (func));
3864 return a != NULL_TREE;
3867 /* Return nonzero if DECL is a variable that's in the eight bit
3868 data area. */
3871 h8300_eightbit_data_p (decl)
3872 tree decl;
3874 tree a;
3876 if (TREE_CODE (decl) != VAR_DECL)
3877 return 0;
3879 a = lookup_attribute ("eightbit_data", DECL_ATTRIBUTES (decl));
3880 return a != NULL_TREE;
3883 /* Return nonzero if DECL is a variable that's in the tiny
3884 data area. */
3887 h8300_tiny_data_p (decl)
3888 tree decl;
3890 tree a;
3892 if (TREE_CODE (decl) != VAR_DECL)
3893 return 0;
3895 a = lookup_attribute ("tiny_data", DECL_ATTRIBUTES (decl));
3896 return a != NULL_TREE;
3899 /* Generate an 'interrupt_handler' attribute for decls. */
3901 static void
3902 h8300_insert_attributes (node, attributes)
3903 tree node;
3904 tree *attributes;
3906 if (!pragma_interrupt
3907 || TREE_CODE (node) != FUNCTION_DECL)
3908 return;
3910 pragma_interrupt = 0;
3912 /* Add an 'interrupt_handler' attribute. */
3913 *attributes = tree_cons (get_identifier ("interrupt_handler"),
3914 NULL, *attributes);
3917 /* Supported attributes:
3919 interrupt_handler: output a prologue and epilogue suitable for an
3920 interrupt handler.
3922 function_vector: This function should be called through the
3923 function vector.
3925 eightbit_data: This variable lives in the 8-bit data area and can
3926 be referenced with 8-bit absolute memory addresses.
3928 tiny_data: This variable lives in the tiny data area and can be
3929 referenced with 16-bit absolute memory references. */
3931 const struct attribute_spec h8300_attribute_table[] =
3933 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
3934 { "interrupt_handler", 0, 0, true, false, false, h8300_handle_fndecl_attribute },
3935 { "OS_Task", 0, 0, true, false, false, h8300_handle_fndecl_attribute },
3936 { "monitor", 0, 0, true, false, false, h8300_handle_fndecl_attribute },
3937 { "function_vector", 0, 0, true, false, false, h8300_handle_fndecl_attribute },
3938 { "eightbit_data", 0, 0, true, false, false, h8300_handle_eightbit_data_attribute },
3939 { "tiny_data", 0, 0, true, false, false, h8300_handle_tiny_data_attribute },
3940 { NULL, 0, 0, false, false, false, NULL }
3944 /* Handle an attribute requiring a FUNCTION_DECL; arguments as in
3945 struct attribute_spec.handler. */
3946 static tree
3947 h8300_handle_fndecl_attribute (node, name, args, flags, no_add_attrs)
3948 tree *node;
3949 tree name;
3950 tree args ATTRIBUTE_UNUSED;
3951 int flags ATTRIBUTE_UNUSED;
3952 bool *no_add_attrs;
3954 if (TREE_CODE (*node) != FUNCTION_DECL)
3956 warning ("`%s' attribute only applies to functions",
3957 IDENTIFIER_POINTER (name));
3958 *no_add_attrs = true;
3961 return NULL_TREE;
3964 /* Handle an "eightbit_data" attribute; arguments as in
3965 struct attribute_spec.handler. */
3966 static tree
3967 h8300_handle_eightbit_data_attribute (node, name, args, flags, no_add_attrs)
3968 tree *node;
3969 tree name;
3970 tree args ATTRIBUTE_UNUSED;
3971 int flags ATTRIBUTE_UNUSED;
3972 bool *no_add_attrs;
3974 tree decl = *node;
3976 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3978 DECL_SECTION_NAME (decl) = build_string (7, ".eight");
3980 else
3982 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
3983 *no_add_attrs = true;
3986 return NULL_TREE;
3989 /* Handle an "tiny_data" attribute; arguments as in
3990 struct attribute_spec.handler. */
3991 static tree
3992 h8300_handle_tiny_data_attribute (node, name, args, flags, no_add_attrs)
3993 tree *node;
3994 tree name;
3995 tree args ATTRIBUTE_UNUSED;
3996 int flags ATTRIBUTE_UNUSED;
3997 bool *no_add_attrs;
3999 tree decl = *node;
4001 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
4003 DECL_SECTION_NAME (decl) = build_string (6, ".tiny");
4005 else
4007 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4008 *no_add_attrs = true;
4011 return NULL_TREE;
4014 static void
4015 h8300_encode_label (decl)
4016 tree decl;
4018 const char *str = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4019 const int len = strlen (str);
4020 char *newstr = alloca (len + 2);
4022 newstr[0] = '&';
4023 strcpy (&newstr[1], str);
4025 XSTR (XEXP (DECL_RTL (decl), 0), 0) =
4026 ggc_alloc_string (newstr, len + 1);
4029 /* If we are referencing a function that is supposed to be called
4030 through the function vector, the SYMBOL_REF_FLAG in the rtl
4031 so the call patterns can generate the correct code. */
4033 static void
4034 h8300_encode_section_info (decl, first)
4035 tree decl;
4036 int first;
4038 if (TREE_CODE (decl) == FUNCTION_DECL
4039 && h8300_funcvec_function_p (decl))
4040 SYMBOL_REF_FLAG (XEXP (DECL_RTL (decl), 0)) = 1;
4041 else if (TREE_CODE (decl) == VAR_DECL
4042 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
4044 if (h8300_eightbit_data_p (decl))
4045 SYMBOL_REF_FLAG (XEXP (DECL_RTL (decl), 0)) = 1;
4046 else if (first && h8300_tiny_data_p (decl))
4047 h8300_encode_label (decl);
4051 /* Undo the effects of the above. */
4053 static const char *
4054 h8300_strip_name_encoding (str)
4055 const char *str;
4057 return str + (*str == '*' || *str == '@' || *str == '&');
4060 const char *
4061 output_simode_bld (bild, operands)
4062 int bild;
4063 rtx operands[];
4065 if (TARGET_H8300)
4067 /* Clear the destination register. */
4068 output_asm_insn ("sub.w\t%e0,%e0\n\tsub.w\t%f0,%f0", operands);
4070 /* Now output the bit load or bit inverse load, and store it in
4071 the destination. */
4072 if (bild)
4073 output_asm_insn ("bild\t%Z2,%Y1", operands);
4074 else
4075 output_asm_insn ("bld\t%Z2,%Y1", operands);
4077 output_asm_insn ("bst\t#0,%w0", operands);
4079 else
4081 /* Output the bit load or bit inverse load. */
4082 if (bild)
4083 output_asm_insn ("bild\t%Z2,%Y1", operands);
4084 else
4085 output_asm_insn ("bld\t%Z2,%Y1", operands);
4087 /* Clear the destination register and perform the bit store. */
4088 output_asm_insn ("xor.l\t%S0,%S0\n\tbst\t#0,%w0", operands);
4091 /* All done. */
4092 return "";
4095 /* Given INSN and its current length LENGTH, return the adjustment
4096 (in bytes) to correctly compute INSN's length.
4098 We use this to get the lengths of various memory references correct. */
4101 h8300_adjust_insn_length (insn, length)
4102 rtx insn;
4103 int length ATTRIBUTE_UNUSED;
4105 rtx pat = PATTERN (insn);
4107 /* We must filter these out before calling get_attr_adjust_length. */
4108 if (GET_CODE (pat) == USE
4109 || GET_CODE (pat) == CLOBBER
4110 || GET_CODE (pat) == SEQUENCE
4111 || GET_CODE (pat) == ADDR_VEC
4112 || GET_CODE (pat) == ADDR_DIFF_VEC)
4113 return 0;
4115 if (get_attr_adjust_length (insn) == ADJUST_LENGTH_NO)
4116 return 0;
4118 /* Adjust length for reg->mem and mem->reg copies. */
4119 if (GET_CODE (pat) == SET
4120 && (GET_CODE (SET_SRC (pat)) == MEM
4121 || GET_CODE (SET_DEST (pat)) == MEM))
4123 /* This insn might need a length adjustment. */
4124 rtx addr;
4126 if (GET_CODE (SET_SRC (pat)) == MEM)
4127 addr = XEXP (SET_SRC (pat), 0);
4128 else
4129 addr = XEXP (SET_DEST (pat), 0);
4131 if (TARGET_H8300)
4133 /* On the H8/300, we subtract the difference between the
4134 actual length and the longest one, which is @(d:16,ERs). */
4136 /* @Rs is 2 bytes shorter than the longest. */
4137 if (GET_CODE (addr) == REG)
4138 return -2;
4140 /* @aa:8 is 2 bytes shorter than the longest. */
4141 if (GET_MODE (SET_SRC (pat)) == QImode
4142 && h8300_eightbit_constant_address_p (addr))
4143 return -2;
4145 else
4147 /* On the H8/300H and H8S, we subtract the difference
4148 between the actual length and the longest one, which is
4149 @(d:24,ERs). */
4151 /* @ERs is 6 bytes shorter than the longest. */
4152 if (GET_CODE (addr) == REG)
4153 return -6;
4155 /* @(d:16,ERs) is 6 bytes shorter than the longest. */
4156 if (GET_CODE (addr) == PLUS
4157 && GET_CODE (XEXP (addr, 0)) == REG
4158 && GET_CODE (XEXP (addr, 1)) == CONST_INT
4159 && INTVAL (XEXP (addr, 1)) > -32768
4160 && INTVAL (XEXP (addr, 1)) < 32767)
4161 return -4;
4163 /* @aa:8 is 6 bytes shorter than the longest. */
4164 if (GET_MODE (SET_SRC (pat)) == QImode
4165 && h8300_eightbit_constant_address_p (addr))
4166 return -6;
4168 /* @aa:16 is 4 bytes shorter than the longest. */
4169 if (h8300_tiny_constant_address_p (addr))
4170 return -4;
4172 /* @aa:24 is 2 bytes shorter than the longest. */
4173 if (GET_CODE (addr) == CONST_INT)
4174 return -2;
4178 /* Loading some constants needs adjustment. */
4179 if (GET_CODE (pat) == SET
4180 && GET_CODE (SET_SRC (pat)) == CONST_INT
4181 && GET_MODE (SET_DEST (pat)) == SImode
4182 && INTVAL (SET_SRC (pat)) != 0)
4184 int val = INTVAL (SET_SRC (pat));
4186 if (TARGET_H8300
4187 && ((val & 0xffff) == 0
4188 || ((val >> 16) & 0xffff) == 0))
4189 return -2;
4191 if (TARGET_H8300H || TARGET_H8300S)
4193 if (val == (val & 0xff)
4194 || val == (val & 0xff00))
4195 return 4 - 6;
4197 switch (val & 0xffffffff)
4199 case 0xffffffff:
4200 case 0xfffffffe:
4201 case 0xfffffffc:
4202 case 0x0000ffff:
4203 case 0x0000fffe:
4204 case 0xffff0000:
4205 case 0xfffe0000:
4206 case 0x00010000:
4207 case 0x00020000:
4208 return 4 - 6;
4213 /* Rotations need various adjustments. */
4214 if (GET_CODE (pat) == SET
4215 && (GET_CODE (SET_SRC (pat)) == ROTATE
4216 || GET_CODE (SET_SRC (pat)) == ROTATERT))
4218 rtx src = SET_SRC (pat);
4219 enum machine_mode mode = GET_MODE (src);
4220 int amount;
4221 int states = 0;
4223 if (GET_CODE (XEXP (src, 1)) != CONST_INT)
4224 return 0;
4226 amount = INTVAL (XEXP (src, 1));
4228 /* Clean up AMOUNT. */
4229 if (amount < 0)
4230 amount = 0;
4231 if ((unsigned int) amount > GET_MODE_BITSIZE (mode))
4232 amount = GET_MODE_BITSIZE (mode);
4234 /* Determine the faster direction. After this phase, amount
4235 will be at most a half of GET_MODE_BITSIZE (mode). */
4236 if ((unsigned int) amount > GET_MODE_BITSIZE (mode) / (unsigned) 2)
4237 /* Flip the direction. */
4238 amount = GET_MODE_BITSIZE (mode) - amount;
4240 /* See if a byte swap (in HImode) or a word swap (in SImode) can
4241 boost up the rotation. */
4242 if ((mode == HImode && TARGET_H8300 && amount >= 5)
4243 || (mode == HImode && TARGET_H8300H && amount >= 6)
4244 || (mode == HImode && TARGET_H8300S && amount == 8)
4245 || (mode == SImode && TARGET_H8300H && amount >= 10)
4246 || (mode == SImode && TARGET_H8300S && amount >= 13))
4248 /* Adjust AMOUNT and flip the direction. */
4249 amount = GET_MODE_BITSIZE (mode) / 2 - amount;
4250 states += 6;
4253 /* We use 2-bit rotations on the H8S. */
4254 if (TARGET_H8300S)
4255 amount = amount / 2 + amount % 2;
4257 /* The H8/300 uses three insns to rotate one bit, taking 6
4258 states. */
4259 states += amount * ((TARGET_H8300 && mode == HImode) ? 6 : 2);
4261 return -(20 - states);
4264 return 0;
4267 #ifndef OBJECT_FORMAT_ELF
4268 static void
4269 h8300_asm_named_section (name, flags)
4270 const char *name;
4271 unsigned int flags ATTRIBUTE_UNUSED;
4273 /* ??? Perhaps we should be using default_coff_asm_named_section. */
4274 fprintf (asm_out_file, "\t.section %s\n", name);
4276 #endif /* ! OBJECT_FORMAT_ELF */
4278 /* Nonzero if X is a constant address suitable as an 8-bit absolute,
4279 which is a special case of the 'R' operand. */
4282 h8300_eightbit_constant_address_p (x)
4283 rtx x;
4285 /* The ranges of the 8-bit area. */
4286 const unsigned HOST_WIDE_INT n1 = trunc_int_for_mode (0xff00, HImode);
4287 const unsigned HOST_WIDE_INT n2 = trunc_int_for_mode (0xffff, HImode);
4288 const unsigned HOST_WIDE_INT h1 = trunc_int_for_mode (0x00ffff00, SImode);
4289 const unsigned HOST_WIDE_INT h2 = trunc_int_for_mode (0x00ffffff, SImode);
4290 const unsigned HOST_WIDE_INT s1 = trunc_int_for_mode (0xffffff00, SImode);
4291 const unsigned HOST_WIDE_INT s2 = trunc_int_for_mode (0xffffffff, SImode);
4293 unsigned HOST_WIDE_INT addr;
4295 /* We accept symbols declared with eightbit_data. */
4296 if (GET_CODE (x) == SYMBOL_REF && SYMBOL_REF_FLAG (x))
4297 return 1;
4299 if (GET_CODE (x) != CONST_INT)
4300 return 0;
4302 addr = INTVAL (x);
4304 return (0
4305 || ((TARGET_H8300 || TARGET_NORMAL_MODE) && IN_RANGE (addr, n1, n2))
4306 || (TARGET_H8300H && IN_RANGE (addr, h1, h2))
4307 || (TARGET_H8300S && IN_RANGE (addr, s1, s2)));
4310 /* Nonzero if X is a constant address suitable as an 16-bit absolute
4311 on H8/300H and H8S. */
4314 h8300_tiny_constant_address_p (x)
4315 rtx x;
4317 /* The ranges of the 16-bit area. */
4318 const unsigned HOST_WIDE_INT h1 = trunc_int_for_mode (0x00000000, SImode);
4319 const unsigned HOST_WIDE_INT h2 = trunc_int_for_mode (0x00007fff, SImode);
4320 const unsigned HOST_WIDE_INT h3 = trunc_int_for_mode (0x00ff8000, SImode);
4321 const unsigned HOST_WIDE_INT h4 = trunc_int_for_mode (0x00ffffff, SImode);
4322 const unsigned HOST_WIDE_INT s1 = trunc_int_for_mode (0x00000000, SImode);
4323 const unsigned HOST_WIDE_INT s2 = trunc_int_for_mode (0x00007fff, SImode);
4324 const unsigned HOST_WIDE_INT s3 = trunc_int_for_mode (0xffff8000, SImode);
4325 const unsigned HOST_WIDE_INT s4 = trunc_int_for_mode (0xffffffff, SImode);
4327 unsigned HOST_WIDE_INT addr;
4329 /* We accept symbols declared with tiny_data. */
4330 if (GET_CODE (x) == SYMBOL_REF && TINY_DATA_NAME_P (XSTR (x, 0)))
4331 return 1;
4333 if (GET_CODE (x) != CONST_INT)
4334 return 0;
4336 addr = INTVAL (x);
4338 return (0
4339 || ((TARGET_H8300H && !TARGET_NORMAL_MODE)
4340 && (IN_RANGE (addr, h1, h2) || IN_RANGE (addr, h3, h4)))
4341 || ((TARGET_H8300S && !TARGET_NORMAL_MODE)
4342 && (IN_RANGE (addr, s1, s2) || IN_RANGE (addr, s3, s4))));