Line 1... |
Line 1... |
/* Internal definitions for configurable Xtensa ISA support.
|
/* Internal definitions for configurable Xtensa ISA support.
|
Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
|
Copyright 2003, 2004, 2005, 2008 Free Software Foundation, Inc.
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
Line 13... |
Line 13... |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
GNU General Public License for more details.
|
GNU General Public License for more details.
|
|
|
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
|
|
USA. */
|
|
|
#ifndef XTENSA_ISA_INTERNAL_H
|
#ifndef XTENSA_ISA_INTERNAL_H
|
#define XTENSA_ISA_INTERNAL_H
|
#define XTENSA_ISA_INTERNAL_H
|
|
|
/* Flags. */
|
/* Flags. */
|
Line 31... |
Line 32... |
#define XTENSA_OPCODE_IS_JUMP 0x00000002
|
#define XTENSA_OPCODE_IS_JUMP 0x00000002
|
#define XTENSA_OPCODE_IS_LOOP 0x00000004
|
#define XTENSA_OPCODE_IS_LOOP 0x00000004
|
#define XTENSA_OPCODE_IS_CALL 0x00000008
|
#define XTENSA_OPCODE_IS_CALL 0x00000008
|
|
|
#define XTENSA_STATE_IS_EXPORTED 0x00000001
|
#define XTENSA_STATE_IS_EXPORTED 0x00000001
|
|
#define XTENSA_STATE_IS_SHARED_OR 0x00000002
|
|
|
#define XTENSA_INTERFACE_HAS_SIDE_EFFECT 0x00000001
|
#define XTENSA_INTERFACE_HAS_SIDE_EFFECT 0x00000001
|
|
|
/* Function pointer typedefs */
|
/* Function pointer typedefs */
|
typedef void (*xtensa_format_encode_fn) (xtensa_insnbuf);
|
typedef void (*xtensa_format_encode_fn) (xtensa_insnbuf);
|