1999-05-03 09:29:11 +02:00
|
|
|
/* read.h - of read.c
|
2001-03-09 00:24:26 +01:00
|
|
|
Copyright 1986, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2007-07-03 13:01:12 +02:00
|
|
|
2000, 2001, 2002, 2003, 2004, 2005, 2007
|
1999-05-03 09:29:11 +02:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 13:01:12 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 09:29:11 +02:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2000-12-14 02:12:43 +01:00
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
2005-05-05 11:13:19 +02:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-12-14 02:12:43 +01:00
|
|
|
extern char *input_line_pointer; /* -> char we are parsing now. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-12-14 02:12:43 +01:00
|
|
|
/* Define to make whitespace be allowed in many syntactically
|
|
|
|
unnecessary places. Normally undefined. For compatibility with
|
|
|
|
ancient GNU cc. */
|
1999-05-03 09:29:11 +02:00
|
|
|
/* #undef PERMIT_WHITESPACE */
|
2000-12-14 02:12:43 +01:00
|
|
|
#define PERMIT_WHITESPACE
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#ifdef PERMIT_WHITESPACE
|
2000-12-14 02:12:43 +01:00
|
|
|
#define SKIP_WHITESPACE() \
|
2004-02-06 17:00:21 +01:00
|
|
|
((*input_line_pointer == ' ') ? ++input_line_pointer : 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
#else
|
|
|
|
#define SKIP_WHITESPACE() know(*input_line_pointer != ' ' )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LEX_NAME (1) /* may continue a name */
|
|
|
|
#define LEX_BEGIN_NAME (2) /* may begin a name */
|
1999-06-05 20:19:09 +02:00
|
|
|
#define LEX_END_NAME (4) /* ends a name */
|
1999-05-03 09:29:11 +02: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 )
|
1999-06-05 20:19:09 +02:00
|
|
|
#define is_name_ender(c) \
|
|
|
|
( lex_type[(unsigned char) (c)] & LEX_END_NAME )
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#ifndef is_a_char
|
|
|
|
#define CHAR_MASK (0xff)
|
|
|
|
#define NOT_A_CHAR (CHAR_MASK+1)
|
2000-12-14 02:12:43 +01:00
|
|
|
#define is_a_char(c) (((unsigned) (c)) <= CHAR_MASK)
|
1999-05-03 09:29:11 +02:00
|
|
|
#endif /* is_a_char() */
|
|
|
|
|
|
|
|
extern char lex_type[];
|
|
|
|
extern char is_end_of_line[];
|
|
|
|
|
2003-11-27 20:14:41 +01:00
|
|
|
extern int is_it_end_of_statement (void);
|
2005-05-17 16:02:30 +02:00
|
|
|
extern char *find_end_of_line (char *, int);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
extern int target_big_endian;
|
|
|
|
|
|
|
|
/* 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[];
|
|
|
|
|
|
|
|
/* Table of -I directories. */
|
|
|
|
extern char **include_dirs;
|
|
|
|
extern int include_dir_count;
|
|
|
|
extern int include_dir_maxlen;
|
|
|
|
|
|
|
|
/* The offset in the absolute section. */
|
|
|
|
extern addressT abs_section_offset;
|
|
|
|
|
|
|
|
/* The label on a line, used by some of the pseudo-ops. */
|
|
|
|
extern symbolS *line_label;
|
|
|
|
|
|
|
|
/* This is used to support MRI common sections. */
|
|
|
|
extern symbolS *mri_common_symbol;
|
|
|
|
|
2000-12-05 01:56:09 +01:00
|
|
|
/* True if a stabs line debug statement is currently being emitted. */
|
2000-12-12 22:21:39 +01:00
|
|
|
extern int outputting_stabs_line_debug;
|
2000-12-05 01:56:09 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Possible arguments to .linkonce. */
|
2000-12-14 02:12:43 +01:00
|
|
|
enum linkonce_type {
|
1999-05-03 09:29:11 +02:00
|
|
|
LINKONCE_UNSET = 0,
|
|
|
|
LINKONCE_DISCARD,
|
|
|
|
LINKONCE_ONE_ONLY,
|
|
|
|
LINKONCE_SAME_SIZE,
|
|
|
|
LINKONCE_SAME_CONTENTS
|
|
|
|
};
|
|
|
|
|
2004-02-09 13:12:42 +01:00
|
|
|
#ifndef TC_CASE_SENSITIVE
|
2000-11-02 20:32:47 +01:00
|
|
|
extern char original_case_string[];
|
|
|
|
#endif
|
|
|
|
|
2003-11-27 20:14:41 +01:00
|
|
|
extern void pop_insert (const pseudo_typeS *);
|
1999-05-03 09:29:11 +02:00
|
|
|
extern unsigned int get_stab_string_offset
|
2003-11-27 20:14:41 +01:00
|
|
|
(const char *string, const char *stabstr_secname);
|
|
|
|
extern void aout_process_stab (int, const char *, int, int, int);
|
|
|
|
extern char *demand_copy_string (int *lenP);
|
|
|
|
extern char *demand_copy_C_string (int *len_pointer);
|
|
|
|
extern char get_absolute_expression_and_terminator (long *val_pointer);
|
|
|
|
extern offsetT get_absolute_expression (void);
|
|
|
|
extern unsigned int next_char_of_string (void);
|
|
|
|
extern void s_mri_sect (char *);
|
|
|
|
extern char *mri_comment_field (char *);
|
|
|
|
extern void mri_comment_end (char *, int);
|
|
|
|
extern void add_include_dir (char *path);
|
|
|
|
extern void cons (int nbytes);
|
|
|
|
extern void demand_empty_rest_of_line (void);
|
|
|
|
extern void emit_expr (expressionS *exp, unsigned int nbytes);
|
|
|
|
extern void equals (char *sym_name, int reassign);
|
|
|
|
extern void float_cons (int float_type);
|
|
|
|
extern void ignore_rest_of_line (void);
|
2005-05-17 16:02:30 +02:00
|
|
|
#define discard_rest_of_line ignore_rest_of_line
|
2003-11-27 20:14:41 +01:00
|
|
|
extern int output_leb128 (char *, valueT, int sign);
|
|
|
|
extern void pseudo_set (symbolS * symbolP);
|
|
|
|
extern void read_a_source_file (char *name);
|
|
|
|
extern void read_begin (void);
|
|
|
|
extern void read_print_statistics (FILE *);
|
|
|
|
extern int sizeof_leb128 (valueT, int sign);
|
|
|
|
extern void stabs_generate_asm_file (void);
|
|
|
|
extern void stabs_generate_asm_lineno (void);
|
|
|
|
extern void stabs_generate_asm_func (const char *, const char *);
|
|
|
|
extern void stabs_generate_asm_endfunc (const char *, const char *);
|
|
|
|
extern void do_repeat (int,const char *,const char *);
|
|
|
|
extern void end_repeat (int);
|
|
|
|
extern void do_parse_cons_expression (expressionS *, int);
|
|
|
|
|
|
|
|
extern void generate_lineno_debug (void);
|
|
|
|
|
|
|
|
extern void s_abort (int) ATTRIBUTE_NORETURN;
|
|
|
|
extern void s_align_bytes (int arg);
|
|
|
|
extern void s_align_ptwo (int);
|
2003-12-13 09:23:05 +01:00
|
|
|
extern void bss_alloc (symbolS *, addressT, int);
|
|
|
|
extern offsetT parse_align (int);
|
|
|
|
extern symbolS *s_comm_internal (int, symbolS *(*) (int, symbolS *, addressT));
|
2003-12-13 09:59:24 +01:00
|
|
|
extern symbolS *s_lcomm_internal (int, symbolS *, addressT);
|
2004-11-10 04:28:45 +01:00
|
|
|
extern void s_app_file_string (char *, int);
|
2003-11-27 20:14:41 +01:00
|
|
|
extern void s_app_file (int);
|
|
|
|
extern void s_app_line (int);
|
|
|
|
extern void s_comm (int);
|
|
|
|
extern void s_data (int);
|
|
|
|
extern void s_desc (int);
|
|
|
|
extern void s_else (int arg);
|
|
|
|
extern void s_elseif (int arg);
|
|
|
|
extern void s_end (int arg);
|
|
|
|
extern void s_endif (int arg);
|
|
|
|
extern void s_err (int);
|
2004-11-22 14:05:27 +01:00
|
|
|
extern void s_errwarn (int);
|
2003-11-27 20:14:41 +01:00
|
|
|
extern void s_fail (int);
|
|
|
|
extern void s_fill (int);
|
|
|
|
extern void s_float_space (int mult);
|
|
|
|
extern void s_func (int);
|
|
|
|
extern void s_globl (int arg);
|
|
|
|
extern void s_if (int arg);
|
2005-05-06 08:38:11 +02:00
|
|
|
extern void s_ifb (int arg);
|
2003-11-27 20:14:41 +01:00
|
|
|
extern void s_ifc (int arg);
|
|
|
|
extern void s_ifdef (int arg);
|
|
|
|
extern void s_ifeqs (int arg);
|
|
|
|
extern void s_ignore (int arg);
|
|
|
|
extern void s_include (int arg);
|
|
|
|
extern void s_irp (int arg);
|
|
|
|
extern void s_lcomm (int needs_align);
|
|
|
|
extern void s_lcomm_bytes (int needs_align);
|
|
|
|
extern void s_leb128 (int sign);
|
|
|
|
extern void s_linkonce (int);
|
|
|
|
extern void s_lsym (int);
|
|
|
|
extern void s_macro (int);
|
|
|
|
extern void s_mexit (int);
|
|
|
|
extern void s_mri (int);
|
|
|
|
extern void s_mri_common (int);
|
|
|
|
extern void s_org (int);
|
|
|
|
extern void s_print (int);
|
|
|
|
extern void s_purgem (int);
|
|
|
|
extern void s_rept (int);
|
|
|
|
extern void s_set (int);
|
|
|
|
extern void s_space (int mult);
|
|
|
|
extern void s_stab (int what);
|
|
|
|
extern void s_struct (int);
|
|
|
|
extern void s_text (int);
|
|
|
|
extern void stringer (int append_zero);
|
|
|
|
extern void s_xstab (int what);
|
|
|
|
extern void s_rva (int);
|
|
|
|
extern void s_incbin (int);
|
bfd:
* elf-attrs.c: New.
* Makefile.am (BFD32_BACKENDS): Add elf-attrs.lo.
(BFD32_BACKENDS_CFILES): Add elf-attrs.c.
(elf-attrs.lo): Generate dependencies.
* Makefile.in: Regenerate.
* configure.in (elf): Add elf-attrs.lo.
* configure: Regenerate.
* elf-bfd.h (struct elf_backend_data): Add entries for object
attributes.
(NUM_KNOWN_OBJ_ATTRIBUTES, obj_attribute, obj_attribute_list,
OBJ_ATTR_PROC, OBJ_ATTR_GNU, OBJ_ATTR_FIRST, OBJ_ATTR_LAST,
Tag_NULL, Tag_File, Tag_Section, Tag_Symbol, Tag_compatibility):
New.
(struct elf_obj_tdata): Add entries for object attributes.
(elf_known_obj_attributes, elf_other_obj_attributes,
elf_known_obj_attributes_proc, elf_other_obj_attributes_proc):
New.
(bfd_elf_obj_attr_size, bfd_elf_set_obj_attr_contents,
bfd_elf_get_obj_attr_int, bfd_elf_add_obj_attr_int,
bfd_elf_add_proc_attr_int, bfd_elf_add_obj_attr_string,
bfd_elf_add_proc_attr_string, bfd_elf_add_obj_attr_compat,
bfd_elf_add_proc_attr_compat, _bfd_elf_attr_strdup,
_bfd_elf_copy_obj_attributes, _bfd_elf_obj_attrs_arg_type,
_bfd_elf_parse_attributes, _bfd_elf_merge_object_attributes): New.
* elf.c (_bfd_elf_copy_private_bfd_data): Copy object attributes.
(bfd_section_from_shdr): Handle attributes sections.
* elflink.c (bfd_elf_final_link): Handle attributes sections.
* elfxx-target.h (elf_backend_obj_attrs_vendor,
elf_backend_obj_attrs_section, elf_backend_obj_attrs_arg_type,
elf_backend_obj_attrs_section_type): New.
(elfNN_bed): Update.
* elf32-arm.c (NUM_KNOWN_ATTRIBUTES, aeabi_attribute,
aeabi_attribute_list): Remove.
(struct elf32_arm_obj_tdata): Remove object attributes fields.
(check_use_blx, bfd_elf32_arm_set_vfp11_fix, using_thumb2,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_eabi_attributes):
Update for new object attributes interfaces.
(uleb128_size, is_default_attr, eabi_attr_size,
elf32_arm_eabi_attr_size, write_uleb128, write_eabi_attribute,
elf32_arm_set_eabi_attr_contents, elf32_arm_bfd_final_link,
elf32_arm_new_eabi_attr, elf32_arm_get_eabi_attr_int,
elf32_arm_add_eabi_attr_int, attr_strdup,
elf32_arm_add_eabi_attr_string, elf32_arm_add_eabi_attr_compat,
copy_eabi_attributes, elf32_arm_parse_attributes): Remove. Moved
to generic code in elf-attrs.c.
(elf32_arm_obj_attrs_arg_type): New.
(elf32_arm_fake_sections): Do not handle .ARM.attributes.
(elf32_arm_section_from_shdr): Do not handle SHT_ARM_ATTRIBUTES.
(bfd_elf32_bfd_final_link): Remove.
(elf_backend_obj_attrs_vendor, elf_backend_obj_attrs_section,
elf_backend_obj_attrs_arg_type,
elf_backend_obj_attrs_section_type): New.
* elf32-bfin.c (bfin_elf_copy_private_bfd_data): Copy object
attributes.
* elf32-frv.c (frv_elf_copy_private_bfd_data): Likewise.
* elf32-iq2000.c (iq2000_elf_copy_private_bfd_data): Likewise.
* elf32-mep.c (mep_elf_copy_private_bfd_data): Likewise.
* elf32-mt.c (mt_elf_copy_private_bfd_data): Likewise.
* elf32-sh.c (sh_elf_copy_private_data): Likewise.
* elf64-sh64.c (sh_elf64_copy_private_data_internal): Likewise.
binutils:
* readelf.c (display_gnu_attribute): New.
(process_arm_specific): Rearrange as process_attributes.
(process_arm_specific): Replace by wrapper of process_attributes.
gas:
* as.c (create_obj_attrs_section): New.
(main): Call create_obj_attrs_section for ELF.
* read.c (s_gnu_attribute, skip_whitespace, skip_past_char,
skip_past_comma, s_vendor_attribute): New.
(potable): Add gnu_attribute for ELF.
* read.h (s_vendor_attribute): Declare.
* config/tc-arm.c (s_arm_eabi_attribute): Replace by wrapper
round s_vendor_attribute.
(aeabi_set_public_attributes): Update for new attributes
interfaces.
(arm_md_end): Remove attributes contents setting now done
generically.
include/elf:
* arm.h (elf32_arm_add_eabi_attr_int,
elf32_arm_add_eabi_attr_string, elf32_arm_add_eabi_attr_compat,
elf32_arm_get_eabi_attr_int, elf32_arm_set_eabi_attr_contents,
elf32_arm_eabi_attr_size, Tag_NULL, Tag_File, Tag_Section,
Tag_Symbol, Tag_compatibility): Remove.
* common.h (SHT_GNU_ATTRIBUTES): Define.
ld:
* emulparams/armelf.sh (OTHER_SECTIONS): Remove .ARM.attributes.
(ATTRS_SECTIONS): Define.
* scripttempl/elf.sc, scripttempl/elf32sh-symbian.sc,
scripttempl/elf_chaos.sc, scripttempl/elfi370.sc,
scripttempl/elfxtensa.sc: Handle ATTRS_SECTIONS.
2007-06-29 18:29:17 +02:00
|
|
|
extern void s_vendor_attribute (int);
|
gas/ChangeLog:
* read.c (potable): Add weakref.
(s_weakref): New.
* read.h (s_weakref): Declare.
* struc-symbol.h (struct symbol): Add sy_weakrefr and sy_weakrefd.
* symbols.c (colon): Clear weakrefr.
(symbol_find_exact): Rename to, and reimplement in terms of...
(symbol_find_exact_noref): ... new function.
(symbol_find): Likewise...
(symbol_find_noref): ... ditto.
(resolve_symbol_value): Resolve weakrefr without setting their
values.
(S_SET_WEAK): Call hook.
(S_GET_VALUE): Follow weakref link.
(S_SET_VALUE): Clear weakrefr.
(S_IS_WEAK): Follow weakref link.
(S_IS_WEAKREFR, S_SET_WEAKREFR, S_CLEAR_WEAKREFR): New.
(S_IS_WEAKREFD, S_SET_WEAKREFD, S_CLEAR_WEAKREFD): New.
(symbol_set_value_expression, symbol_set_frag): Clear weakrefr.
(symbol_mark_used): Follow weakref link.
(print_symbol_value_1): Print weak, weakrefr and weakrefd.
* symbols.h (symbol_find_noref, symbol_find_exact_noref): Declare.
(S_IS_WEAKREFR, S_SET_WEAKREFR, S_CLEAR_WEAKREFR): Declare.
(S_IS_WEAKREFD, S_SET_WEAKREFD, S_CLEAR_WEAKREFD): Declare.
* write.c (adust_reloc_syms): Follow weakref link. Do not
complain if target is undefined.
(write_object_file): Likewise. Remove weakrefr symbols. Drop
unreferenced weakrefd symbols.
* config/obj-coff.c (obj_frob_symbol): Do not force WEAKREFD
symbols EXTERNAL.
(pecoff_obj_set_weak_hook, pecoff_obj_clear_weak_hook): New.
* config/obj-coff.h (obj_set_weak_hook, obj_clear_weak_hook): Define.
* doc/as.texinfo: Document weakref.
* doc/internals.texi: Document new struct members, internal
functions and hooks.
gas/testsuite/ChangeLog:
* gas/all/weakref1.s, gas/all/weakref1.d: New test.
* gas/all/weakref1g.d, gas/all/weakref1l.d: New tests.
* gas/all/weakref1u.d, gas/all/weakref1w.d: New tests.
* gas/all/weakref2.s, gas/all/weakref3.s: New tests.
* gas/all/gas.exp: Run new tests.
2005-10-24 19:51:42 +02:00
|
|
|
extern void s_weakref (int);
|