Implement ASM_DECLARE_FUNCTION_NAME using ASM_OUTPUT_FUNCTION_LABEL
[official-gcc.git] / gcc / config / h8300 / h8300.h
blobbb0bf7404e0f6722194f9cb66abc9f131411da4d
1 /* Definitions of target machine for GNU compiler.
2 Renesas H8/300 (generic)
3 Copyright (C) 1992-2024 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 GCC.
9 GCC 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 3, or (at your option)
12 any later version.
14 GCC 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 GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #ifndef GCC_H8300_H
24 #define GCC_H8300_H
26 extern int cpu_type;
28 /* Various globals defined in h8300.cc. */
30 extern const char *h8_push_op, *h8_pop_op, *h8_mov_op;
31 extern const char * const *h8_reg_names;
33 /* Target CPU builtins. */
34 #define TARGET_CPU_CPP_BUILTINS() \
35 do \
36 { \
37 if (TARGET_H8300SX) \
38 { \
39 builtin_define ("__H8300SX__"); \
40 if (TARGET_NORMAL_MODE) \
41 { \
42 builtin_define ("__NORMAL_MODE__"); \
43 } \
44 } \
45 else if (TARGET_H8300S) \
46 { \
47 builtin_define ("__H8300S__"); \
48 builtin_assert ("cpu=h8300s"); \
49 builtin_assert ("machine=h8300s"); \
50 if (TARGET_NORMAL_MODE) \
51 { \
52 builtin_define ("__NORMAL_MODE__"); \
53 } \
54 } \
55 else \
56 { \
57 builtin_define ("__H8300H__"); \
58 builtin_assert ("cpu=h8300h"); \
59 builtin_assert ("machine=h8300h"); \
60 if (TARGET_NORMAL_MODE) \
61 { \
62 builtin_define ("__NORMAL_MODE__"); \
63 } \
64 } \
65 } \
66 while (0)
68 #define LIB_SPEC "%{mrelax:-relax} %{g:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
70 /* Macros used in the machine description to test the flags. */
72 /* Select between the H8/300 and H8/300H CPUs. */
73 #define TARGET_H8300S (TARGET_H8300S_1 || TARGET_H8300SX)
74 /* Some multiply instructions are not available in all H8SX variants.
75 Use this macro instead of TARGET_H8300SX to indicate this, even
76 though we don't actually generate different code for now. */
77 #define TARGET_H8300SXMUL TARGET_H8300SX
79 #ifdef IN_LIBGCC2
80 #undef TARGET_H8300H
81 #undef TARGET_H8300S
82 #undef TARGET_NORMAL_MODE
83 /* If compiling libgcc2, make these compile time constants based on what
84 flags are we actually compiling with. */
85 #ifdef __H8300H__
86 #define TARGET_H8300H 1
87 #else
88 #define TARGET_H8300H 0
89 #endif
90 #ifdef __H8300S__
91 #define TARGET_H8300S 1
92 #else
93 #define TARGET_H8300S 0
94 #endif
95 #ifdef __NORMAL_MODE__
96 #define TARGET_NORMAL_MODE 1
97 #else
98 #define TARGET_NORMAL_MODE 0
99 #endif
100 #endif /* !IN_LIBGCC2 */
102 /* Default target_flags if no switches specified. */
104 #ifndef TARGET_DEFAULT
105 #define TARGET_DEFAULT (MASK_H8300H | MASK_QUICKCALL)
106 #endif
108 /* We want dwarf2 info available to gdb. */
109 #define DWARF2_DEBUGGING_INFO 1
111 /* The return address is pushed on the stack. */
112 #define INCOMING_RETURN_ADDR_RTX gen_rtx_MEM (Pmode, gen_rtx_REG (Pmode, STACK_POINTER_REGNUM))
113 #define INCOMING_FRAME_SP_OFFSET (POINTER_SIZE / 8)
115 #define DWARF_CIE_DATA_ALIGNMENT 2
117 /* Define this if addresses of constant functions
118 shouldn't be put through pseudo regs where they can be cse'd.
119 Desirable on machines where ordinary constants are expensive
120 but a CALL with constant address is cheap.
122 Calls through a register are cheaper than calls to named
123 functions; however, the register pressure this causes makes
124 CSEing of function addresses generally a lose. */
125 #define NO_FUNCTION_CSE 1
127 /* Target machine storage layout */
129 /* Define this if most significant bit is lowest numbered
130 in instructions that operate on numbered bit-fields.
131 This is not true on the H8/300. */
132 #define BITS_BIG_ENDIAN 0
134 /* Define this if most significant byte of a word is the lowest numbered. */
135 /* That is true on the H8/300. */
136 #define BYTES_BIG_ENDIAN 1
138 /* Define this if most significant word of a multiword number is lowest
139 numbered. */
140 #define WORDS_BIG_ENDIAN 1
142 #define MAX_BITS_PER_WORD 32
144 /* Width of a word, in units (bytes). */
145 #define UNITS_PER_WORD 4
146 #define MIN_UNITS_PER_WORD 2
148 #define SHORT_TYPE_SIZE 16
149 #define INT_TYPE_SIZE (TARGET_INT32 ? 32 : 16)
150 #define LONG_TYPE_SIZE 32
151 #define LONG_LONG_TYPE_SIZE 64
152 #define FLOAT_TYPE_SIZE 32
153 #define DOUBLE_TYPE_SIZE 32
154 #define LONG_DOUBLE_TYPE_SIZE DOUBLE_TYPE_SIZE
156 #define MAX_FIXED_MODE_SIZE 32
158 /* Allocation boundary (in *bits*) for storing arguments in argument list. */
159 #define PARM_BOUNDARY 32
161 /* Allocation boundary (in *bits*) for the code of a function. */
162 #define FUNCTION_BOUNDARY 16
164 /* Alignment of field after `int : 0' in a structure. */
165 /* One can argue this should be 32 for -mint32, but since 32-bit ints only
166 need 16-bit alignment, this is left as is so that -mint32 doesn't change
167 structure layouts. */
168 #define EMPTY_FIELD_BOUNDARY 16
170 /* No data type wants to be aligned rounder than this.
171 32-bit values are aligned as such on the H8/300H and H8S for speed. */
172 #define BIGGEST_ALIGNMENT \
173 ((! TARGET_ALIGN_300) ? 32 : 16)
175 /* The stack goes in 32 bit lumps. */
176 #define STACK_BOUNDARY 32
178 /* Define this if move instructions will actually fail to work
179 when given unaligned data. */
180 /* On the H8/300, longs can be aligned on halfword boundaries, but not
181 byte boundaries. */
182 #define STRICT_ALIGNMENT 1
184 /* Standard register usage. */
186 /* Number of actual hardware registers.
187 The hardware registers are assigned numbers for the compiler
188 from 0 to just below FIRST_PSEUDO_REGISTER.
190 All registers that the compiler knows about must be given numbers,
191 even those that are not normally considered general registers.
193 Reg 9 does not correspond to any hardware register, but instead
194 appears in the RTL as an argument pointer prior to reload, and is
195 eliminated during reloading in favor of either the stack or frame
196 pointer. */
198 #define FIRST_PSEUDO_REGISTER 13
200 /* 1 for registers that have pervasive standard uses
201 and are not available for the register allocator. */
203 #define FIXED_REGISTERS \
204 /* r0 r1 r2 r3 r4 r5 r6 r7 mac ap rap fp cc */ \
205 { 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1 }
207 /* 1 for registers not available across function calls.
208 These must include the FIXED_REGISTERS and also any
209 registers that can be used without being saved.
210 The latter must include the registers where values are returned
211 and the register where structure-value addresses are passed.
212 Aside from that, you can include as many other registers as you
213 like.
215 H8 destroys r0,r1,r2,r3. */
217 #define CALL_USED_REGISTERS \
218 /* r0 r1 r2 r3 r4 r5 r6 r7 mac ap rap fp */ \
219 { 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1 }
221 #define REG_ALLOC_ORDER \
222 /* r0 r1 r2 r3 r4 r5 r6 r7 mac ap rap fp */ \
223 { 2, 3, 0, 1, 4, 5, 6, 8, 7, 9, 10, 11, 12 }
225 /* A C expression that is nonzero if hard register NEW_REG can be
226 considered for use as a rename register for OLD_REG register */
228 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
229 h8300_hard_regno_rename_ok (OLD_REG, NEW_REG)
231 /* Specify the registers used for certain standard purposes.
232 The values of these macros are register numbers. */
234 /* H8/300 pc is not overloaded on a register. */
236 /*#define PC_REGNUM 15*/
238 /* Register to use for pushing function arguments. */
239 #define STACK_POINTER_REGNUM SP_REG
241 /* Base register for access to local variables of the function. */
242 #define HARD_FRAME_POINTER_REGNUM HFP_REG
244 /* Base register for access to local variables of the function. */
245 #define FRAME_POINTER_REGNUM FP_REG
247 /* Base register for access to arguments of the function. */
248 #define ARG_POINTER_REGNUM AP_REG
250 /* Register in which static-chain is passed to a function. */
251 #define STATIC_CHAIN_REGNUM SC_REG
253 /* Fake register that holds the address on the stack of the
254 current function's return address. */
255 #define RETURN_ADDRESS_POINTER_REGNUM RAP_REG
257 /* A C expression whose value is RTL representing the value of the return
258 address for the frame COUNT steps up from the current frame.
259 FRAMEADDR is already the frame pointer of the COUNT frame, assuming
260 a stack layout with the frame pointer as the first saved register. */
261 #define RETURN_ADDR_RTX(COUNT, FRAME) h8300_return_addr_rtx ((COUNT), (FRAME))
263 /* Define the classes of registers for register constraints in the
264 machine description. Also define ranges of constants.
266 One of the classes must always be named ALL_REGS and include all hard regs.
267 If there is more than one class, another class must be named NO_REGS
268 and contain no registers.
270 The name GENERAL_REGS must be the name of a class (or an alias for
271 another name such as ALL_REGS). This is the class of registers
272 that is allowed by "g" or "r" in a register constraint.
273 Also, registers outside this class are allocated only when
274 instructions express preferences for them.
276 The classes must be numbered in nondecreasing order; that is,
277 a larger-numbered class must never be contained completely
278 in a smaller-numbered class.
280 For any two classes, it is very desirable that there be another
281 class that represents their union. */
283 enum reg_class {
284 NO_REGS, COUNTER_REGS, SOURCE_REGS, DESTINATION_REGS,
285 NOT_R0_REGS, NOT_R1_REGS, NOT_R2_REGS, NOT_R3_REGS,
286 NOT_R4_REGS, NOT_R5_REGS, NOT_R6_REGS, NOT_SP_REGS,
287 GENERAL_REGS, MAC_REGS, ALL_REGS, LIM_REG_CLASSES
290 #define N_REG_CLASSES ((int) LIM_REG_CLASSES)
292 /* Give names of register classes as strings for dump file. */
294 #define REG_CLASS_NAMES \
295 { "NO_REGS", "COUNTER_REGS", "SOURCE_REGS", "DESTINATION_REGS", \
296 "NOT_R0_REGS", "NOT_R1_REGS", "NOT_R2_REGS", "NOT_R3_REGS", \
297 "NOT_R4_REGS", "NOT_R5_REGS", "NOT_R6_REGS", "NOT_SP_REGS", \
298 "GENERAL_REGS", "MAC_REGS", "ALL_REGS", "LIM_REGS" }
300 /* Define which registers fit in which classes.
301 This is an initializer for a vector of HARD_REG_SET
302 of length N_REG_CLASSES. */
304 #define REG_CLASS_CONTENTS \
305 { {0}, /* No regs */ \
306 {0x010}, /* COUNTER_REGS */ \
307 {0x020}, /* SOURCE_REGS */ \
308 {0x040}, /* DESTINATION_REGS */ \
309 {0x0fe}, /* NOT_R0_REGS */ \
310 {0x0fd}, /* NOT_R1_REGS */ \
311 {0x0fb}, /* NOT_R2_REGS */ \
312 {0x0f7}, /* NOT_R3_REGS */ \
313 {0x0ef}, /* NOT_R4_REGS */ \
314 {0x0df}, /* NOT_R5_REGS */ \
315 {0x0bf}, /* NOT_R6_REGS */ \
316 {0x07f}, /* NOT_SP_REGS */ \
317 {0xeff}, /* GENERAL_REGS */ \
318 {0x100}, /* MAC_REGS */ \
319 {0xfff}, /* ALL_REGS */ \
322 /* The same information, inverted:
323 Return the class number of the smallest class containing
324 reg number REGNO. This could be a conditional expression
325 or could index an array. */
327 #define REGNO_REG_CLASS(REGNO) \
328 ((REGNO) == MAC_REG ? MAC_REGS \
329 : (REGNO) == COUNTER_REG ? COUNTER_REGS \
330 : (REGNO) == SOURCE_REG ? SOURCE_REGS \
331 : (REGNO) == DESTINATION_REG ? DESTINATION_REGS \
332 : GENERAL_REGS)
334 /* The class value for index registers, and the one for base regs. */
336 #define INDEX_REG_CLASS (TARGET_H8300SX ? GENERAL_REGS : NO_REGS)
337 #define BASE_REG_CLASS GENERAL_REGS
339 /* Stack layout; function entry, exit and calling. */
341 /* Define this if pushing a word on the stack
342 makes the stack pointer a smaller address. */
344 #define STACK_GROWS_DOWNWARD 1
346 /* Define this to nonzero if the nominal address of the stack frame
347 is at the high-address end of the local variables;
348 that is, each additional local variable allocated
349 goes at a more negative offset in the frame. */
351 #define FRAME_GROWS_DOWNWARD 1
353 #define PUSH_ROUNDING(BYTES) h8300_push_rounding (BYTES)
355 /* Offset of first parameter from the argument pointer register value. */
356 /* Is equal to the size of the saved fp + pc, even if an fp isn't
357 saved since the value is used before we know. */
359 #define FIRST_PARM_OFFSET(FNDECL) 0
361 /* Definitions for register eliminations.
363 This is an array of structures. Each structure initializes one pair
364 of eliminable registers. The "from" register number is given first,
365 followed by "to". Eliminations of the same "from" register are listed
366 in order of preference.
368 We have three registers that can be eliminated on the h8300.
369 First, the frame pointer register can often be eliminated in favor
370 of the stack pointer register. Secondly, the argument pointer
371 register and the return address pointer register are always
372 eliminated; they are replaced with either the stack or frame
373 pointer. */
375 #define ELIMINABLE_REGS \
376 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
377 { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \
378 { RETURN_ADDRESS_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
379 { RETURN_ADDRESS_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \
380 { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
381 { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}}
383 /* Define the offset between two registers, one to be eliminated, and the other
384 its replacement, at the start of a routine. */
386 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
387 ((OFFSET) = h8300_initial_elimination_offset ((FROM), (TO)))
389 /* Define this if PCC uses the nonreentrant convention for returning
390 structure and union values. */
392 /*#define PCC_STATIC_STRUCT_RETURN*/
394 /* 1 if N is a possible register number for function argument passing.
395 On the H8, no registers are used in this way. */
397 #define FUNCTION_ARG_REGNO_P(N) (TARGET_QUICKCALL ? N < 3 : 0)
399 /* When this hook returns true for MODE, the compiler allows
400 registers explicitly used in the rtl to be used as spill registers
401 but prevents the compiler from extending the lifetime of these
402 registers. */
403 #define TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P hook_bool_mode_true
405 /* Define a data type for recording info about an argument list
406 during the scan of that argument list. This data type should
407 hold all necessary information about the function itself
408 and about the args processed so far, enough to enable macros
409 such as FUNCTION_ARG to determine where the next arg should go.
411 On the H8/300, this is a two item struct, the first is the number
412 of bytes scanned so far and the second is the rtx of the called
413 library function if any. */
415 #define CUMULATIVE_ARGS struct cum_arg
416 struct cum_arg
418 int nbytes;
419 rtx libcall;
422 /* Initialize a variable CUM of type CUMULATIVE_ARGS
423 for a call to a function whose data type is FNTYPE.
424 For a library call, FNTYPE is 0.
426 On the H8/300, the offset starts at 0. */
428 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
429 ((CUM).nbytes = 0, (CUM).libcall = LIBNAME)
431 /* Output assembler code to FILE to increment profiler label # LABELNO
432 for profiling a function entry. */
434 #define FUNCTION_PROFILER(FILE, LABELNO) \
435 fprintf (FILE, "\t%s\t#.LP%d,%s\n\tjsr @mcount\n", \
436 h8_mov_op, (LABELNO), h8_reg_names[0]);
438 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
439 the stack pointer does not matter. The value is tested only in
440 functions that have frame pointers.
441 No definition is equivalent to always zero. */
443 #define EXIT_IGNORE_STACK 0
445 /* Length in units of the trampoline for entering a nested function. */
447 #define TRAMPOLINE_SIZE ((Pmode == HImode) ? 8 : 12)
449 /* Addressing modes, and classification of registers for them. */
451 #define HAVE_POST_INCREMENT 1
452 #define HAVE_PRE_DECREMENT 1
453 #define HAVE_POST_DECREMENT TARGET_H8300SX
454 #define HAVE_PRE_INCREMENT TARGET_H8300SX
456 /* Macros to check register numbers against specific register classes. */
458 /* These assume that REGNO is a hard or pseudo reg number.
459 They give nonzero only if REGNO is a hard reg of the suitable class
460 or a pseudo reg currently allocated to a suitable hard reg.
461 Since they use reg_renumber, they are safe only once reg_renumber
462 has been allocated, which happens in reginfo.cc during register
463 allocation. */
465 #define REGNO_OK_FOR_INDEX_P(regno) 0
467 #define REGNO_OK_FOR_BASE_P(regno) \
468 (((regno) < FIRST_PSEUDO_REGISTER && regno != MAC_REG) \
469 || reg_renumber[regno] >= 0)
471 /* Maximum number of registers that can appear in a valid memory address. */
473 #define MAX_REGS_PER_ADDRESS 1
475 /* 1 if X is an rtx for a constant that is a valid address. */
477 #define CONSTANT_ADDRESS_P(X) \
478 (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF \
479 || (GET_CODE (X) == CONST_INT \
480 /* We handle signed and unsigned offsets here. */ \
481 && INTVAL (X) > -0x1000000 \
482 && INTVAL (X) < 0x1000000) \
483 || (GET_CODE (X) == HIGH || GET_CODE (X) == CONST))
485 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
486 and check its validity for a certain class.
487 We have two alternate definitions for each of them.
488 The usual definition accepts all pseudo regs; the other rejects
489 them unless they have been allocated suitable hard regs.
490 The symbol REG_OK_STRICT causes the latter definition to be used.
492 Most source files want to accept pseudo regs in the hope that
493 they will get allocated to the class that the insn wants them to be in.
494 Source files for reload pass need to be strict.
495 After reload, it makes no difference, since pseudo regs have
496 been eliminated by then. */
498 /* Non-strict versions. */
499 #define REG_OK_FOR_INDEX_NONSTRICT_P(X) 0
500 /* Don't use REGNO_OK_FOR_BASE_P here because it uses reg_renumber. */
501 #define REG_OK_FOR_BASE_NONSTRICT_P(X) \
502 (REGNO (X) >= FIRST_PSEUDO_REGISTER || REGNO (X) != MAC_REG)
504 /* Strict versions. */
505 #define REG_OK_FOR_INDEX_STRICT_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
506 #define REG_OK_FOR_BASE_STRICT_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
508 #ifndef REG_OK_STRICT
510 #define REG_OK_FOR_INDEX_P(X) REG_OK_FOR_INDEX_NONSTRICT_P (X)
511 #define REG_OK_FOR_BASE_P(X) REG_OK_FOR_BASE_NONSTRICT_P (X)
513 #else
515 #define REG_OK_FOR_INDEX_P(X) REG_OK_FOR_INDEX_STRICT_P (X)
516 #define REG_OK_FOR_BASE_P(X) REG_OK_FOR_BASE_STRICT_P (X)
518 #endif
521 /* Specify the machine mode that this machine uses
522 for the index in the tablejump instruction. */
523 #define CASE_VECTOR_MODE Pmode
525 /* Define this as 1 if `char' should by default be signed; else as 0.
527 On the H8/300, sign extension is expensive, so we'll say that chars
528 are unsigned. */
529 #define DEFAULT_SIGNED_CHAR 0
531 /* Max number of bytes we can move from memory to memory
532 in one reasonably fast instruction. */
533 #define MOVE_MAX 4
534 #define MAX_MOVE_MAX 4
536 #define SELECT_CC_MODE(OP, X, Y) h8300_select_cc_mode (OP, X, Y)
538 /* Nonzero if access to memory by bytes is slow and undesirable. */
539 #define SLOW_BYTE_ACCESS TARGET_SLOWBYTE
541 /* Define if shifts truncate the shift count
542 which implies one can omit a sign-extension or zero-extension
543 of a shift count. */
544 /* #define SHIFT_COUNT_TRUNCATED */
546 /* Specify the machine mode that pointers have.
547 After generation of rtl, the compiler makes no further distinction
548 between pointers and any other objects of this machine mode. */
549 #define Pmode \
550 (!TARGET_NORMAL_MODE ? SImode : HImode)
552 /* ANSI C types.
553 We use longs for the H8/300H and the H8S because ints can be 16 or 32.
554 GCC requires SIZE_TYPE to be the same size as pointers. */
555 #define SIZE_TYPE \
556 (TARGET_NORMAL_MODE ? TARGET_INT32 ? "short unsigned int" : "unsigned int" : "long unsigned int")
557 #define PTRDIFF_TYPE \
558 (TARGET_NORMAL_MODE ? TARGET_INT32 ? "short int" : "int" : "long int")
560 #define POINTER_SIZE \
561 (!TARGET_NORMAL_MODE ? 32 : 16)
563 #define WCHAR_TYPE "short unsigned int"
564 #define WCHAR_TYPE_SIZE 16
566 /* A function address in a call instruction
567 is a byte address (for indexing purposes)
568 so give the MEM rtx a byte's mode. */
569 #define FUNCTION_MODE QImode
571 /* Return the length of JUMP's delay slot insn (0 if it has none).
572 If JUMP is a delayed branch, NEXT_INSN (PREV_INSN (JUMP)) will
573 be the containing SEQUENCE, not JUMP itself. */
574 #define DELAY_SLOT_LENGTH(JUMP) \
575 (NEXT_INSN (PREV_INSN (JUMP)) == JUMP ? 0 : 2)
577 #define BRANCH_COST(speed_p, predictable_p) 0
579 /* Tell final.cc how to eliminate redundant test instructions. */
581 /* Here we define machine-dependent flags and fields in cc_status
582 (see `conditions.h'). No extra ones are needed for the h8300. */
584 /* The add insns don't set overflow in a usable way. */
585 #define CC_OVERFLOW_UNUSABLE 01000
586 /* The mov,and,or,xor insns don't set carry. That's OK though as the
587 Z bit is all we need when doing unsigned comparisons on the result of
588 these insns (since they're always with 0). However, conditions.h has
589 CC_NO_OVERFLOW defined for this purpose. Rename it to something more
590 understandable. */
591 #define CC_NO_CARRY CC_NO_OVERFLOW
593 /* Control the assembler format that we output. */
595 /* Output to assembler file text saying following lines
596 may contain character constants, extra white space, comments, etc. */
598 #define ASM_APP_ON "; #APP\n"
600 /* Output to assembler file text saying following lines
601 no longer contain unusual constructs. */
603 #define ASM_APP_OFF "; #NO_APP\n"
605 #define FILE_ASM_OP "\t.file\n"
607 /* The assembler op to get a word, 2 bytes for the H8/300, 4 for H8/300H. */
608 #define ASM_WORD_OP \
609 (TARGET_NORMAL_MODE ? "\t.word\t" : "\t.long\t")
611 #define TEXT_SECTION_ASM_OP "\t.section .text"
612 #define DATA_SECTION_ASM_OP "\t.section .data"
613 #define BSS_SECTION_ASM_OP "\t.section .bss"
615 #undef DO_GLOBAL_CTORS_BODY
616 #define DO_GLOBAL_CTORS_BODY \
618 extern func_ptr __ctors[]; \
619 extern func_ptr __ctors_end[]; \
620 func_ptr *p; \
621 for (p = __ctors_end; p > __ctors; ) \
623 (*--p)(); \
627 #undef DO_GLOBAL_DTORS_BODY
628 #define DO_GLOBAL_DTORS_BODY \
630 extern func_ptr __dtors[]; \
631 extern func_ptr __dtors_end[]; \
632 func_ptr *p; \
633 for (p = __dtors; p < __dtors_end; p++) \
635 (*p)(); \
639 /* How to refer to registers in assembler output.
640 This sequence is indexed by compiler's hard-register-number (see above). */
642 #define REGISTER_NAMES \
643 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "sp", "mac", "ap", "rap", "fp", "cc" }
645 #define ADDITIONAL_REGISTER_NAMES \
646 { {"er0", 0}, {"er1", 1}, {"er2", 2}, {"er3", 3}, {"er4", 4}, \
647 {"er5", 5}, {"er6", 6}, {"er7", 7}, {"r7", 7} }
649 /* Globalizing directive for a label. */
650 #define GLOBAL_ASM_OP "\t.global "
652 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
653 ASM_OUTPUT_FUNCTION_LABEL (FILE, NAME, DECL)
655 /* This is how to store into the string LABEL
656 the symbol_ref name of an internal numbered label where
657 PREFIX is the class of label and NUM is the number within the class.
658 This is suitable for output with `assemble_name'.
660 N.B.: The h8300.md branch_true and branch_false patterns also know
661 how to generate internal labels. */
662 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
663 sprintf (LABEL, "*.%s%lu", PREFIX, (unsigned long)(NUM))
665 /* This is how to output an insn to push a register on the stack.
666 It need not be very fast code. */
668 #define ASM_OUTPUT_REG_PUSH(FILE, REGNO) \
669 fprintf (FILE, "\t%s\t%s\n", h8_push_op, h8_reg_names[REGNO])
671 /* This is how to output an insn to pop a register from the stack.
672 It need not be very fast code. */
674 #define ASM_OUTPUT_REG_POP(FILE, REGNO) \
675 fprintf (FILE, "\t%s\t%s\n", h8_pop_op, h8_reg_names[REGNO])
677 /* This is how to output an element of a case-vector that is absolute. */
679 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
680 fprintf (FILE, "%s.L%d\n", ASM_WORD_OP, VALUE)
682 /* This is how to output an element of a case-vector that is relative. */
684 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
685 fprintf (FILE, "%s.L%d-.L%d\n", ASM_WORD_OP, VALUE, REL)
687 /* This is how to output an assembler line
688 that says to advance the location counter
689 to a multiple of 2**LOG bytes. */
691 #define ASM_OUTPUT_ALIGN(FILE, LOG) \
692 if ((LOG) != 0) \
693 fprintf (FILE, "\t.align %d\n", (LOG))
695 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
696 fprintf (FILE, "\t.space %d\n", (int)(SIZE))
698 /* This says how to output an assembler line
699 to define a global common symbol. */
701 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
702 ( fputs ("\t.comm ", (FILE)), \
703 assemble_name ((FILE), (NAME)), \
704 fprintf ((FILE), ",%lu\n", (unsigned long)(SIZE)))
706 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
707 asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
709 /* This says how to output an assembler line
710 to define a local common symbol. */
712 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
713 ( fputs ("\t.lcomm ", (FILE)), \
714 assemble_name ((FILE), (NAME)), \
715 fprintf ((FILE), ",%d\n", (int)(SIZE)))
717 #define ASM_PN_FORMAT "%s___%lu"
719 /* H8300 specific pragmas. */
720 #define REGISTER_TARGET_PRAGMAS() \
721 do \
723 c_register_pragma (0, "saveall", h8300_pr_saveall); \
724 c_register_pragma (0, "interrupt", h8300_pr_interrupt); \
726 while (0)
728 #define FINAL_PRESCAN_INSN(insn, operand, nop) \
729 final_prescan_insn (insn, operand, nop)
731 extern int h8300_move_ratio;
732 #define MOVE_RATIO(speed) h8300_move_ratio
734 /* Machine-specific symbol_ref flags. */
735 #define SYMBOL_FLAG_FUNCVEC_FUNCTION (SYMBOL_FLAG_MACH_DEP << 0)
736 #define SYMBOL_FLAG_EIGHTBIT_DATA (SYMBOL_FLAG_MACH_DEP << 1)
737 #define SYMBOL_FLAG_TINY_DATA (SYMBOL_FLAG_MACH_DEP << 2)
739 #endif /* ! GCC_H8300_H */