1991-04-05 02:19:53 +08:00
|
|
|
/* read.h - of read.c
|
1998-06-01 12:44:48 +08:00
|
|
|
Copyright (C) 1986, 90, 92, 93, 94, 95, 96, 1997
|
|
|
|
Free Software Foundation, Inc.
|
1992-11-24 04:39:57 +08:00
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
This file is part of GAS, the GNU Assembler.
|
1992-11-24 04:39:57 +08:00
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
1992-11-24 04:39:57 +08:00
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
GAS is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1992-11-24 04:39:57 +08:00
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GAS; see the file COPYING. If not, write to
|
1995-08-09 05:41:30 +08:00
|
|
|
the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
1992-11-24 04:39:57 +08:00
|
|
|
extern char *input_line_pointer;/* -> char we are parsing now. */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
#define PERMIT_WHITESPACE /* Define to make whitespace be allowed in */
|
1992-02-13 16:33:54 +08:00
|
|
|
/* many syntactically unnecessary places. */
|
|
|
|
/* Normally undefined. For compatibility */
|
|
|
|
/* with ancient GNU cc. */
|
|
|
|
/* #undef PERMIT_WHITESPACE */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
#ifdef PERMIT_WHITESPACE
|
|
|
|
#define SKIP_WHITESPACE() {if (* input_line_pointer == ' ') ++ input_line_pointer;}
|
|
|
|
#else
|
|
|
|
#define SKIP_WHITESPACE() know(*input_line_pointer != ' ' )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1992-11-24 04:39:57 +08:00
|
|
|
#define LEX_NAME (1) /* may continue a name */
|
|
|
|
#define LEX_BEGIN_NAME (2) /* may begin a name */
|
1992-02-13 16:33:54 +08:00
|
|
|
|
1993-09-11 00:01:07 +08:00
|
|
|
#define is_name_beginner(c) \
|
|
|
|
( lex_type[(unsigned char) (c)] & LEX_BEGIN_NAME )
|
|
|
|
#define is_part_of_name(c) \
|
|
|
|
( lex_type[(unsigned char) (c)] & LEX_NAME )
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
#ifndef is_a_char
|
|
|
|
#define CHAR_MASK (0xff)
|
|
|
|
#define NOT_A_CHAR (CHAR_MASK+1)
|
|
|
|
#define is_a_char(c) (((unsigned)(c)) <= CHAR_MASK)
|
|
|
|
#endif /* is_a_char() */
|
|
|
|
|
1995-08-09 05:41:30 +08:00
|
|
|
extern char lex_type[];
|
1991-04-05 02:19:53 +08:00
|
|
|
extern char is_end_of_line[];
|
|
|
|
|
1997-08-16 02:19:27 +08:00
|
|
|
extern int is_it_end_of_statement PARAMS ((void));
|
|
|
|
|
1995-08-09 05:41:30 +08:00
|
|
|
extern int target_big_endian;
|
|
|
|
|
1992-11-24 04:39:57 +08:00
|
|
|
/* These are initialized by the CPU specific target files (tc-*.c). */
|
|
|
|
extern const char comment_chars[];
|
|
|
|
extern const char line_comment_chars[];
|
|
|
|
extern const char line_separator_chars[];
|
|
|
|
|
1998-06-01 12:44:48 +08:00
|
|
|
/* Table of -I directories. */
|
|
|
|
extern char **include_dirs;
|
|
|
|
extern int include_dir_count;
|
|
|
|
extern int include_dir_maxlen;
|
|
|
|
|
* read.c (abs_section_offset): New global variable.
(potable): Add offset, struct.
(do_org): New static function; handle changing the origin in the
absolute section.
(s_org): Use do_org.
(s_set): Likewise.
(equals): Likewise.
(s_space): In absolute_section, just increase abs_section_offset.
(s_struct): New function.
(emit_expr): Handle absolute_section specially.
* read.h (abs_section_offset): Declare.
(s_struct): Declare.
* read.c (potable): Add ifeq, ifge, ifgt, ifle, iflt, ifne.
Change if to pass O_ne to s_if.
(read_a_source_file): Don't define an label without a colon if
ignore_input returns true.
* read.c (potable): Add dcb, dcb.b, dcb.d, dcb.l, dcb.s, dcb.w,
dcb.x, ds.d, ds.p, ds.s, ds.x, elsec, endc, fail, format, llen,
noformat.
(read_a_source_file): If pseudo-op handler is s_end, quit
immediately.
(s_end): New function.
(s_fail): New function.
(s_float_space): New function.
(hex_float): New static function.
(float_cons): Use hex_float.
* read.h (s_fail): Declare.
(s_float_space): Declare.
1995-08-10 03:36:25 +08:00
|
|
|
/* The offset in the absolute section. */
|
|
|
|
extern addressT abs_section_offset;
|
|
|
|
|
1997-08-16 02:19:27 +08:00
|
|
|
/* The label on a line, used by some of the pseudo-ops. */
|
|
|
|
extern symbolS *line_label;
|
1995-08-10 07:16:06 +08:00
|
|
|
|
1995-08-09 05:41:30 +08:00
|
|
|
/* This is used to support MRI common sections. */
|
|
|
|
extern symbolS *mri_common_symbol;
|
|
|
|
|
1997-08-16 02:19:27 +08:00
|
|
|
/* Possible arguments to .linkonce. */
|
|
|
|
enum linkonce_type
|
|
|
|
{
|
|
|
|
LINKONCE_UNSET = 0,
|
|
|
|
LINKONCE_DISCARD,
|
|
|
|
LINKONCE_ONE_ONLY,
|
|
|
|
LINKONCE_SAME_SIZE,
|
|
|
|
LINKONCE_SAME_CONTENTS
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void pop_insert PARAMS ((const pseudo_typeS *));
|
|
|
|
extern unsigned int get_stab_string_offset
|
|
|
|
PARAMS ((const char *string, const char *stabstr_secname));
|
|
|
|
extern char *demand_copy_C_string PARAMS ((int *len_pointer));
|
|
|
|
extern char get_absolute_expression_and_terminator
|
|
|
|
PARAMS ((long *val_pointer));
|
|
|
|
extern offsetT get_absolute_expression PARAMS ((void));
|
|
|
|
extern unsigned int next_char_of_string PARAMS ((void));
|
|
|
|
extern void s_mri_sect PARAMS ((char *));
|
|
|
|
extern char *mri_comment_field PARAMS ((char *));
|
|
|
|
extern void mri_comment_end PARAMS ((char *, int));
|
|
|
|
extern void add_include_dir PARAMS ((char *path));
|
|
|
|
extern void cons PARAMS ((int nbytes));
|
|
|
|
extern void demand_empty_rest_of_line PARAMS ((void));
|
|
|
|
extern void emit_expr PARAMS ((expressionS *exp, unsigned int nbytes));
|
|
|
|
extern void emit_leb128_expr PARAMS ((expressionS *, int));
|
|
|
|
extern void equals PARAMS ((char *sym_name, int reassign));
|
|
|
|
extern void float_cons PARAMS ((int float_type));
|
|
|
|
extern void ignore_rest_of_line PARAMS ((void));
|
|
|
|
extern int output_leb128 PARAMS ((char *, valueT, int sign));
|
|
|
|
extern void pseudo_set PARAMS ((symbolS * symbolP));
|
|
|
|
extern void read_a_source_file PARAMS ((char *name));
|
|
|
|
extern void read_begin PARAMS ((void));
|
|
|
|
extern void read_print_statistics PARAMS ((FILE *));
|
|
|
|
extern int sizeof_leb128 PARAMS ((valueT, int sign));
|
1998-06-01 12:44:48 +08:00
|
|
|
extern void stabs_generate_asm_file PARAMS ((void));
|
1997-08-16 02:19:27 +08:00
|
|
|
extern void stabs_generate_asm_lineno PARAMS ((void));
|
1998-06-01 12:44:48 +08:00
|
|
|
extern void stabs_generate_asm_func PARAMS ((const char *, const char *));
|
|
|
|
extern void stabs_generate_asm_endfunc PARAMS ((const char *, const char *));
|
1997-08-16 02:19:27 +08:00
|
|
|
|
|
|
|
extern void s_abort PARAMS ((int));
|
|
|
|
extern void s_align_bytes PARAMS ((int arg));
|
|
|
|
extern void s_align_ptwo PARAMS ((int));
|
|
|
|
extern void s_app_file PARAMS ((int));
|
|
|
|
extern void s_app_line PARAMS ((int));
|
|
|
|
extern void s_comm PARAMS ((int));
|
|
|
|
extern void s_data PARAMS ((int));
|
|
|
|
extern void s_desc PARAMS ((int));
|
|
|
|
extern void s_else PARAMS ((int arg));
|
|
|
|
extern void s_end PARAMS ((int arg));
|
|
|
|
extern void s_endif PARAMS ((int arg));
|
|
|
|
extern void s_err PARAMS ((int));
|
|
|
|
extern void s_fail PARAMS ((int));
|
|
|
|
extern void s_fill PARAMS ((int));
|
|
|
|
extern void s_float_space PARAMS ((int mult));
|
1998-06-01 12:44:48 +08:00
|
|
|
extern void s_func PARAMS ((int));
|
1997-08-16 02:19:27 +08:00
|
|
|
extern void s_globl PARAMS ((int arg));
|
|
|
|
extern void s_if PARAMS ((int arg));
|
|
|
|
extern void s_ifc PARAMS ((int arg));
|
|
|
|
extern void s_ifdef PARAMS ((int arg));
|
|
|
|
extern void s_ifeqs PARAMS ((int arg));
|
|
|
|
extern void s_ignore PARAMS ((int arg));
|
|
|
|
extern void s_include PARAMS ((int arg));
|
|
|
|
extern void s_irp PARAMS ((int arg));
|
|
|
|
extern void s_lcomm PARAMS ((int needs_align));
|
1998-06-01 12:44:48 +08:00
|
|
|
extern void s_lcomm_bytes PARAMS ((int needs_align));
|
1997-08-16 02:19:27 +08:00
|
|
|
extern void s_leb128 PARAMS ((int sign));
|
|
|
|
extern void s_linkonce PARAMS ((int));
|
|
|
|
extern void s_lsym PARAMS ((int));
|
|
|
|
extern void s_macro PARAMS ((int));
|
|
|
|
extern void s_mexit PARAMS ((int));
|
|
|
|
extern void s_mri PARAMS ((int));
|
|
|
|
extern void s_mri_common PARAMS ((int));
|
|
|
|
extern void s_org PARAMS ((int));
|
|
|
|
extern void s_print PARAMS ((int));
|
|
|
|
extern void s_purgem PARAMS ((int));
|
|
|
|
extern void s_rept PARAMS ((int));
|
|
|
|
extern void s_set PARAMS ((int));
|
|
|
|
extern void s_space PARAMS ((int mult));
|
|
|
|
extern void s_stab PARAMS ((int what));
|
|
|
|
extern void s_struct PARAMS ((int));
|
|
|
|
extern void s_text PARAMS ((int));
|
|
|
|
extern void stringer PARAMS ((int append_zero));
|
|
|
|
extern void s_xstab PARAMS ((int what));
|
|
|
|
extern void s_rva PARAMS ((int));
|
1991-04-05 02:19:53 +08:00
|
|
|
|
1992-02-13 17:13:54 +08:00
|
|
|
/* end of read.h */
|