1999-05-03 09:29:11 +02:00
|
|
|
/* obj-aout.h, a.out object file format for gas, the assembler.
|
2002-09-05 02:01:18 +02:00
|
|
|
Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2000,
|
2003-01-23 13:51:05 +01:00
|
|
|
2002, 2003 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
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 the Free Software Foundation; either version 2,
|
|
|
|
or (at your option) 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
|
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
|
|
|
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
2000-09-12 23:49:09 +02:00
|
|
|
02111-1307, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Tag to validate a.out object file format processing */
|
|
|
|
#define OBJ_AOUT 1
|
|
|
|
|
|
|
|
#include "targ-cpu.h"
|
|
|
|
|
|
|
|
#ifdef BFD_ASSEMBLER
|
|
|
|
|
|
|
|
#include "bfd/libaout.h"
|
|
|
|
|
|
|
|
#define OUTPUT_FLAVOR bfd_target_aout_flavour
|
|
|
|
|
|
|
|
#else /* ! BFD_ASSEMBLER */
|
|
|
|
|
|
|
|
#ifndef VMS
|
2000-09-12 23:49:09 +02:00
|
|
|
#include "aout_gnu.h" /* Needed to define struct nlist. Sigh. */
|
1999-05-03 09:29:11 +02:00
|
|
|
#else
|
|
|
|
#include "a_out.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AOUT_MACHTYPE
|
|
|
|
#define AOUT_MACHTYPE 0
|
|
|
|
#endif /* AOUT_MACHTYPE */
|
|
|
|
|
|
|
|
extern const short seg_N_TYPE[];
|
|
|
|
extern const segT N_TYPE_seg[];
|
|
|
|
|
|
|
|
#ifndef DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE
|
|
|
|
#define DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE (OMAGIC)
|
|
|
|
#endif /* DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE */
|
|
|
|
|
|
|
|
#endif /* ! BFD_ASSEMBLER */
|
|
|
|
|
2000-01-26 23:48:31 +01:00
|
|
|
extern const pseudo_typeS aout_pseudo_table[];
|
|
|
|
|
|
|
|
#ifndef obj_pop_insert
|
|
|
|
#define obj_pop_insert() pop_insert (aout_pseudo_table)
|
|
|
|
#endif
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* SYMBOL TABLE */
|
|
|
|
/* Symbol table entry data type */
|
|
|
|
|
|
|
|
typedef struct nlist obj_symbol_type; /* Symbol table entry */
|
|
|
|
|
|
|
|
/* Symbol table macros and constants */
|
|
|
|
|
|
|
|
#ifdef BFD_ASSEMBLER
|
|
|
|
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 02:29:48 +02:00
|
|
|
#define S_SET_OTHER(S,V) \
|
|
|
|
(aout_symbol (symbol_get_bfdsym (S))->other = (V))
|
|
|
|
#define S_SET_TYPE(S,T) \
|
|
|
|
(aout_symbol (symbol_get_bfdsym (S))->type = (T))
|
|
|
|
#define S_SET_DESC(S,D) \
|
|
|
|
(aout_symbol (symbol_get_bfdsym (S))->desc = (D))
|
|
|
|
#define S_GET_OTHER(S) \
|
|
|
|
(aout_symbol (symbol_get_bfdsym (S))->other)
|
|
|
|
#define S_GET_TYPE(S) \
|
|
|
|
(aout_symbol (symbol_get_bfdsym (S))->type)
|
|
|
|
#define S_GET_DESC(S) \
|
|
|
|
(aout_symbol (symbol_get_bfdsym (S))->desc)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
asection *text_section, *data_section, *bss_section;
|
|
|
|
|
|
|
|
#define obj_frob_symbol(S,PUNT) obj_aout_frob_symbol (S, &PUNT)
|
2002-09-05 02:01:18 +02:00
|
|
|
#define obj_frob_file_before_fix() obj_aout_frob_file_before_fix ()
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 02:29:48 +02:00
|
|
|
extern void obj_aout_frob_symbol PARAMS ((symbolS *, int *));
|
2002-09-05 02:01:18 +02:00
|
|
|
extern void obj_aout_frob_file_before_fix PARAMS ((void));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define obj_sec_sym_ok_for_reloc(SEC) (1)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* We use the sy_obj field to record whether a symbol is weak. */
|
|
|
|
#define OBJ_SYMFIELD_TYPE char
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macros to extract information from a symbol table entry.
|
2003-11-20 01:01:55 +01:00
|
|
|
* This syntactic indirection allows independence regarding a.out or coff.
|
1999-05-03 09:29:11 +02:00
|
|
|
* The argument (s) of all these macros is a pointer to a symbol table entry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* True if the symbol is external */
|
|
|
|
#define S_IS_EXTERNAL(s) ((s)->sy_symbol.n_type & N_EXT)
|
|
|
|
|
|
|
|
/* True if symbol has been defined, ie is in N_{TEXT,DATA,BSS,ABS} or N_EXT */
|
|
|
|
#define S_IS_DEFINED(s) \
|
|
|
|
(S_GET_TYPE (s) != N_UNDF || S_GET_DESC (s) != 0)
|
|
|
|
|
|
|
|
#define S_IS_COMMON(s) \
|
|
|
|
(S_GET_TYPE (s) == N_UNDF && S_GET_VALUE (s) != 0)
|
|
|
|
|
2002-09-05 02:01:18 +02:00
|
|
|
/* Return true for symbols that should not be reduced to section
|
|
|
|
symbols or eliminated from expressions, because they may be
|
|
|
|
overridden by the linker. */
|
2003-01-23 13:51:05 +01:00
|
|
|
#define S_FORCE_RELOC(s, strict) \
|
2002-09-05 02:01:18 +02:00
|
|
|
(!SEG_NORMAL (S_GET_SEGMENT (s)))
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#define S_IS_REGISTER(s) ((s)->sy_symbol.n_type == N_REGISTER)
|
|
|
|
|
|
|
|
/* True if a debug special symbol entry */
|
|
|
|
#define S_IS_DEBUG(s) ((s)->sy_symbol.n_type & N_STAB)
|
|
|
|
/* True if a symbol is local symbol name */
|
|
|
|
#define S_IS_LOCAL(s) \
|
|
|
|
((S_GET_NAME (s) \
|
|
|
|
&& !S_IS_DEBUG (s) \
|
|
|
|
&& (strchr (S_GET_NAME (s), '\001') != NULL \
|
|
|
|
|| strchr (S_GET_NAME (s), '\002') != NULL \
|
|
|
|
|| (S_LOCAL_NAME(s) && !flag_keep_locals))) \
|
|
|
|
|| (flag_strip_local_absolute \
|
|
|
|
&& ! S_IS_EXTERNAL(s) \
|
|
|
|
&& S_GET_SEGMENT (s) == absolute_section))
|
|
|
|
/* True if a symbol is not defined in this file */
|
|
|
|
#define S_IS_EXTERN(s) ((s)->sy_symbol.n_type & N_EXT)
|
|
|
|
/* True if the symbol has been generated because of a .stabd directive */
|
|
|
|
#define S_IS_STABD(s) (S_GET_NAME(s) == (char *)0)
|
|
|
|
|
|
|
|
/* Accessors */
|
|
|
|
/* The name of the symbol */
|
|
|
|
#define S_GET_NAME(s) ((s)->sy_symbol.n_un.n_name)
|
|
|
|
/* The pointer to the string table */
|
|
|
|
#define S_GET_OFFSET(s) ((s)->sy_symbol.n_un.n_strx)
|
|
|
|
/* The type of the symbol */
|
|
|
|
#define S_GET_TYPE(s) ((s)->sy_symbol.n_type & N_TYPE)
|
|
|
|
/* The numeric value of the segment */
|
|
|
|
#define S_GET_SEGMENT(s) (N_TYPE_seg[S_GET_TYPE(s)])
|
|
|
|
/* The n_other expression value */
|
|
|
|
#define S_GET_OTHER(s) ((s)->sy_symbol.n_other)
|
|
|
|
/* The n_desc expression value */
|
|
|
|
#define S_GET_DESC(s) ((s)->sy_symbol.n_desc)
|
|
|
|
/* Whether the symbol is weak. */
|
|
|
|
#define S_GET_WEAK(s) ((s)->sy_obj)
|
|
|
|
|
|
|
|
/* Modifiers */
|
|
|
|
/* Assume that a symbol cannot be simultaneously in more than on segment */
|
|
|
|
/* set segment */
|
|
|
|
#define S_SET_SEGMENT(s,seg) ((s)->sy_symbol.n_type &= ~N_TYPE,(s)->sy_symbol.n_type|=SEGMENT_TO_SYMBOL_TYPE(seg))
|
|
|
|
/* The symbol is external */
|
|
|
|
#define S_SET_EXTERNAL(s) ((s)->sy_symbol.n_type |= N_EXT)
|
|
|
|
/* The symbol is not external */
|
|
|
|
#define S_CLEAR_EXTERNAL(s) ((s)->sy_symbol.n_type &= ~N_EXT)
|
|
|
|
/* Set the name of the symbol */
|
|
|
|
#define S_SET_NAME(s,v) ((s)->sy_symbol.n_un.n_name = (v))
|
|
|
|
/* Set the offset in the string table */
|
|
|
|
#define S_SET_OFFSET(s,v) ((s)->sy_symbol.n_un.n_strx = (v))
|
|
|
|
/* Set the n_type field */
|
|
|
|
#define S_SET_TYPE(s,t) ((s)->sy_symbol.n_type = (t))
|
|
|
|
/* Set the n_other expression value */
|
|
|
|
#define S_SET_OTHER(s,v) ((s)->sy_symbol.n_other = (v))
|
|
|
|
/* Set the n_desc expression value */
|
|
|
|
#define S_SET_DESC(s,v) ((s)->sy_symbol.n_desc = (v))
|
|
|
|
/* Mark the symbol as weak. This causes n_type to be adjusted when
|
|
|
|
the symbol is written out. */
|
|
|
|
#define S_SET_WEAK(s) ((s)->sy_obj = 1)
|
|
|
|
|
|
|
|
/* File header macro and type definition */
|
|
|
|
|
|
|
|
#define H_GET_FILE_SIZE(h) (H_GET_HEADER_SIZE(h) \
|
|
|
|
+ H_GET_TEXT_SIZE(h) \
|
|
|
|
+ H_GET_DATA_SIZE(h) \
|
|
|
|
+ H_GET_SYMBOL_TABLE_SIZE(h) \
|
|
|
|
+ H_GET_TEXT_RELOCATION_SIZE(h) \
|
|
|
|
+ H_GET_DATA_RELOCATION_SIZE(h) \
|
|
|
|
+ H_GET_STRING_SIZE(h))
|
|
|
|
|
|
|
|
#define H_GET_HEADER_SIZE(h) (EXEC_BYTES_SIZE)
|
|
|
|
#define H_GET_TEXT_SIZE(h) ((h)->header.a_text)
|
|
|
|
#define H_GET_DATA_SIZE(h) ((h)->header.a_data)
|
|
|
|
#define H_GET_BSS_SIZE(h) ((h)->header.a_bss)
|
|
|
|
#define H_GET_TEXT_RELOCATION_SIZE(h) ((h)->header.a_trsize)
|
|
|
|
#define H_GET_DATA_RELOCATION_SIZE(h) ((h)->header.a_drsize)
|
|
|
|
#define H_GET_SYMBOL_TABLE_SIZE(h) ((h)->header.a_syms)
|
|
|
|
#define H_GET_ENTRY_POINT(h) ((h)->header.a_entry)
|
|
|
|
#define H_GET_STRING_SIZE(h) ((h)->string_table_size)
|
|
|
|
#define H_GET_LINENO_SIZE(h) (0)
|
|
|
|
|
|
|
|
#define H_GET_DYNAMIC(h) ((h)->header.a_info >> 31)
|
|
|
|
#define H_GET_VERSION(h) (((h)->header.a_info >> 24) & 0x7f)
|
|
|
|
#define H_GET_MACHTYPE(h) (((h)->header.a_info >> 16) & 0xff)
|
|
|
|
#define H_GET_MAGIC_NUMBER(h) ((h)->header.a_info & 0xffff)
|
|
|
|
|
|
|
|
#define H_SET_DYNAMIC(h,v) ((h)->header.a_info = (((v) << 31) \
|
|
|
|
| (H_GET_VERSION(h) << 24) \
|
|
|
|
| (H_GET_MACHTYPE(h) << 16) \
|
|
|
|
| (H_GET_MAGIC_NUMBER(h))))
|
|
|
|
|
|
|
|
#define H_SET_VERSION(h,v) ((h)->header.a_info = ((H_GET_DYNAMIC(h) << 31) \
|
|
|
|
| ((v) << 24) \
|
|
|
|
| (H_GET_MACHTYPE(h) << 16) \
|
|
|
|
| (H_GET_MAGIC_NUMBER(h))))
|
|
|
|
|
|
|
|
#define H_SET_MACHTYPE(h,v) ((h)->header.a_info = ((H_GET_DYNAMIC(h) << 31) \
|
|
|
|
| (H_GET_VERSION(h) << 24) \
|
|
|
|
| ((v) << 16) \
|
|
|
|
| (H_GET_MAGIC_NUMBER(h))))
|
|
|
|
|
|
|
|
#define H_SET_MAGIC_NUMBER(h,v) ((h)->header.a_info = ((H_GET_DYNAMIC(h) << 31) \
|
|
|
|
| (H_GET_VERSION(h) << 24) \
|
|
|
|
| (H_GET_MACHTYPE(h) << 16) \
|
|
|
|
| ((v))))
|
|
|
|
|
|
|
|
#define H_SET_TEXT_SIZE(h,v) ((h)->header.a_text = md_section_align(SEG_TEXT, (v)))
|
|
|
|
#define H_SET_DATA_SIZE(h,v) ((h)->header.a_data = md_section_align(SEG_DATA, (v)))
|
|
|
|
#define H_SET_BSS_SIZE(h,v) ((h)->header.a_bss = md_section_align(SEG_BSS, (v)))
|
|
|
|
|
|
|
|
#define H_SET_RELOCATION_SIZE(h,t,d) (H_SET_TEXT_RELOCATION_SIZE((h),(t)),\
|
|
|
|
H_SET_DATA_RELOCATION_SIZE((h),(d)))
|
|
|
|
|
|
|
|
#define H_SET_TEXT_RELOCATION_SIZE(h,v) ((h)->header.a_trsize = (v))
|
|
|
|
#define H_SET_DATA_RELOCATION_SIZE(h,v) ((h)->header.a_drsize = (v))
|
|
|
|
#define H_SET_SYMBOL_TABLE_SIZE(h,v) ((h)->header.a_syms = (v) * 12)
|
|
|
|
|
|
|
|
#define H_SET_ENTRY_POINT(h,v) ((h)->header.a_entry = (v))
|
|
|
|
#define H_SET_STRING_SIZE(h,v) ((h)->string_table_size = (v))
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct exec header; /* a.out header */
|
2000-11-28 22:29:02 +01:00
|
|
|
long string_table_size; /* names + '\0' + sizeof (int) */
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
object_headers;
|
|
|
|
|
2000-09-12 23:49:09 +02:00
|
|
|
/* line numbering stuff. */
|
1999-05-03 09:29:11 +02:00
|
|
|
#define OBJ_EMIT_LINENO(a, b, c) {;}
|
|
|
|
|
|
|
|
struct fix;
|
|
|
|
void tc_aout_fix_to_chars PARAMS ((char *where, struct fix *fixP, relax_addressT segment_address));
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-01-26 23:48:31 +01:00
|
|
|
#define obj_read_begin_hook() {;}
|
1999-05-03 09:29:11 +02:00
|
|
|
#define obj_symbol_new_hook(s) {;}
|
|
|
|
|
|
|
|
#define EMIT_SECTION_SYMBOLS 0
|
|
|
|
|
|
|
|
#define AOUT_STABS
|