2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / config / vax / elf.h
blob533ce92b8bd40999fefb0d73139c06cf5140b4a9
1 /* Target definitions for GNU compiler for VAX using ELF
2 Copyright (C) 2002 Free Software Foundation, Inc.
3 Contributed by Matt Thomas (matt@3am-software.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #undef TARGET_ELF
23 #define TARGET_ELF 1
25 #undef REGISTER_PREFIX
26 #undef REGISTER_NAMES
27 #define REGISTER_PREFIX "%"
28 #define REGISTER_NAMES \
29 {"%r0", "%r1", "%r2", "%r3", "%r4", "%r5", "%r6", "%r7", \
30 "%r8", "%r9", "%r10", "%r11", "%ap", "%fp", "%sp", "%pc"}
32 #undef SIZE_TYPE
33 #define SIZE_TYPE "long unsigned int"
35 #undef PTRDIFF_TYPE
36 #define PTRDIFF_TYPE "long int"
38 /* Profiling routine. */
39 #undef VAX_FUNCTION_PROFILER_NAME
40 #define VAX_FUNCTION_PROFILER_NAME "__mcount"
42 /* Let's be re-entrant. */
43 #undef PCC_STATIC_STRUCT_RETURN
45 /* Make sure .stabs for a function are always the same section. */
46 #define DBX_OUTPUT_FUNCTION_END(file,decl) function_section(decl)
48 /* Before the prologue, the top of the frame is below the argument
49 count pushed by the CALLS and before the start of the saved registers. */
50 #define INCOMING_FRAME_SP_OFFSET 0
52 /* We use R2-R5 (call-clobbered) registers for exceptions. */
53 #define EH_RETURN_DATA_REGNO(N) ((N) < 4 ? (N) + 2 : INVALID_REGNUM)
55 /* Place the top of the stack for the DWARF2 EH stackadj value. */
56 #define EH_RETURN_STACKADJ_RTX \
57 gen_rtx_MEM (SImode, \
58 plus_constant (gen_rtx_REG (Pmode, FRAME_POINTER_REGNUM), \
59 -4))
61 /* Simple store the return handler into the call frame. */
62 #define EH_RETURN_HANDLER_RTX \
63 gen_rtx_MEM (Pmode, \
64 plus_constant (gen_rtx_REG (Pmode, FRAME_POINTER_REGNUM), \
65 16))
68 /* Reserve the top of the stack for exception handler stackadj value. */
69 #undef STARTING_FRAME_OFFSET
70 #define STARTING_FRAME_OFFSET -4
72 /* The VAX wants no space between the case instruction and the jump table. */
73 #undef ASM_OUTPUT_BEFORE_CASE_LABEL
74 #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE, PREFIX, NUM, TABLE)
76 #undef OVERRIDE_OPTIONS
77 #define OVERRIDE_OPTIONS \
78 do \
79 { \
80 /* Do generic VAX overrides. */ \
81 override_options (); \
83 /* Turn off function CSE if we're \
84 doing PIC. */ \
85 if (flag_pic) flag_no_function_cse = 1; \
86 } \
87 while (0)
89 /* VAX ELF is always gas; override the generic VAX ASM_SPEC. */
91 #undef ASM_SPEC
92 #define ASM_SPEC ""