2000-03-27 16:39:14 +08:00
|
|
|
/* This file is tc-avr.h
|
2016-01-01 19:25:12 +08:00
|
|
|
Copyright (C) 1999-2016 Free Software Foundation, Inc.
|
2000-03-27 16:39:14 +08:00
|
|
|
|
|
|
|
Contributed by Denis Chertykov <denisc@overta.ru>
|
|
|
|
|
|
|
|
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)
|
2000-03-27 16:39:14 +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. */
|
2000-03-27 16:39:14 +08:00
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* By convention, you should define this macro in the `.h' file. For
|
|
|
|
example, `tc-m68k.h' defines `TC_M68K'. You might have to use this
|
|
|
|
if it is necessary to add CPU specific code to the object format
|
|
|
|
file. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define TC_AVR
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* This macro is the BFD target name to use when creating the output
|
|
|
|
file. This will normally depend upon the `OBJ_FMT' macro. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define TARGET_FORMAT "elf32-avr"
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* This macro is the BFD architecture to pass to `bfd_set_arch_mach'. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define TARGET_ARCH bfd_arch_avr
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* This macro is the BFD machine number to pass to
|
|
|
|
`bfd_set_arch_mach'. If it is not defined, GAS will use 0. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define TARGET_MACH 0
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* You should define this macro to be non-zero if the target is big
|
|
|
|
endian, and zero if the target is little endian. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define TARGET_BYTES_BIG_ENDIAN 0
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* If you define this macro, GAS will warn about the use of
|
|
|
|
nonstandard escape sequences in a string. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define ONLY_STANDARD_ESCAPES
|
|
|
|
|
2015-07-09 02:35:19 +08:00
|
|
|
#define DIFF_EXPR_OK /* .-foo gets turned into PC relative relocs */
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* GAS will call this function for any expression that can not be
|
|
|
|
recognized. When the function is called, `input_line_pointer'
|
|
|
|
will point to the start of the expression. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define md_operand(x)
|
|
|
|
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* Name of the expression modifier allowed with .byte, .word, etc. */
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* Only allowed with n bytes of data. */
|
|
|
|
int nbytes;
|
|
|
|
|
|
|
|
/* Associated RELOC. */
|
|
|
|
bfd_reloc_code_real_type reloc;
|
|
|
|
|
|
|
|
/* Part of the error message. */
|
|
|
|
const char *error;
|
|
|
|
} exp_mod_data_t;
|
|
|
|
|
|
|
|
extern const exp_mod_data_t exp_mod_data[];
|
|
|
|
#define TC_PARSE_CONS_RETURN_TYPE const exp_mod_data_t *
|
|
|
|
#define TC_PARSE_CONS_RETURN_NONE exp_mod_data
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* You may define this macro to parse an expression used in a data
|
|
|
|
allocation pseudo-op such as `.word'. You can use this to
|
|
|
|
recognize relocation directives that may appear in such directives. */
|
2005-10-12 18:56:46 +08:00
|
|
|
#define TC_PARSE_CONS_EXPRESSION(EXPR,N) avr_parse_cons_expression (EXPR, N)
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
extern const exp_mod_data_t *avr_parse_cons_expression (expressionS *, int);
|
2000-03-27 16:39:14 +08:00
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* You may define this macro to generate a fixup for a data
|
|
|
|
allocation pseudo-op. */
|
gas TC_PARSE_CONS_EXPRESSION communication with TC_CONS_FIX_NEW
A number of targets pass extra information from TC_PARSE_CONS_EXPRESSION
to TC_CONS_FIX_NEW via static variables. That's OK, but not best
practice. tc-ppc.c goes further in implementing its own replacement
for cons(), because the generic one doesn't allow relocation modifiers
on constants. This patch fixes both of these warts.
* gas/config/tc-alpha.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arc.c (arc_cons_fix_new): Add reloc parameter.
* gas/config/tc-arc.h (arc_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add RELOC parameter.
* gas/config/tc-arm.c (cons_fix_new_arm): Similarly
* gas/config/tc-arm.h (cons_fix_new_arm, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-cr16.c (cr16_cons_fix_new): Similarly.
* gas/config/tc-cr16.h (cr16_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-crx.h (TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-m32c.c (m32c_cons_fix_new): Similarly.
* gas/config/tc-m32c.h (m32c_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-mn10300.c (mn10300_cons_fix_new): Similarly.
* gas/config/tc-mn10300.h (mn10300_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-ns32k.c (cons_fix_new_ns32k): Similarly.
* gas/config/tc-ns32k.h (cons_fix_new_ns32k): Similarly.
* gas/config/tc-pj.c (pj_cons_fix_new_pj): Similarly.
* gas/config/tc-pj.h (pj_cons_fix_new_pj, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-rx.c (rx_cons_fix_new): Similarly.
* gas/config/tc-rx.h (rx_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-sh.c (sh_cons_fix_new): Similarly.
* gas/config/tc-sh.h (sh_cons_fix_new, TC_CONS_FIX_NEW): Similarly.
* gas/config/tc-tic54x.c (tic54x_cons_fix_new): Similarly.
* gas/config/tc-tic54x.h (tic54x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-tic6x.c (tic6x_cons_fix_new): Similarly.
* gas/config/tc-tic6x.h (tic6x_cons_fix_new, TC_CONS_FIX_NEW):
Similarly.
* gas/config/tc-arc.c (arc_parse_cons_expression): Return reloc.
* gas/config/tc-arc.h (arc_parse_cons_expression): Update proto.
* gas/config/tc-avr.c (exp_mod_data): Make global.
(pexp_mod_data): Delete.
(avr_parse_cons_expression): Return exp_mod_data pointer.
(avr_cons_fix_new): Add exp_mod_data_t pointer param.
(exp_mod_data_t): Move typedef..
* gas/config/tc-avr.h: ..to here.
(exp_mod_data): Declare.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
(avr_parse_cons_expression, avr_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Update.
* gas/config/tc-hppa.c (hppa_field_selector): Delete static var.
(cons_fix_new_hppa): Add hppa_field_selector param.
(fix_new_hppa): Adjust.
(parse_cons_expression_hppa): Return field selector.
* gas/config/tc-hppa.h (parse_cons_expression_hppa): Update proto.
(cons_fix_new_hppa): Likewise.
(TC_PARSE_CONS_RETURN_TYPE, TC_PARSE_CONS_RETURN_NONE): Define.
* gas/config/tc-i386.c (got_reloc): Delete static var.
(x86_cons_fix_new): Add reloc param.
(x86_cons): Return got reloc.
* gas/config/tc-i386.h (x86_cons, x86_cons_fix_new): Update proto.
(TC_CONS_FIX_NEW): Add RELOC param.
* gas/config/tc-ia64.c (ia64_cons_fix_new): Add reloc param. Adjust
calls.
* gas/config/tc-ia64.h (ia64_cons_fix_new): Update prototype.
(TC_CONS_FIX_NEW): Add reloc param.
* gas/config/tc-microblaze.c (parse_cons_expression_microblaze):
Return reloc.
(cons_fix_new_microblaze): Add reloc param.
* gas/config/tc-microblaze.h: Formatting.
(parse_cons_expression_microblaze): Update proto.
(cons_fix_new_microblaze): Likewise.
* gas/config/tc-nios2.c (nios2_tls_ldo_reloc): Delete static var.
(nios2_cons): Return ldo reloc.
(nios2_cons_fix_new): Delete.
* gas/config/tc-nios2.h (nios2_cons): Update prototype.
(nios2_cons_fix_new, TC_CONS_FIX_NEW): Delete.
* gas/config/tc-ppc.c (md_pseudo_table): Remove quad, long, word,
short. Make llong use cons.
(ppc_elf_suffix): Return BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(ppc_elf_cons): Delete.
(ppc_elf_parse_cons): New function.
(ppc_elf_validate_fix): Don't check for BFD_RELOC_UNUSED.
(md_assemble): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
* gas/config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): Define
(ppc_elf_parse_cons): Declare.
* gas/config/tc-sparc.c (sparc_cons_special_reloc): Delete static var.
(sparc_cons): Return reloc specifier.
(cons_fix_new_sparc): Add reloc specifier param.
(sparc_cfi_emit_pcrel_expr): Use emit_expr_with_reloc.
* gas/config/tc-sparc.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(sparc_cons, cons_fix_new_sparc): Update prototype.
* gas/config/tc-v850.c (hold_cons_reloc): Delete static var.
(v850_reloc_prefix): Use BFD_RELOC_NONE rather than BFD_RELOC_UNUSED.
(md_assemble): Likewise.
(parse_cons_expression_v850): Return reloc.
(cons_fix_new_v850): Add reloc parameter.
* gas/config/tc-v850.h (parse_cons_expression_v850): Update proto.
(cons_fix_new_v850): Likewise.
* gas/config/tc-vax.c (vax_cons_special_reloc): Delete static var.
(vax_cons): Return reloc.
(vax_cons_fix_new): Add reloc parameter.
* gas/config/tc-vax.h (vax_cons, vax_cons_fix_new): Update proto.
* gas/config/tc-xstormy16.c (xstormy16_cons_fix_new): Add reloc param.
* gas/config/tc-xstormy16.h (xstormy16_cons_fix_new): Update proto.
* gas/dwarf2dbg.c (TC_PARSE_CONS_RETURN_NONE): Provide default.
(emit_fixed_inc_line_addr): Adjust exmit_expr_fix calls.
* gas/read.c (TC_PARSE_CONS_EXPRESSION): Return value.
(do_parse_cons_expression): Adjust.
(cons_worker): Pass return value from TC_PARSE_CONS_EXPRESSION
to emit_expr_with_reloc.
(emit_expr_with_reloc): New function handling reloc, mostly
extracted from..
(emit_expr): ..here.
(emit_expr_fix): Add reloc param. Adjust TC_CONS_FIX_NEW invocation.
Handle reloc.
(parse_mri_cons): Convert to ISO.
* gas/read.h (TC_PARSE_CONS_RETURN_TYPE): Define.
(TC_PARSE_CONS_RETURN_NONE): Define.
(emit_expr_with_reloc): Declare.
(emit_expr_fix): Update prototype.
* gas/write.c (write_object_file): Update TC_CONS_FIX_NEW invocation.
2014-04-08 13:08:22 +08:00
|
|
|
#define TC_CONS_FIX_NEW avr_cons_fix_new
|
|
|
|
extern void avr_cons_fix_new (fragS *,int, int, expressionS *,
|
|
|
|
const exp_mod_data_t *);
|
2000-03-27 16:39:14 +08:00
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* This should just call either `number_to_chars_bigendian' or
|
|
|
|
`number_to_chars_littleendian', whichever is appropriate. On
|
|
|
|
targets like the MIPS which support options to change the
|
|
|
|
endianness, which function to call is a runtime decision. On
|
|
|
|
other targets, `md_number_to_chars' can be a simple macro. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define md_number_to_chars number_to_chars_littleendian
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* `md_short_jump_size'
|
|
|
|
`md_long_jump_size'
|
|
|
|
`md_create_short_jump'
|
|
|
|
`md_create_long_jump'
|
|
|
|
If `WORKING_DOT_WORD' is defined, GAS will not do broken word
|
|
|
|
processing (*note Broken words::.). Otherwise, you should set
|
|
|
|
`md_short_jump_size' to the size of a short jump (a jump that is
|
|
|
|
just long enough to jump around a long jmp) and
|
|
|
|
`md_long_jump_size' to the size of a long jump (a jump that can go
|
|
|
|
anywhere in the function), You should define
|
|
|
|
`md_create_short_jump' to create a short jump around a long jump,
|
|
|
|
and define `md_create_long_jump' to create a long jump. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define WORKING_DOT_WORD
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* If you define this macro, it means that `tc_gen_reloc' may return
|
|
|
|
multiple relocation entries for a single fixup. In this case, the
|
|
|
|
return value of `tc_gen_reloc' is a pointer to a null terminated
|
|
|
|
array. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#undef RELOC_EXPANSION_POSSIBLE
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* No shared lib support, so we don't need to ensure externally
|
|
|
|
visible symbols can be overridden. */
|
|
|
|
#define EXTERN_FORCE_RELOC 0
|
|
|
|
|
2014-04-10 23:50:33 +08:00
|
|
|
/* If defined, this macro allows control over whether fixups for a
|
|
|
|
given section will be processed when the linkrelax variable is
|
|
|
|
set. Define it to zero and handle things in md_apply_fix instead.*/
|
|
|
|
#define TC_LINKRELAX_FIXUP(SEG) 0
|
|
|
|
|
|
|
|
/* If this macro returns non-zero, it guarantees that a relocation will be emitted
|
|
|
|
even when the value can be resolved locally. Do that if linkrelax is turned on */
|
|
|
|
#define TC_FORCE_RELOCATION(fix) avr_force_relocation (fix)
|
|
|
|
#define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \
|
|
|
|
(! SEG_NORMAL (seg) || avr_force_relocation (fix))
|
|
|
|
extern int avr_force_relocation (struct fix *);
|
|
|
|
|
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-08 01:54:22 +08:00
|
|
|
/* Values passed to md_apply_fix don't include the symbol value. */
|
2002-09-05 08:01:18 +08:00
|
|
|
#define MD_APPLY_SYM_VALUE(FIX) 0
|
|
|
|
|
|
|
|
/* If you define this macro, it should return the offset between the
|
|
|
|
address of a PC relative fixup and the position from which the PC
|
|
|
|
relative adjustment should be made. On many processors, the base
|
|
|
|
of a PC relative instruction is the next instruction, so this
|
|
|
|
macro would return the length of an instruction. */
|
2005-10-12 18:56:46 +08:00
|
|
|
#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
|
|
|
|
extern long md_pcrel_from_section (struct fix *, segT);
|
2000-07-04 06:25:33 +08:00
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* The number of bytes to put into a word in a listing. This affects
|
|
|
|
the way the bytes are clumped together in the listing. For
|
|
|
|
example, a value of 2 might print `1234 5678' where a value of 1
|
|
|
|
would print `12 34 56 78'. The default value is 4. */
|
2000-03-27 16:39:14 +08:00
|
|
|
#define LISTING_WORD_SIZE 2
|
|
|
|
|
2006-05-06 01:46:47 +08:00
|
|
|
/* AVR port uses `$' as a logical line separator. */
|
2002-09-05 08:01:18 +08:00
|
|
|
#define LEX_DOLLAR 0
|
2000-08-25 00:50:21 +08:00
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* An `.lcomm' directive with no explicit alignment parameter will
|
|
|
|
use this macro to set P2VAR to the alignment that a request for
|
|
|
|
SIZE bytes will have. The alignment is expressed as a power of
|
|
|
|
two. If no alignment should take place, the macro definition
|
|
|
|
should do nothing. Some targets define a `.bss' directive that is
|
|
|
|
also affected by this macro. The default definition will set
|
|
|
|
P2VAR to the truncated power of two of sizes up to eight bytes. */
|
2000-08-25 00:50:21 +08:00
|
|
|
#define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) (P2VAR) = 0
|
2006-05-06 01:46:47 +08:00
|
|
|
|
|
|
|
/* We don't want gas to fixup the following program memory related relocations.
|
|
|
|
We will need them in case that we want to do linker relaxation.
|
|
|
|
We could in principle keep these fixups in gas when not relaxing.
|
2013-02-06 07:02:54 +08:00
|
|
|
However, there is no serious performance penalty when making the linker
|
2006-05-24 15:36:12 +08:00
|
|
|
make the fixup work. Check also that fx_addsy is not NULL, in order to make
|
2013-02-06 07:02:54 +08:00
|
|
|
sure that the fixup refers to some sort of label. */
|
2006-05-24 15:36:12 +08:00
|
|
|
#define TC_VALIDATE_FIX(FIXP,SEG,SKIP) \
|
|
|
|
if ( (FIXP->fx_r_type == BFD_RELOC_AVR_7_PCREL \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_13_PCREL \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_LO8_LDI_PM \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_LO8_LDI_GS \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_HI8_LDI_PM \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_HI8_LDI_GS \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_HH8_LDI_PM \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_LO8_LDI_PM_NEG \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_HI8_LDI_PM_NEG \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_HH8_LDI_PM_NEG \
|
2012-09-12 01:01:00 +08:00
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_8_LO \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_8_HI \
|
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_8_HLO \
|
2006-05-24 15:36:12 +08:00
|
|
|
|| FIXP->fx_r_type == BFD_RELOC_AVR_16_PM) \
|
2013-02-06 07:02:54 +08:00
|
|
|
&& FIXP->fx_addsy != NULL \
|
|
|
|
&& FIXP->fx_subsy == NULL) \
|
|
|
|
{ \
|
|
|
|
symbol_mark_used_in_reloc (FIXP->fx_addsy); \
|
|
|
|
goto SKIP; \
|
2012-09-12 01:01:00 +08:00
|
|
|
}
|
2007-02-21 07:02:58 +08:00
|
|
|
|
2014-04-10 23:50:33 +08:00
|
|
|
/* This macro is evaluated for any fixup with a fx_subsy that
|
|
|
|
fixup_segment cannot reduce to a number. If the macro returns
|
|
|
|
false an error will be reported. */
|
|
|
|
#define TC_VALIDATE_FIX_SUB(fix, seg) avr_validate_fix_sub (fix)
|
|
|
|
extern int avr_validate_fix_sub (struct fix *);
|
|
|
|
|
2007-02-21 07:02:58 +08:00
|
|
|
/* This target is buggy, and sets fix size too large. */
|
|
|
|
#define TC_FX_SIZE_SLACK(FIX) 2
|
2009-10-27 23:39:27 +08:00
|
|
|
|
|
|
|
/* AVR instructions are 2 or 4 bytes long. */
|
|
|
|
#define DWARF2_LINE_MIN_INSN_LENGTH 2
|
|
|
|
|
|
|
|
/* 32 bits pseudo-addresses are used on AVR. */
|
|
|
|
#define DWARF2_ADDR_SIZE(bfd) 4
|
2011-03-30 02:16:16 +08:00
|
|
|
|
|
|
|
/* Enable cfi directives. */
|
|
|
|
#define TARGET_USE_CFIPOP 1
|
|
|
|
|
|
|
|
/* The stack grows down, and is only byte aligned. */
|
|
|
|
#define DWARF2_CIE_DATA_ALIGNMENT -1
|
|
|
|
|
|
|
|
/* Define the column that represents the PC. */
|
|
|
|
#define DWARF2_DEFAULT_RETURN_COLUMN 36
|
|
|
|
|
|
|
|
/* Define a hook to setup initial CFI state. */
|
|
|
|
extern void tc_cfi_frame_initial_instructions (void);
|
|
|
|
#define tc_cfi_frame_initial_instructions tc_cfi_frame_initial_instructions
|
2014-04-10 23:50:33 +08:00
|
|
|
|
|
|
|
/* The difference between same-section symbols may be affected by linker
|
|
|
|
relaxation, so do not resolve such expressions in the assembler. */
|
|
|
|
#define md_allow_local_subtract(l,r,s) avr_allow_local_subtract (l, r, s)
|
|
|
|
extern bfd_boolean avr_allow_local_subtract (expressionS *, expressionS *, segT);
|
2014-11-23 07:19:31 +08:00
|
|
|
|
|
|
|
#define elf_tc_final_processing avr_elf_final_processing
|
|
|
|
extern void avr_elf_final_processing (void);
|
2015-01-09 04:55:10 +08:00
|
|
|
|
|
|
|
#define md_post_relax_hook avr_post_relax_hook ()
|
|
|
|
extern void avr_post_relax_hook (void);
|
|
|
|
|
|
|
|
#define HANDLE_ALIGN(fragP) avr_handle_align (fragP)
|
|
|
|
extern void avr_handle_align (fragS *fragP);
|
|
|
|
|
|
|
|
struct avr_frag_data
|
|
|
|
{
|
|
|
|
unsigned is_org : 1;
|
|
|
|
unsigned is_align : 1;
|
|
|
|
unsigned has_fill : 1;
|
|
|
|
|
|
|
|
char fill;
|
|
|
|
offsetT alignment;
|
|
|
|
};
|
|
|
|
#define TC_FRAG_TYPE struct avr_frag_data
|