X-Git-Url: https://oss.titaniummirror.com/gitweb?p=msp430-binutils.git;a=blobdiff_plain;f=gas%2Fconfig%2Fxtensa-istack.h;fp=gas%2Fconfig%2Fxtensa-istack.h;h=75b56b2d309ae0c945461b8a80bd880f280a1bf7;hp=2f37765c677942e29e62eac833cddd6238605e43;hb=d5da4f291af551c0b8b79e1d4a9b173d60e5c10e;hpb=7b5ea4fcdf2819e070665ab5610f8b48e3867c10 diff --git a/gas/config/xtensa-istack.h b/gas/config/xtensa-istack.h index 2f37765..75b56b2 100644 --- a/gas/config/xtensa-istack.h +++ b/gas/config/xtensa-istack.h @@ -1,5 +1,6 @@ /* Declarations for stacks of tokenized Xtensa instructions. - Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 + Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -24,7 +25,7 @@ #include "xtensa-isa.h" #define MAX_ISTACK 12 -#define MAX_INSN_ARGS 10 +#define MAX_INSN_ARGS 64 enum itype_enum { @@ -46,11 +47,22 @@ typedef struct tinsn_struct bfd_boolean keep_wide; int ntok; expressionS tok[MAX_INSN_ARGS]; - unsigned linenum; + bfd_boolean loc_directive_seen; + struct dwarf2_line_info debug_line; + + /* This field is used for two types of special pseudo ops: + 1. TLS-related operations. Eg: callx8.tls + 2. j.l label, a2 + + For the tls-related operations, it will hold a tls-related opcode + and info to be used in a fixup. For j.l it will hold a + register to be used during relaxation. */ + expressionS extra_arg; /* Filled out by relaxation_requirements: */ enum xtensa_relax_statesE subtype; int literal_space; + /* Filled out by vinsn_to_insnbuf: */ symbolS *symbol; offsetT offset;