]> gcc.gnu.org Git - gcc.git/blob - gcc/config/rx/rx.h
[multiple changes]
[gcc.git] / gcc / config / rx / rx.h
1 /* GCC backend definitions for the Renesas RX processor.
2 Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
3 Contributed by Red Hat.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 3, or (at your
10 option) any later version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20 \f
21
22 #define TARGET_CPU_CPP_BUILTINS() \
23 do \
24 { \
25 builtin_define ("__RX__"); \
26 builtin_assert ("cpu=RX"); \
27 if (rx_cpu_type == RX610) \
28 { \
29 builtin_define ("__RX610__"); \
30 builtin_assert ("machine=RX610"); \
31 } \
32 else \
33 builtin_assert ("machine=RX600"); \
34 \
35 if (TARGET_BIG_ENDIAN_DATA) \
36 builtin_define ("__RX_BIG_ENDIAN__"); \
37 else \
38 builtin_define ("__RX_LITTLE_ENDIAN__");\
39 \
40 if (TARGET_64BIT_DOUBLES) \
41 builtin_define ("__RX_64BIT_DOUBLES__");\
42 else \
43 builtin_define ("__RX_32BIT_DOUBLES__");\
44 \
45 if (ALLOW_RX_FPU_INSNS) \
46 builtin_define ("__RX_FPU_INSNS__"); \
47 \
48 if (TARGET_AS100_SYNTAX) \
49 builtin_define ("__RX_AS100_SYNTAX__"); \
50 else \
51 builtin_define ("__RX_GAS_SYNTAX__"); \
52 } \
53 while (0)
54
55 enum rx_cpu_types
56 {
57 RX600,
58 RX610,
59 RX200
60 };
61
62 extern enum rx_cpu_types rx_cpu_type;
63
64 #undef CC1_SPEC
65 #define CC1_SPEC "\
66 %{mas100-syntax:%{gdwarf*:%e-mas100-syntax is incompatible with -gdwarf}} \
67 %{mcpu=rx200:%{fpu:%erx200 cpu does not have FPU hardware}}"
68
69 #undef STARTFILE_SPEC
70 #define STARTFILE_SPEC "%{pg:gcrt0.o%s}%{!pg:crt0.o%s} crtbegin.o%s"
71
72 #undef ENDFILE_SPEC
73 #define ENDFILE_SPEC "crtend.o%s crtn.o%s"
74
75 #undef ASM_SPEC
76 #define ASM_SPEC "\
77 %{mbig-endian-data:-mbig-endian-data} \
78 %{m64bit-doubles:-m64bit-doubles} \
79 %{!m64bit-doubles:-m32bit-doubles} \
80 %{msmall-data-limit*:-msmall-data-limit} \
81 %{mrelax:-relax} \
82 "
83
84 #undef LIB_SPEC
85 #define LIB_SPEC " \
86 --start-group \
87 -lc \
88 %{msim:-lsim}%{!msim:-lnosys} \
89 %{fprofile-arcs|fprofile-generate|coverage:-lgcov} \
90 --end-group \
91 %{!T*: %{msim:%Trx-sim.ld}%{!msim:%Trx.ld}} \
92 "
93
94 #undef LINK_SPEC
95 #define LINK_SPEC "%{mbig-endian-data:--oformat elf32-rx-be} %{mrelax:-relax}"
96 \f
97
98 #define BITS_BIG_ENDIAN 0
99 #define BYTES_BIG_ENDIAN TARGET_BIG_ENDIAN_DATA
100 #define WORDS_BIG_ENDIAN TARGET_BIG_ENDIAN_DATA
101
102 #define UNITS_PER_WORD 4
103
104 #define INT_TYPE_SIZE 32
105 #define LONG_TYPE_SIZE 32
106 #define LONG_LONG_TYPE_SIZE 64
107
108 #define FLOAT_TYPE_SIZE 32
109 #define DOUBLE_TYPE_SIZE (TARGET_64BIT_DOUBLES ? 64 : 32)
110 #define LONG_DOUBLE_TYPE_SIZE DOUBLE_TYPE_SIZE
111
112 #ifdef __RX_32BIT_DOUBLES__
113 #define LIBGCC2_HAS_DF_MODE 0
114 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 32
115 #else
116 #define LIBGCC2_HAS_DF_MODE 1
117 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
118 #endif
119
120 #define DEFAULT_SIGNED_CHAR 0
121
122 #define STRICT_ALIGNMENT 1
123 #define FUNCTION_BOUNDARY 8
124 #define BIGGEST_ALIGNMENT 32
125 #define STACK_BOUNDARY 32
126 #define PARM_BOUNDARY 8
127
128 #define STACK_GROWS_DOWNWARD 1
129 #define FRAME_GROWS_DOWNWARD 0
130 #define FIRST_PARM_OFFSET(FNDECL) 0
131
132 #define MAX_REGS_PER_ADDRESS 2
133
134 #define Pmode SImode
135 #define POINTER_SIZE 32
136 #undef SIZE_TYPE
137 #define SIZE_TYPE "long unsigned int"
138 #undef PTRDIFF_TYPE
139 #define PTRDIFF_TYPE "long int"
140 #undef WCHAR_TYPE
141 #define WCHAR_TYPE "long int"
142 #undef WCHAR_TYPE_SIZE
143 #define WCHAR_TYPE_SIZE BITS_PER_WORD
144 #define POINTERS_EXTEND_UNSIGNED 1
145 #define FUNCTION_MODE QImode
146 #define CASE_VECTOR_MODE Pmode
147 #define WORD_REGISTER_OPERATIONS 1
148 #define HAS_LONG_COND_BRANCH 0
149 #define HAS_LONG_UNCOND_BRANCH 0
150
151 #define MOVE_MAX 4
152 #define STARTING_FRAME_OFFSET 0
153
154 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
155
156 #define LEGITIMATE_CONSTANT_P(X) rx_is_legitimate_constant (X)
157
158 #define HAVE_PRE_DECCREMENT 1
159 #define HAVE_POST_INCREMENT 1
160
161 #define MOVE_RATIO(SPEED) ((SPEED) ? 4 : 2)
162 #define SLOW_BYTE_ACCESS 1
163
164 #define STORE_FLAG_VALUE 1
165 #define LOAD_EXTEND_OP(MODE) SIGN_EXTEND
166 #define SHORT_IMMEDIATES_SIGN_EXTEND 1
167 \f
168 enum reg_class
169 {
170 NO_REGS, /* No registers in set. */
171 GR_REGS, /* Integer registers. */
172 ALL_REGS, /* All registers. */
173 LIM_REG_CLASSES /* Max value + 1. */
174 };
175
176 #define REG_CLASS_NAMES \
177 { \
178 "NO_REGS", \
179 "GR_REGS", \
180 "ALL_REGS" \
181 }
182
183 #define REG_CLASS_CONTENTS \
184 { \
185 { 0x00000000 }, /* No registers, */ \
186 { 0x0000ffff }, /* Integer registers. */ \
187 { 0x0000ffff } /* All registers. */ \
188 }
189
190 #define SMALL_REGISTER_CLASSES 0
191 #define N_REG_CLASSES (int) LIM_REG_CLASSES
192 #define CLASS_MAX_NREGS(CLASS, MODE) ((GET_MODE_SIZE (MODE) \
193 + UNITS_PER_WORD - 1) \
194 / UNITS_PER_WORD)
195
196 #define GENERAL_REGS GR_REGS
197 #define BASE_REG_CLASS GR_REGS
198 #define INDEX_REG_CLASS GR_REGS
199
200 #define FIRST_PSEUDO_REGISTER 17
201
202 #define REGNO_REG_CLASS(REGNO) ((REGNO) < FIRST_PSEUDO_REGISTER \
203 ? GR_REGS : NO_REGS)
204
205 #define STACK_POINTER_REGNUM 0
206 #define FUNC_RETURN_REGNUM 1
207 #define FRAME_POINTER_REGNUM 6
208 #define ARG_POINTER_REGNUM 7
209 #define STATIC_CHAIN_REGNUM 8
210 #define TRAMPOLINE_TEMP_REGNUM 9
211 #define STRUCT_VAL_REGNUM 15
212 #define CC_REGNUM 16
213
214 /* This is the register which is used to hold the address of the start
215 of the small data area, if that feature is being used. Note - this
216 register must not be call_used because otherwise library functions
217 that are compiled without small data support might clobber it.
218
219 FIXME: The function gcc/config/rx/rx.c:rx_gen_move_template() has a
220 built in copy of this register's name, rather than constructing the
221 name from this #define. */
222 #define GP_BASE_REGNUM 13
223
224 #define ELIMINABLE_REGS \
225 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM }, \
226 { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM }, \
227 { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM }}
228
229 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
230 (OFFSET) = rx_initial_elimination_offset ((FROM), (TO))
231
232
233 #define FUNCTION_ARG_REGNO_P(N) (((N) >= 1) && ((N) <= 4))
234 #define FUNCTION_VALUE_REGNO_P(N) ((N) == FUNC_RETURN_REGNUM)
235 #define DEFAULT_PCC_STRUCT_RETURN 0
236
237 #define FIXED_REGISTERS \
238 { \
239 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 \
240 }
241
242 #define CALL_USED_REGISTERS \
243 { \
244 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1 \
245 }
246
247 #define LIBCALL_VALUE(MODE) \
248 gen_rtx_REG (((GET_MODE_CLASS (MODE) != MODE_INT \
249 || COMPLEX_MODE_P (MODE) \
250 || GET_MODE_SIZE (MODE) >= 4) \
251 ? (MODE) \
252 : SImode), \
253 FUNC_RETURN_REGNUM)
254
255 /* Order of allocation of registers. */
256
257 #define REG_ALLOC_ORDER \
258 { 7, 10, 11, 12, 13, 14, 4, 3, 2, 1, 9, 8, 6, 5, 15 \
259 }
260
261 #define REGNO_IN_RANGE(REGNO, MIN, MAX) \
262 (IN_RANGE ((REGNO), (MIN), (MAX)) \
263 || (reg_renumber != NULL \
264 && reg_renumber[(REGNO)] >= (MIN) \
265 && reg_renumber[(REGNO)] <= (MAX)))
266
267 #ifdef REG_OK_STRICT
268 #define REGNO_OK_FOR_BASE_P(regno) REGNO_IN_RANGE (regno, 0, 15)
269 #else
270 #define REGNO_OK_FOR_BASE_P(regno) 1
271 #endif
272
273 #define REGNO_OK_FOR_INDEX_P(regno) REGNO_OK_FOR_BASE_P (regno)
274
275 #define RTX_OK_FOR_BASE(X, STRICT) \
276 ((STRICT) ? \
277 ( (REG_P (X) \
278 && REGNO_IN_RANGE (REGNO (X), 0, 15)) \
279 || (GET_CODE (X) == SUBREG \
280 && REG_P (SUBREG_REG (X)) \
281 && REGNO_IN_RANGE (REGNO (SUBREG_REG (X)), 0, 15))) \
282 : \
283 ( (REG_P (X) \
284 || (GET_CODE (X) == SUBREG \
285 && REG_P (SUBREG_REG (X))))))
286 \f
287
288 #define RETURN_ADDR_RTX(COUNT, FRAMEADDR) \
289 ((COUNT) == 0 \
290 ? gen_rtx_MEM (Pmode, gen_rtx_PLUS (Pmode, arg_pointer_rtx, GEN_INT (-4))) \
291 : NULL_RTX)
292
293 #define INCOMING_RETURN_ADDR_RTX gen_rtx_MEM (Pmode, stack_pointer_rtx)
294
295 #define ACCUMULATE_OUTGOING_ARGS 1
296
297 typedef unsigned int CUMULATIVE_ARGS;
298
299 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
300 (CUM) = 0
301
302 \f
303 #define TRAMPOLINE_SIZE (! TARGET_BIG_ENDIAN_DATA ? 14 : 20)
304 #define TRAMPOLINE_ALIGNMENT 32
305 \f
306 #define NO_PROFILE_COUNTERS 1
307 #define PROFILE_BEFORE_PROLOGUE 1
308
309 #define FUNCTION_PROFILER(FILE, LABELNO) \
310 fprintf (FILE, "\tbsr\t__mcount\n");
311 \f
312
313 #define HARD_REGNO_NREGS(REGNO, MODE) CLASS_MAX_NREGS (0, MODE)
314
315 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
316 REGNO_REG_CLASS (REGNO) == GR_REGS
317
318 #define MODES_TIEABLE_P(MODE1, MODE2) \
319 ( ( GET_MODE_CLASS (MODE1) == MODE_FLOAT \
320 || GET_MODE_CLASS (MODE1) == MODE_COMPLEX_FLOAT) \
321 == ( GET_MODE_CLASS (MODE2) == MODE_FLOAT \
322 || GET_MODE_CLASS (MODE2) == MODE_COMPLEX_FLOAT))
323 \f
324
325 #define REGISTER_NAMES \
326 { \
327 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
328 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", "cc" \
329 }
330
331 #define ADDITIONAL_REGISTER_NAMES \
332 { \
333 { "sp", STACK_POINTER_REGNUM } \
334 , { "fp", FRAME_POINTER_REGNUM } \
335 , { "arg", ARG_POINTER_REGNUM } \
336 , { "chain", STATIC_CHAIN_REGNUM } \
337 }
338
339 #define DATA_SECTION_ASM_OP \
340 (TARGET_AS100_SYNTAX ? "\t.SECTION D,DATA" \
341 : "\t.section D,\"aw\",@progbits\n\t.p2align 2")
342
343 #define SDATA_SECTION_ASM_OP \
344 (TARGET_AS100_SYNTAX ? "\t.SECTION D_2,DATA,ALIGN=2" \
345 : "\t.section D_2,\"aw\",@progbits\n\t.p2align 1")
346
347 #undef READONLY_DATA_SECTION_ASM_OP
348 #define READONLY_DATA_SECTION_ASM_OP \
349 (TARGET_AS100_SYNTAX ? "\t.SECTION C,ROMDATA,ALIGN=4" \
350 : "\t.section C,\"a\",@progbits\n\t.p2align 2")
351
352 #define BSS_SECTION_ASM_OP \
353 (TARGET_AS100_SYNTAX ? "\t.SECTION B,DATA,ALIGN=4" \
354 : "\t.section B,\"w\",@nobits\n\t.p2align 2")
355
356 #define SBSS_SECTION_ASM_OP \
357 (TARGET_AS100_SYNTAX ? "\t.SECTION B_2,DATA,ALIGN=2" \
358 : "\t.section B_2,\"w\",@nobits\n\t.p2align 1")
359
360 /* The following definitions are conditional depending upon whether the
361 compiler is being built or crtstuff.c is being compiled by the built
362 compiler. */
363 #if defined CRT_BEGIN || defined CRT_END
364 # ifdef __RX_AS100_SYNTAX
365 # define TEXT_SECTION_ASM_OP "\t.SECTION P,CODE"
366 # define CTORS_SECTION_ASM_OP "\t.SECTION init_array,CODE"
367 # define DTORS_SECTION_ASM_OP "\t.SECTION fini_array,CODE"
368 # define INIT_ARRAY_SECTION_ASM_OP "\t.SECTION init_array,CODE"
369 # define FINI_ARRAY_SECTION_ASM_OP "\t.SECTION fini_array,CODE"
370 # else
371 # define TEXT_SECTION_ASM_OP "\t.section P,\"ax\""
372 # define CTORS_SECTION_ASM_OP \
373 "\t.section\t.init_array,\"aw\",@init_array"
374 # define DTORS_SECTION_ASM_OP \
375 "\t.section\t.fini_array,\"aw\",@fini_array"
376 # define INIT_ARRAY_SECTION_ASM_OP \
377 "\t.section\t.init_array,\"aw\",@init_array"
378 # define FINI_ARRAY_SECTION_ASM_OP \
379 "\t.section\t.fini_array,\"aw\",@fini_array"
380 # endif
381 #else
382 # define TEXT_SECTION_ASM_OP \
383 (TARGET_AS100_SYNTAX ? "\t.SECTION P,CODE" : "\t.section P,\"ax\"")
384
385 # define CTORS_SECTION_ASM_OP \
386 (TARGET_AS100_SYNTAX ? "\t.SECTION init_array,CODE" \
387 : "\t.section\t.init_array,\"aw\",@init_array")
388
389 # define DTORS_SECTION_ASM_OP \
390 (TARGET_AS100_SYNTAX ? "\t.SECTION fini_array,CODE" \
391 : "\t.section\t.fini_array,\"aw\",@fini_array")
392
393 # define INIT_ARRAY_SECTION_ASM_OP \
394 (TARGET_AS100_SYNTAX ? "\t.SECTION init_array,CODE" \
395 : "\t.section\t.init_array,\"aw\",@init_array")
396
397 # define FINI_ARRAY_SECTION_ASM_OP \
398 (TARGET_AS100_SYNTAX ? "\t.SECTION fini_array,CODE" \
399 : "\t.section\t.fini_array,\"aw\",@fini_array")
400 #endif
401
402 #define GLOBAL_ASM_OP \
403 (TARGET_AS100_SYNTAX ? "\t.GLB\t" : "\t.global\t")
404 #define ASM_COMMENT_START " ;"
405 #define ASM_APP_ON ""
406 #define ASM_APP_OFF ""
407 #define LOCAL_LABEL_PREFIX "L"
408 #undef USER_LABEL_PREFIX
409 #define USER_LABEL_PREFIX "_"
410
411 #define LABEL_ALIGN_AFTER_BARRIER(x) rx_align_for_label ()
412
413 #define ASM_OUTPUT_MAX_SKIP_ALIGN(STREAM, LOG, MAX_SKIP) \
414 do \
415 { \
416 if ((LOG) == 0 || (MAX_SKIP) == 0) \
417 break; \
418 if (TARGET_AS100_SYNTAX) \
419 { \
420 if ((LOG) >= 2) \
421 fprintf (STREAM, "\t.ALIGN 4\t; %d alignment actually requested\n", 1 << (LOG)); \
422 else \
423 fprintf (STREAM, "\t.ALIGN 2\n"); \
424 } \
425 else \
426 fprintf (STREAM, "\t.balign %d,3,%d\n", 1 << (LOG), (MAX_SKIP)); \
427 } \
428 while (0)
429
430 #define ASM_OUTPUT_ALIGN(STREAM, LOG) \
431 do \
432 { \
433 if ((LOG) == 0) \
434 break; \
435 if (TARGET_AS100_SYNTAX) \
436 { \
437 if ((LOG) >= 2) \
438 fprintf (STREAM, "\t.ALIGN 4\t; %d alignment actually requested\n", 1 << (LOG)); \
439 else \
440 fprintf (STREAM, "\t.ALIGN 2\n"); \
441 } \
442 else \
443 fprintf (STREAM, "\t.balign %d\n", 1 << (LOG)); \
444 } \
445 while (0)
446
447 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
448 fprintf (FILE, TARGET_AS100_SYNTAX ? "\t.LWORD L%d\n" : "\t.long .L%d\n", \
449 VALUE)
450
451 /* This is how to output an element of a case-vector that is relative.
452 Note: The local label referenced by the "3b" below is emitted by
453 the tablejump insn. */
454
455 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
456 fprintf (FILE, TARGET_AS100_SYNTAX \
457 ? "\t.LWORD L%d - ?-\n" : "\t.long .L%d - 1b\n", VALUE)
458
459 #define ASM_OUTPUT_SIZE_DIRECTIVE(STREAM, NAME, SIZE) \
460 do \
461 { \
462 HOST_WIDE_INT size_ = (SIZE); \
463 \
464 /* The as100 assembler does not have an equivalent of the SVR4 \
465 .size pseudo-op. */ \
466 if (TARGET_AS100_SYNTAX) \
467 break; \
468 \
469 fputs (SIZE_ASM_OP, STREAM); \
470 assemble_name (STREAM, NAME); \
471 fprintf (STREAM, ", " HOST_WIDE_INT_PRINT_DEC "\n", size_); \
472 } \
473 while (0)
474
475 #define ASM_OUTPUT_MEASURED_SIZE(STREAM, NAME) \
476 do \
477 { \
478 /* The as100 assembler does not have an equivalent of the SVR4 \
479 .size pseudo-op. */ \
480 if (TARGET_AS100_SYNTAX) \
481 break; \
482 fputs (SIZE_ASM_OP, STREAM); \
483 assemble_name (STREAM, NAME); \
484 fputs (", .-", STREAM); \
485 assemble_name (STREAM, NAME); \
486 putc ('\n', STREAM); \
487 } \
488 while (0)
489
490 #define ASM_OUTPUT_TYPE_DIRECTIVE(STREAM, NAME, TYPE) \
491 do \
492 { \
493 /* The as100 assembler does not have an equivalent of the SVR4 \
494 .size pseudo-op. */ \
495 if (TARGET_AS100_SYNTAX) \
496 break; \
497 fputs (TYPE_ASM_OP, STREAM); \
498 assemble_name (STREAM, NAME); \
499 fputs (", ", STREAM); \
500 fprintf (STREAM, TYPE_OPERAND_FMT, TYPE); \
501 putc ('\n', STREAM); \
502 } \
503 while (0)
504
505 #undef ASM_GENERATE_INTERNAL_LABEL
506 #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \
507 do \
508 { \
509 sprintf (LABEL, TARGET_AS100_SYNTAX ? "*%s%u" : "*.%s%u", \
510 PREFIX, (unsigned) (NUM)); \
511 } \
512 while (0)
513
514 #undef ASM_OUTPUT_EXTERNAL
515 #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \
516 do \
517 { \
518 if (TARGET_AS100_SYNTAX) \
519 targetm.asm_out.globalize_label (FILE, NAME); \
520 default_elf_asm_output_external (FILE, DECL, NAME); \
521 } \
522 while (0)
523
524 #undef ASM_OUTPUT_ALIGNED_COMMON
525 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
526 do \
527 { \
528 if (TARGET_AS100_SYNTAX) \
529 { \
530 fprintf ((FILE), "\t.GLB\t"); \
531 assemble_name ((FILE), (NAME)); \
532 fprintf ((FILE), "\n"); \
533 assemble_name ((FILE), (NAME)); \
534 switch ((ALIGN) / BITS_PER_UNIT) \
535 { \
536 case 4: \
537 fprintf ((FILE), ":\t.BLKL\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
538 (SIZE) / 4); \
539 break; \
540 case 2: \
541 fprintf ((FILE), ":\t.BLKW\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
542 (SIZE) / 2); \
543 break; \
544 default: \
545 fprintf ((FILE), ":\t.BLKB\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
546 (SIZE)); \
547 break; \
548 } \
549 } \
550 else \
551 { \
552 fprintf ((FILE), "%s", COMMON_ASM_OP); \
553 assemble_name ((FILE), (NAME)); \
554 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
555 (SIZE), (ALIGN) / BITS_PER_UNIT); \
556 } \
557 } \
558 while (0)
559
560 #undef SKIP_ASM_OP
561 #define SKIP_ASM_OP (TARGET_AS100_SYNTAX ? "\t.BLKB\t" : "\t.zero\t")
562
563 #undef ASM_OUTPUT_LIMITED_STRING
564 #define ASM_OUTPUT_LIMITED_STRING(FILE, STR) \
565 do \
566 { \
567 const unsigned char *_limited_str = \
568 (const unsigned char *) (STR); \
569 unsigned ch; \
570 \
571 fprintf ((FILE), TARGET_AS100_SYNTAX \
572 ? "\t.BYTE\t\"" : "\t.string\t\""); \
573 \
574 for (; (ch = *_limited_str); _limited_str++) \
575 { \
576 int escape; \
577 \
578 switch (escape = ESCAPES[ch]) \
579 { \
580 case 0: \
581 putc (ch, (FILE)); \
582 break; \
583 case 1: \
584 fprintf ((FILE), "\\%03o", ch); \
585 break; \
586 default: \
587 putc ('\\', (FILE)); \
588 putc (escape, (FILE)); \
589 break; \
590 } \
591 } \
592 \
593 fprintf ((FILE), TARGET_AS100_SYNTAX ? "\"\n\t.BYTE\t0\n" : "\"\n");\
594 } \
595 while (0)
596
597 #undef IDENT_ASM_OP
598 #define IDENT_ASM_OP (TARGET_AS100_SYNTAX \
599 ? "\t.END\t; Built by: ": "\t.ident\t")
600
601 /* For PIC put jump tables into the text section so that the offsets that
602 they contain are always computed between two same-section symbols. */
603 #define JUMP_TABLES_IN_TEXT_SECTION (flag_pic)
604 \f
605 /* This is a version of REG_P that also returns TRUE for SUBREGs. */
606 #define RX_REG_P(rtl) (REG_P (rtl) || GET_CODE (rtl) == SUBREG)
607
608 /* Like REG_P except that this macro is true for SET expressions. */
609 #define SET_P(rtl) (GET_CODE (rtl) == SET)
610 \f
611 /* The AS100 assembler does not support .leb128 and .uleb128, but
612 the compiler-build-time configure tests will have enabled their
613 use because GAS supports them. So default to generating STABS
614 debug information instead of DWARF2 when generating AS100
615 compatible output. */
616 #undef PREFERRED_DEBUGGING_TYPE
617 #define PREFERRED_DEBUGGING_TYPE (TARGET_AS100_SYNTAX \
618 ? DBX_DEBUG : DWARF2_DEBUG)
619
620 #define INCOMING_FRAME_SP_OFFSET 4
621 #define ARG_POINTER_CFA_OFFSET(FNDECL) 4
622 #define FRAME_POINTER_CFA_OFFSET(FNDECL) 4
623 \f
624 #define TARGET_USE_FPU (! TARGET_NO_USE_FPU)
625
626 /* This macro is used to decide when RX FPU instructions can be used. */
627 #define ALLOW_RX_FPU_INSNS (TARGET_USE_FPU)
628
629 #define BRANCH_COST(SPEED,PREDICT) 1
630 #define REGISTER_MOVE_COST(MODE,FROM,TO) 2
631
632 #define SELECT_CC_MODE(OP,X,Y) rx_select_cc_mode(OP, X, Y)
This page took 0.066821 seconds and 6 git commands to generate.