1999-05-03 15:29:11 +08:00
|
|
|
/* frags.h - Header file for the frag concept.
|
2024-01-04 19:52:08 +08:00
|
|
|
Copyright (C) 1987-2024 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08: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
|
2007-07-03 19:01:12 +08:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 15:29:11 +08: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
|
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
2005-05-05 17:13:19 +08:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#ifndef FRAGS_H
|
|
|
|
#define FRAGS_H
|
|
|
|
|
2000-10-18 04:21:45 +08:00
|
|
|
/* A code fragment (frag) is some known number of chars, followed by some
|
|
|
|
unknown number of chars. Typically the unknown number of chars is an
|
|
|
|
instruction address whose size is yet unknown. We always know the greatest
|
|
|
|
possible size the unknown number of chars may become, and reserve that
|
|
|
|
much room at the end of the frag.
|
|
|
|
Once created, frags do not change address during assembly.
|
|
|
|
We chain the frags in (a) forward-linked list(s). The object-file address
|
|
|
|
of the 1st char of a frag is generally not known until after relax().
|
|
|
|
Many things at assembly time describe an address by {object-file-address
|
|
|
|
of a particular frag}+offset.
|
|
|
|
|
|
|
|
BUG: it may be smarter to have a single pointer off to various different
|
2002-05-03 10:25:33 +08:00
|
|
|
notes for different frag kinds. See how code pans. */
|
2000-10-18 04:21:45 +08:00
|
|
|
|
|
|
|
struct frag {
|
2000-09-13 04:57:14 +08:00
|
|
|
/* Object file address (as an octet offset). */
|
1999-05-03 15:29:11 +08:00
|
|
|
addressT fr_address;
|
2001-03-30 10:19:36 +08:00
|
|
|
/* When relaxing multiple times, remember the address the frag had
|
|
|
|
in the last relax pass. */
|
|
|
|
addressT last_fr_address;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
/* (Fixed) number of octets we know we have. May be 0. */
|
2019-04-15 20:21:44 +08:00
|
|
|
valueT fr_fix;
|
2000-05-23 12:48:21 +08:00
|
|
|
/* May be used for (Variable) number of octets after above.
|
|
|
|
The generic frag handling code no longer makes any use of fr_var. */
|
1999-05-03 15:29:11 +08:00
|
|
|
offsetT fr_var;
|
2000-09-13 04:57:14 +08:00
|
|
|
/* For variable-length tail. */
|
1999-05-03 15:29:11 +08:00
|
|
|
offsetT fr_offset;
|
2001-03-30 10:19:36 +08:00
|
|
|
/* For variable-length tail. */
|
|
|
|
symbolS *fr_symbol;
|
1999-05-03 15:29:11 +08:00
|
|
|
/* Points to opcode low addr byte, for relaxation. */
|
|
|
|
char *fr_opcode;
|
|
|
|
|
2001-03-30 10:19:36 +08:00
|
|
|
/* Chain forward; ascending address order. Rooted in frch_root. */
|
|
|
|
struct frag *fr_next;
|
|
|
|
|
|
|
|
/* Where the frag was created, or where it became a variant frag. */
|
2016-02-22 22:11:27 +08:00
|
|
|
const char *fr_file;
|
2001-03-30 10:19:36 +08:00
|
|
|
unsigned int fr_line;
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#ifndef NO_LISTING
|
|
|
|
struct list_info_struct *line;
|
|
|
|
#endif
|
|
|
|
|
2010-10-19 20:00:33 +08:00
|
|
|
/* A serial number for a sequence of frags having at most one alignment
|
|
|
|
or org frag, and that at the tail of the sequence. */
|
|
|
|
unsigned int region:16;
|
|
|
|
|
2001-03-20 11:12:01 +08:00
|
|
|
/* Flipped each relax pass so we can easily determine whether
|
|
|
|
fr_address has been adjusted. */
|
|
|
|
unsigned int relax_marker:1;
|
|
|
|
|
2004-07-02 14:40:19 +08:00
|
|
|
/* Used to ensure that all insns are emitted on proper address
|
|
|
|
boundaries. */
|
|
|
|
unsigned int has_code:1;
|
|
|
|
unsigned int insn_addr:6;
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
/* What state is my tail in? */
|
|
|
|
relax_stateT fr_type;
|
|
|
|
relax_substateT fr_subtype;
|
|
|
|
|
|
|
|
#ifdef USING_CGEN
|
|
|
|
/* Don't include this unless using CGEN to keep frag size down. */
|
|
|
|
struct {
|
|
|
|
/* CGEN_INSN entry for this instruction. */
|
|
|
|
const struct cgen_insn *insn;
|
|
|
|
/* Index into operand table. */
|
|
|
|
int opindex;
|
|
|
|
/* Target specific data, usually reloc number. */
|
|
|
|
int opinfo;
|
|
|
|
} fr_cgen;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TC_FRAG_TYPE
|
|
|
|
TC_FRAG_TYPE tc_frag_data;
|
|
|
|
#endif
|
2012-02-21 17:13:02 +08:00
|
|
|
#ifdef OBJ_FRAG_TYPE
|
|
|
|
OBJ_FRAG_TYPE obj_frag_data;
|
|
|
|
#endif
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Data begins here. */
|
|
|
|
char fr_literal[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SIZEOF_STRUCT_FRAG \
|
2000-10-18 04:21:45 +08:00
|
|
|
((char *) zero_address_frag.fr_literal - (char *) &zero_address_frag)
|
2000-09-13 04:57:14 +08:00
|
|
|
/* We want to say fr_literal[0] above. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Current frag we are building. This frag is incomplete. It is,
|
|
|
|
however, included in frchain_now. The fr_fix field is bogus;
|
|
|
|
instead, use frag_now_fix (). */
|
|
|
|
COMMON fragS *frag_now;
|
2003-11-23 00:03:03 +08:00
|
|
|
extern addressT frag_now_fix (void);
|
|
|
|
extern addressT frag_now_fix_octets (void);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2000-09-13 04:57:14 +08:00
|
|
|
/* For foreign-segment symbol fixups. */
|
1999-05-03 15:29:11 +08:00
|
|
|
COMMON fragS zero_address_frag;
|
2011-10-13 05:07:07 +08:00
|
|
|
COMMON fragS predefined_address_frag;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2003-11-23 00:03:03 +08:00
|
|
|
extern void frag_append_1_char (int);
|
1999-05-03 15:29:11 +08:00
|
|
|
#define FRAG_APPEND_1_CHAR(X) frag_append_1_char (X)
|
|
|
|
|
2003-11-23 00:03:03 +08:00
|
|
|
void frag_init (void);
|
|
|
|
fragS *frag_alloc (struct obstack *);
|
2014-07-26 19:30:50 +08:00
|
|
|
void frag_grow (size_t nchars);
|
|
|
|
char *frag_more (size_t nchars);
|
2003-11-23 00:03:03 +08:00
|
|
|
void frag_align (int alignment, int fill_character, int max);
|
|
|
|
void frag_align_pattern (int alignment, const char *fill_pattern,
|
2014-07-26 19:30:50 +08:00
|
|
|
size_t n_fill, int max);
|
2003-11-23 00:03:03 +08:00
|
|
|
void frag_align_code (int alignment, int max);
|
2014-07-26 19:30:50 +08:00
|
|
|
void frag_new (size_t old_frags_var_max_size);
|
2003-11-23 00:03:03 +08:00
|
|
|
void frag_wane (fragS * fragP);
|
2014-07-26 19:30:50 +08:00
|
|
|
size_t frag_room (void);
|
2003-11-23 00:03:03 +08:00
|
|
|
|
|
|
|
char *frag_variant (relax_stateT type,
|
2014-07-26 19:30:50 +08:00
|
|
|
size_t max_chars,
|
|
|
|
size_t var,
|
2003-11-23 00:03:03 +08:00
|
|
|
relax_substateT subtype,
|
|
|
|
symbolS * symbol,
|
|
|
|
offsetT offset,
|
|
|
|
char *opcode);
|
|
|
|
|
|
|
|
char *frag_var (relax_stateT type,
|
2014-07-26 19:30:50 +08:00
|
|
|
size_t max_chars,
|
|
|
|
size_t var,
|
2003-11-23 00:03:03 +08:00
|
|
|
relax_substateT subtype,
|
|
|
|
symbolS * symbol,
|
|
|
|
offsetT offset,
|
|
|
|
char *opcode);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 08:12:05 +08:00
|
|
|
bool frag_offset_fixed_p (const fragS *, const fragS *, offsetT *);
|
|
|
|
bool frag_offset_ignore_align_p (const fragS *, const fragS *, offsetT *);
|
|
|
|
bool frag_gtoffset_p (valueT, const fragS *, valueT, const fragS *, offsetT *);
|
2006-04-04 16:04:57 +08:00
|
|
|
|
2014-03-21 19:53:42 +08:00
|
|
|
int get_frag_count (void);
|
|
|
|
void clear_frag_count (void);
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif /* FRAGS_H */
|