]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* tc-310v.h -- Header file for tc-d30v.c. |
49309057 | 2 | Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. |
252b5132 RH |
3 | Written by Martin Hunt, Cygnus Support. |
4 | ||
5 | This file is part of GAS, the GNU Assembler. | |
6 | ||
7 | GAS 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. | |
11 | ||
12 | GAS 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. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
49309057 ILT |
18 | along with GAS; see the file COPYING. If not, write to the Free |
19 | Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
20 | 02111-1307, USA. */ | |
252b5132 | 21 | |
24ddb296 AC |
22 | #include "write.h" /* For the definition of fixS. */ |
23 | ||
252b5132 RH |
24 | #define TC_D30V |
25 | ||
26 | #ifndef BFD_ASSEMBLER | |
27 | #error D30V support requires BFD_ASSEMBLER | |
28 | #endif | |
29 | ||
30 | /* The target BFD architecture. */ | |
31 | #define TARGET_ARCH bfd_arch_d30v | |
32 | #define TARGET_FORMAT "elf32-d30v" | |
33 | #define TARGET_BYTES_BIG_ENDIAN 1 | |
34 | ||
35 | #define md_operand(x) | |
36 | ||
37 | #define MD_APPLY_FIX3 | |
38 | ||
39 | /* call md_pcrel_from_section, not md_pcrel_from */ | |
24ddb296 AC |
40 | |
41 | extern long md_pcrel_from_section PARAMS ((fixS *fixp, segT sec)); | |
252b5132 RH |
42 | #define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section(FIXP, SEC) |
43 | ||
44 | /* Permit temporary numeric labels. */ | |
45 | #define LOCAL_LABELS_FB 1 | |
46 | ||
47 | #define DIFF_EXPR_OK /* .-foo gets turned into PC relative relocs */ | |
48 | ||
49 | /* We don't need to handle .word strangely. */ | |
50 | #define WORKING_DOT_WORD | |
51 | ||
52 | #define md_number_to_chars number_to_chars_bigendian | |
53 | ||
54 | int d30v_cleanup PARAMS ((int)); | |
55 | #define md_after_pass_hook() d30v_cleanup (false) | |
56 | #define md_cleanup() d30v_cleanup (false) | |
57 | #define TC_START_LABEL(ch, ptr) (ch == ':' && d30v_cleanup (false)) | |
24ddb296 AC |
58 | void d30v_start_line PARAMS ((void)); |
59 | #define md_start_line_hook() d30v_start_line () | |
252b5132 | 60 | |
49309057 | 61 | void d30v_frob_label PARAMS ((symbolS *)); |
252b5132 RH |
62 | #define tc_frob_label(sym) d30v_frob_label(sym) |
63 | ||
64 | void d30v_cons_align PARAMS ((int)); | |
65 | #define md_cons_align(nbytes) d30v_cons_align(nbytes) |