binutils-gdb/gas/config/tc-arc.h

67 lines
2.0 KiB
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* tc-arc.h - Macros and type defines for the ARC.
2001-03-09 00:24:26 +01:00
Copyright 1994, 1995, 1997, 2000, 2001 Free Software Foundation, Inc.
1999-05-03 09:29:11 +02:00
Contributed by Doug Evans (dje@cygnus.com).
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. */
1999-05-03 09:29:11 +02:00
#define TC_ARC 1
#define TARGET_BYTES_BIG_ENDIAN 0
#define LOCAL_LABELS_FB 1
#define TARGET_ARCH bfd_arch_arc
#define DIFF_EXPR_OK
#define REGISTER_PREFIX '%'
#ifdef LITTLE_ENDIAN
#undef LITTLE_ENDIAN
#endif
#ifdef BIG_ENDIAN
#undef BIG_ENDIAN
#endif
1999-05-03 09:29:11 +02:00
#define LITTLE_ENDIAN 1234
1999-05-03 09:29:11 +02:00
#define BIG_ENDIAN 4321
/* The endianness of the target format may change based on command
line arguments. */
extern const char *arc_target_format;
#define DEFAULT_TARGET_FORMAT "elf32-littlearc"
#define TARGET_FORMAT arc_target_format
#define DEFAULT_BYTE_ORDER LITTLE_ENDIAN
#define WORKING_DOT_WORD
#define LISTING_HEADER "ARC GAS "
/* The ARC needs to parse reloc specifiers in .word. */
2001-09-24 16:47:10 +02:00
extern void arc_parse_cons_expression PARAMS ((struct expressionS *, unsigned));
1999-05-03 09:29:11 +02:00
#define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \
arc_parse_cons_expression (EXP, NBYTES)
2001-09-24 16:47:10 +02:00
extern void arc_cons_fix_new PARAMS ((struct frag *, int, int, struct expressionS *));
1999-05-03 09:29:11 +02:00
#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \
arc_cons_fix_new (FRAG, WHERE, NBYTES, EXP)
#define DWARF2_LINE_MIN_INSN_LENGTH 4