Add EM_X86_64.
[deliverable/binutils-gdb.git] / gas / read.h
CommitLineData
252b5132 1/* read.h - of read.c
a01b9fa4 2 Copyright (C) 1986, 90, 92, 93, 94, 95, 96, 97, 2000
252b5132
RH
3 Free Software Foundation, Inc.
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
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
a01b9fa4 21extern char *input_line_pointer;/* -> char we are parsing now. */
252b5132
RH
22
23#define PERMIT_WHITESPACE /* Define to make whitespace be allowed in */
a01b9fa4 24/* many syntactically unnecessary places. */
252b5132 25/* Normally undefined. For compatibility */
a01b9fa4 26/* with ancient GNU cc. */
252b5132
RH
27/* #undef PERMIT_WHITESPACE */
28
29#ifdef PERMIT_WHITESPACE
30#define SKIP_WHITESPACE() {if (* input_line_pointer == ' ') ++ input_line_pointer;}
31#else
32#define SKIP_WHITESPACE() know(*input_line_pointer != ' ' )
33#endif
34
252b5132
RH
35#define LEX_NAME (1) /* may continue a name */
36#define LEX_BEGIN_NAME (2) /* may begin a name */
58b5739a 37#define LEX_END_NAME (4) /* ends a name */
252b5132
RH
38
39#define is_name_beginner(c) \
40 ( lex_type[(unsigned char) (c)] & LEX_BEGIN_NAME )
41#define is_part_of_name(c) \
42 ( lex_type[(unsigned char) (c)] & LEX_NAME )
58b5739a
RH
43#define is_name_ender(c) \
44 ( lex_type[(unsigned char) (c)] & LEX_END_NAME )
252b5132
RH
45
46#ifndef is_a_char
47#define CHAR_MASK (0xff)
48#define NOT_A_CHAR (CHAR_MASK+1)
49#define is_a_char(c) (((unsigned)(c)) <= CHAR_MASK)
50#endif /* is_a_char() */
51
52extern char lex_type[];
53extern char is_end_of_line[];
54
55extern int is_it_end_of_statement PARAMS ((void));
56
57extern int target_big_endian;
58
59/* These are initialized by the CPU specific target files (tc-*.c). */
60extern const char comment_chars[];
61extern const char line_comment_chars[];
62extern const char line_separator_chars[];
63
64/* Table of -I directories. */
65extern char **include_dirs;
66extern int include_dir_count;
67extern int include_dir_maxlen;
68
69/* The offset in the absolute section. */
70extern addressT abs_section_offset;
71
72/* The label on a line, used by some of the pseudo-ops. */
73extern symbolS *line_label;
74
75/* This is used to support MRI common sections. */
76extern symbolS *mri_common_symbol;
77
bccba5f0
NC
78/* True if a stabs line debug statement is currently being emitted. */
79extern boolean outputting_stabs_line_debug;
80
252b5132
RH
81/* Possible arguments to .linkonce. */
82enum linkonce_type
83{
84 LINKONCE_UNSET = 0,
85 LINKONCE_DISCARD,
86 LINKONCE_ONE_ONLY,
87 LINKONCE_SAME_SIZE,
88 LINKONCE_SAME_CONTENTS
89};
90
37d8bb27
NC
91#define IGNORE_OPCODE_CASE
92#ifdef IGNORE_OPCODE_CASE
93extern char original_case_string[];
94#endif
95
252b5132
RH
96extern void pop_insert PARAMS ((const pseudo_typeS *));
97extern unsigned int get_stab_string_offset
98 PARAMS ((const char *string, const char *stabstr_secname));
0aa5d426 99extern void aout_process_stab PARAMS ((int, const char *, int, int, int));
252b5132
RH
100extern char *demand_copy_C_string PARAMS ((int *len_pointer));
101extern char get_absolute_expression_and_terminator
102 PARAMS ((long *val_pointer));
103extern offsetT get_absolute_expression PARAMS ((void));
104extern unsigned int next_char_of_string PARAMS ((void));
105extern void s_mri_sect PARAMS ((char *));
106extern char *mri_comment_field PARAMS ((char *));
107extern void mri_comment_end PARAMS ((char *, int));
108extern void add_include_dir PARAMS ((char *path));
109extern void cons PARAMS ((int nbytes));
110extern void demand_empty_rest_of_line PARAMS ((void));
111extern void emit_expr PARAMS ((expressionS *exp, unsigned int nbytes));
112extern void emit_leb128_expr PARAMS ((expressionS *, int));
113extern void equals PARAMS ((char *sym_name, int reassign));
114extern void float_cons PARAMS ((int float_type));
115extern void ignore_rest_of_line PARAMS ((void));
116extern void discard_rest_of_line PARAMS ((void));
117extern int output_leb128 PARAMS ((char *, valueT, int sign));
118extern void pseudo_set PARAMS ((symbolS * symbolP));
119extern void read_a_source_file PARAMS ((char *name));
120extern void read_begin PARAMS ((void));
121extern void read_print_statistics PARAMS ((FILE *));
122extern int sizeof_leb128 PARAMS ((valueT, int sign));
123extern void stabs_generate_asm_file PARAMS ((void));
124extern void stabs_generate_asm_lineno PARAMS ((void));
125extern void stabs_generate_asm_func PARAMS ((const char *, const char *));
126extern void stabs_generate_asm_endfunc PARAMS ((const char *, const char *));
6dc19fc4
TW
127extern void do_repeat PARAMS((int,const char *,const char *));
128extern void end_repeat PARAMS((int));
252b5132
RH
129
130extern void generate_lineno_debug PARAMS ((void));
131
46b85d42 132extern void s_abort PARAMS ((int)) ATTRIBUTE_NORETURN;
252b5132
RH
133extern void s_align_bytes PARAMS ((int arg));
134extern void s_align_ptwo PARAMS ((int));
135extern void s_app_file PARAMS ((int));
136extern void s_app_line PARAMS ((int));
137extern void s_comm PARAMS ((int));
138extern void s_data PARAMS ((int));
139extern void s_desc PARAMS ((int));
140extern void s_else PARAMS ((int arg));
3fd9f047 141extern void s_elseif PARAMS ((int arg));
252b5132
RH
142extern void s_end PARAMS ((int arg));
143extern void s_endif PARAMS ((int arg));
144extern void s_err PARAMS ((int));
145extern void s_fail PARAMS ((int));
146extern void s_fill PARAMS ((int));
147extern void s_float_space PARAMS ((int mult));
148extern void s_func PARAMS ((int));
149extern void do_s_func PARAMS ((int, const char *));
150extern void s_globl PARAMS ((int arg));
151extern void s_if PARAMS ((int arg));
152extern void s_ifc PARAMS ((int arg));
153extern void s_ifdef PARAMS ((int arg));
154extern void s_ifeqs PARAMS ((int arg));
155extern void s_ignore PARAMS ((int arg));
156extern void s_include PARAMS ((int arg));
157extern void s_irp PARAMS ((int arg));
158extern void s_lcomm PARAMS ((int needs_align));
159extern void s_lcomm_bytes PARAMS ((int needs_align));
160extern void s_leb128 PARAMS ((int sign));
161extern void s_linkonce PARAMS ((int));
162extern void s_lsym PARAMS ((int));
163extern void s_macro PARAMS ((int));
164extern void s_mexit PARAMS ((int));
165extern void s_mri PARAMS ((int));
166extern void s_mri_common PARAMS ((int));
167extern void s_org PARAMS ((int));
168extern void s_print PARAMS ((int));
169extern void s_purgem PARAMS ((int));
170extern void s_rept PARAMS ((int));
171extern void s_set PARAMS ((int));
172extern void s_space PARAMS ((int mult));
173extern void s_stab PARAMS ((int what));
174extern void s_struct PARAMS ((int));
175extern void s_text PARAMS ((int));
176extern void stringer PARAMS ((int append_zero));
177extern void s_xstab PARAMS ((int what));
178extern void s_rva PARAMS ((int));
This page took 0.069582 seconds and 4 git commands to generate.