1999-05-03 09:29:11 +02:00
|
|
|
/* GAS cgen support.
|
2007-07-03 13:01:12 +02:00
|
|
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2007
|
2005-03-03 02:29:54 +01:00
|
|
|
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
|
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.
|
|
|
|
|
2007-07-03 13:01:12 +02: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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
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 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
|
|
|
|
|
|
|
#ifndef GAS_CGEN_H
|
|
|
|
#define GAS_CGEN_H
|
|
|
|
|
|
|
|
/* Opcode table handle. */
|
|
|
|
extern CGEN_CPU_DESC gas_cgen_cpu_desc;
|
|
|
|
|
|
|
|
/* Maximum number of fixups in an insn.
|
|
|
|
If you need to change this, allow target to override and do so there. */
|
2000-05-19 23:36:14 +02:00
|
|
|
#ifndef GAS_CGEN_MAX_FIXUPS
|
1999-05-03 09:29:11 +02:00
|
|
|
#define GAS_CGEN_MAX_FIXUPS 3
|
2000-05-19 23:36:14 +02:00
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Struct defining result of gas_cgen_finish_insn. */
|
2000-12-14 02:12:43 +01:00
|
|
|
typedef struct {
|
1999-05-03 09:29:11 +02:00
|
|
|
/* frag containing the insn */
|
2000-12-12 20:29:24 +01:00
|
|
|
fragS * frag;
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Address of insn in frag. */
|
2000-12-12 20:29:24 +01:00
|
|
|
char * addr;
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Number of fixups this insn has. */
|
|
|
|
int num_fixups;
|
|
|
|
/* Array of fixups. */
|
2000-12-12 20:29:24 +01:00
|
|
|
fixS * fixups[GAS_CGEN_MAX_FIXUPS];
|
1999-05-03 09:29:11 +02:00
|
|
|
} finished_insnS;
|
|
|
|
|
|
|
|
/* Callback for operand parsing.
|
|
|
|
The result is an error message or NULL for success.
|
|
|
|
The parsed value is stored in the bfd_vma *. */
|
|
|
|
extern const char * gas_cgen_parse_operand
|
2003-11-21 02:52:16 +01:00
|
|
|
(CGEN_CPU_DESC, enum cgen_parse_operand_type,
|
|
|
|
const char **, int, int, enum cgen_parse_operand_result *,
|
|
|
|
bfd_vma *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Call this from md_assemble to initialize the assembler callback. */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void gas_cgen_init_parse (void);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-05-03 04:25:33 +02:00
|
|
|
/* Routines and macros for saving fixup chains. */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void gas_cgen_save_fixups (int);
|
|
|
|
extern void gas_cgen_restore_fixups (int);
|
|
|
|
extern void gas_cgen_swap_fixups (int);
|
|
|
|
extern void gas_cgen_initialize_saved_fixups_array (void);
|
2001-07-06 21:09:23 +02:00
|
|
|
#define MAX_SAVED_FIXUP_CHAINS 50
|
2000-10-11 22:24:32 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Add a register to the assembler's hash table.
|
|
|
|
This makes lets GAS parse registers for us.
|
|
|
|
??? This isn't currently used, but it could be in the future. */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void cgen_asm_record_register (char *, int);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* After CGEN_SYM (assemble_insn) is done, this is called to
|
|
|
|
output the insn and record any fixups. */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void gas_cgen_finish_insn (const CGEN_INSN *,
|
|
|
|
CGEN_INSN_BYTES_PTR, unsigned int,
|
|
|
|
int, finished_insnS *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Record a fixup. */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern fixS * gas_cgen_record_fixup (fragS *, int, const CGEN_INSN *,
|
|
|
|
int, const CGEN_OPERAND *, int,
|
|
|
|
symbolS *, offsetT);
|
|
|
|
extern fixS * gas_cgen_record_fixup_exp (fragS *, int, const CGEN_INSN *,
|
|
|
|
int, const CGEN_OPERAND *, int,
|
|
|
|
expressionS *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* 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-cris.c, config/tc-crx.c, 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-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-07 19:54:22 +02:00
|
|
|
/* md_apply_fix handler */
|
|
|
|
extern void gas_cgen_md_apply_fix (fixS *, valueT *, segT);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* tc_gen_reloc handler */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern arelent *gas_cgen_tc_gen_reloc (asection *, fixS *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Target supplied routine to lookup a reloc. */
|
|
|
|
extern bfd_reloc_code_real_type
|
2003-11-21 02:52:16 +01:00
|
|
|
md_cgen_lookup_reloc (const CGEN_INSN *, const CGEN_OPERAND *, fixS *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Optional target supplied routine to record a fixup for an expression. */
|
|
|
|
extern fixS *
|
2003-11-21 02:52:16 +01:00
|
|
|
md_cgen_record_fixup_exp (fragS *, int, const CGEN_INSN *, int,
|
|
|
|
const CGEN_OPERAND *, int, expressionS *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void gas_cgen_md_operand (expressionS *);
|
2001-12-17 20:50:31 +01:00
|
|
|
|
2003-04-08 14:47:08 +02:00
|
|
|
/* Perform any cgen specific initialisation for gas. */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void gas_cgen_begin (void);
|
2003-04-08 14:47:08 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#endif /* GAS_CGEN_H */
|