1999-05-03 09:29:11 +02:00
|
|
|
/* GAS cgen support.
|
2001-03-09 00:24:26 +01:00
|
|
|
Copyright 1998, 1999, 2000 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
|
|
|
|
02111-1307, USA. */
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
/* md_apply_fix3 handler */
|
2003-11-21 02:52:16 +01:00
|
|
|
extern void gas_cgen_md_apply_fix3 (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 */
|