1 /* Declarations for stacks of tokenized Xtensa instructions.
2 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 #ifndef XTENSA_ISTACK_H
22 #define XTENSA_ISTACK_H
24 #include "dwarf2dbg.h"
25 #include "xtensa-isa.h"
28 #define MAX_INSN_ARGS 10
38 /* Literals have 1 token and no opcode.
39 Labels have 1 token and no opcode. */
41 typedef struct tinsn_struct
43 enum itype_enum insn_type
;
45 xtensa_opcode opcode
; /* Literals have an invalid opcode. */
46 bfd_boolean is_specific_opcode
;
47 bfd_boolean keep_wide
;
49 expressionS tok
[MAX_INSN_ARGS
];
50 struct dwarf2_line_info loc
;
54 /* Filled out by relaxation_requirements: */
55 bfd_boolean record_fix
;
56 enum xtensa_relax_statesE subtype
;
58 /* Filled out by vinsn_to_insnbuf: */
66 /* tinsn_stack: This is a stack of instructions to be placed. */
68 typedef struct tinsn_stack
71 TInsn insn
[MAX_ISTACK
];
75 void istack_init (IStack
*);
76 bfd_boolean
istack_empty (IStack
*);
77 bfd_boolean
istack_full (IStack
*);
78 TInsn
*istack_top (IStack
*);
79 void istack_push (IStack
*, TInsn
*);
80 TInsn
*istack_push_space (IStack
*);
81 void istack_pop (IStack
*);
83 /* TInsn utilities. */
84 void tinsn_init (TInsn
*);
85 expressionS
*tinsn_get_tok (TInsn
*, int);
88 /* vliw_insn: bundles of TInsns. */
90 typedef struct vliw_insn
93 xtensa_insnbuf insnbuf
;
95 unsigned int inside_bundle
;
96 TInsn slots
[MAX_SLOTS
];
97 xtensa_insnbuf slotbuf
[MAX_SLOTS
];
100 #endif /* !XTENSA_ISTACK_H */