]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - include/opcode/pj.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / include / opcode / pj.h
CommitLineData
8340b17f 1/* Definitions for decoding the picoJava opcode table.
250d07de 2 Copyright (C) 1999-2021 Free Software Foundation, Inc.
8340b17f
ILT
3 Contributed by Steve Chamberlain of Transmeta (sac@pobox.com).
4
e4e42b45
NC
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
8340b17f 9
e4e42b45
NC
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
8340b17f 14
e4e42b45
NC
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
18 MA 02110-1301, USA. */
8340b17f
ILT
19
20/* Names used to describe the type of instruction arguments, used by
21 the assembler and disassembler. Attributes are encoded in various fields. */
22
23/* reloc size pcrel uns */
24#define O_N 0
25#define O_16 (1<<4 | 2 | (0<<6) | (0<<3))
26#define O_U16 (1<<4 | 2 | (0<<6) | (1<<3))
27#define O_R16 (2<<4 | 2 | (1<<6) | (0<<3))
28#define O_8 (3<<4 | 1 | (0<<6) | (0<<3))
29#define O_U8 (3<<4 | 1 | (0<<6) | (1<<3))
30#define O_R8 (4<<4 | 1 | (0<<6) | (0<<3))
31#define O_R32 (5<<4 | 4 | (1<<6) | (0<<3))
32#define O_32 (6<<4 | 4 | (0<<6) | (0<<3))
33
34#define ASIZE(x) ((x) & 0x7)
35#define PCREL(x) (!!((x) & (1<<6)))
36#define UNS(x) (!!((x) & (1<<3)))
37
38
0e073f4c 39typedef struct pj_opc_info_t
8340b17f
ILT
40{
41 short opcode;
42 short opcode_next;
43 char len;
44 unsigned char arg[2];
0e073f4c
AM
45 union {
46 const char *name;
8cf3f354 47 void (*func) (struct pj_opc_info_t *, char *);
0e073f4c 48 } u;
8340b17f 49} pj_opc_info_t;