xref: /netbsd-src/external/gpl3/binutils.old/dist/opcodes/pj-opc.c (revision e992f068c547fd6e84b3f104dc2340adcc955732)
175fd0b74Schristos /* pj-opc.c -- Definitions for picoJava opcodes.
2*e992f068Schristos    Copyright (C) 1999-2022 Free Software Foundation, Inc.
375fd0b74Schristos    Contributed by Steve Chamberlain of Transmeta (sac@pobox.com).
475fd0b74Schristos 
575fd0b74Schristos    This file is part of the GNU opcodes library.
675fd0b74Schristos 
775fd0b74Schristos    This library is free software; you can redistribute it and/or modify
875fd0b74Schristos    it under the terms of the GNU General Public License as published by
975fd0b74Schristos    the Free Software Foundation; either version 3, or (at your option)
1075fd0b74Schristos    any later version.
1175fd0b74Schristos 
1275fd0b74Schristos    It is distributed in the hope that it will be useful, but WITHOUT
1375fd0b74Schristos    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
1475fd0b74Schristos    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
1575fd0b74Schristos    License for more details.
1675fd0b74Schristos 
1775fd0b74Schristos    You should have received a copy of the GNU General Public License
1875fd0b74Schristos    along with this file; see the file COPYING.  If not, write to the
1975fd0b74Schristos    Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
2075fd0b74Schristos    MA 02110-1301, USA.  */
2175fd0b74Schristos 
2275fd0b74Schristos #include "sysdep.h"
2375fd0b74Schristos #include "opcode/pj.h"
2475fd0b74Schristos 
2575fd0b74Schristos const pj_opc_info_t pj_opc_info[512] =
2675fd0b74Schristos {
2775fd0b74Schristos { 0x00,   -1, 1, {O_N, O_N}, {"nop"}},
2875fd0b74Schristos { 0x01,   -1, 1, {O_N, O_N}, {"aconst_null"}},
2975fd0b74Schristos { 0x02,   -1, 1, {O_N, O_N}, {"iconst_m1"}},
3075fd0b74Schristos { 0x03,   -1, 1, {O_N, O_N}, {"iconst_0"}},
3175fd0b74Schristos { 0x04,   -1, 1, {O_N, O_N}, {"iconst_1"}},
3275fd0b74Schristos { 0x05,   -1, 1, {O_N, O_N}, {"iconst_2"}},
3375fd0b74Schristos { 0x06,   -1, 1, {O_N, O_N}, {"iconst_3"}},
3475fd0b74Schristos { 0x07,   -1, 1, {O_N, O_N}, {"iconst_4"}},
3575fd0b74Schristos { 0x08,   -1, 1, {O_N, O_N}, {"iconst_5"}},
3675fd0b74Schristos { 0x09,   -1, 1, {O_N, O_N}, {"lconst_0"}},
3775fd0b74Schristos { 0x0a,   -1, 1, {O_N, O_N}, {"lconst_1"}},
3875fd0b74Schristos { 0x0b,   -1, 1, {O_N, O_N}, {"fconst_0"}},
3975fd0b74Schristos { 0x0c,   -1, 1, {O_N, O_N}, {"fconst_1"}},
4075fd0b74Schristos { 0x0d,   -1, 1, {O_N, O_N}, {"fconst_2"}},
4175fd0b74Schristos { 0x0e,   -1, 1, {O_N, O_N}, {"dconst_0"}},
4275fd0b74Schristos { 0x0f,   -1, 1, {O_N, O_N}, {"dconst_1"}},
4375fd0b74Schristos { 0x10,   -1, 2, {O_8, O_N}, {"bipush"}},
4475fd0b74Schristos { 0x11,   -1, 3, {O_16, O_N}, {"sipush"}},
4575fd0b74Schristos { 0x12,   -1, 2, {O_N, O_N}, {"ldc"}},
4675fd0b74Schristos { 0x13,   -1, 3, {O_N, O_N}, {"ldc_w"}},
4775fd0b74Schristos { 0x14,   -1, 3, {O_N, O_N}, {"ldc2_w"}},
4875fd0b74Schristos { 0x15,   -1, 2, {O_U8, O_N}, {"iload"}},
4975fd0b74Schristos { 0x16,   -1, 2, {O_U8, O_N}, {"lload"}},
5075fd0b74Schristos { 0x17,   -1, 2, {O_U8, O_N}, {"fload"}},
5175fd0b74Schristos { 0x18,   -1, 2, {O_U8, O_N}, {"dload"}},
5275fd0b74Schristos { 0x19,   -1, 2, {O_U8, O_N}, {"aload"}},
5375fd0b74Schristos { 0x1a,   -1, 1, {O_N, O_N}, {"iload_0"}},
5475fd0b74Schristos { 0x1b,   -1, 1, {O_N, O_N}, {"iload_1"}},
5575fd0b74Schristos { 0x1c,   -1, 1, {O_N, O_N}, {"iload_2"}},
5675fd0b74Schristos { 0x1d,   -1, 1, {O_N, O_N}, {"iload_3"}},
5775fd0b74Schristos { 0x1e,   -1, 1, {O_N, O_N}, {"lload_0"}},
5875fd0b74Schristos { 0x1f,   -1, 1, {O_N, O_N}, {"lload_1"}},
5975fd0b74Schristos { 0x20,   -1, 1, {O_N, O_N}, {"lload_2"}},
6075fd0b74Schristos { 0x21,   -1, 1, {O_N, O_N}, {"lload_3"}},
6175fd0b74Schristos { 0x22,   -1, 1, {O_N, O_N}, {"fload_0"}},
6275fd0b74Schristos { 0x23,   -1, 1, {O_N, O_N}, {"fload_1"}},
6375fd0b74Schristos { 0x24,   -1, 1, {O_N, O_N}, {"fload_2"}},
6475fd0b74Schristos { 0x25,   -1, 1, {O_N, O_N}, {"fload_3"}},
6575fd0b74Schristos { 0x26,   -1, 1, {O_N, O_N}, {"dload_0"}},
6675fd0b74Schristos { 0x27,   -1, 1, {O_N, O_N}, {"dload_1"}},
6775fd0b74Schristos { 0x28,   -1, 1, {O_N, O_N}, {"dload_2"}},
6875fd0b74Schristos { 0x29,   -1, 1, {O_N, O_N}, {"dload_3"}},
6975fd0b74Schristos { 0x2a,   -1, 1, {O_N, O_N}, {"aload_0"}},
7075fd0b74Schristos { 0x2b,   -1, 1, {O_N, O_N}, {"aload_1"}},
7175fd0b74Schristos { 0x2c,   -1, 1, {O_N, O_N}, {"aload_2"}},
7275fd0b74Schristos { 0x2d,   -1, 1, {O_N, O_N}, {"aload_3"}},
7375fd0b74Schristos { 0x2e,   -1, 1, {O_N, O_N}, {"iaload"}},
7475fd0b74Schristos { 0x2f,   -1, 1, {O_N, O_N}, {"laload"}},
7575fd0b74Schristos { 0x30,   -1, 1, {O_N, O_N}, {"faload"}},
7675fd0b74Schristos { 0x31,   -1, 1, {O_N, O_N}, {"daload"}},
7775fd0b74Schristos { 0x32,   -1, 1, {O_N, O_N}, {"aaload"}},
7875fd0b74Schristos { 0x33,   -1, 1, {O_N, O_N}, {"baload"}},
7975fd0b74Schristos { 0x34,   -1, 1, {O_N, O_N}, {"caload"}},
8075fd0b74Schristos { 0x35,   -1, 1, {O_N, O_N}, {"saload"}},
8175fd0b74Schristos { 0x36,   -1, 2, {O_U8, O_N}, {"istore"}},
8275fd0b74Schristos { 0x37,   -1, 2, {O_U8, O_N}, {"lstore"}},
8375fd0b74Schristos { 0x38,   -1, 2, {O_U8, O_N}, {"fstore"}},
8475fd0b74Schristos { 0x39,   -1, 2, {O_U8, O_N}, {"dstore"}},
8575fd0b74Schristos { 0x3a,   -1, 2, {O_U8, O_N}, {"astore"}},
8675fd0b74Schristos { 0x3b,   -1, 1, {O_N, O_N}, {"istore_0"}},
8775fd0b74Schristos { 0x3c,   -1, 1, {O_N, O_N}, {"istore_1"}},
8875fd0b74Schristos { 0x3d,   -1, 1, {O_N, O_N}, {"istore_2"}},
8975fd0b74Schristos { 0x3e,   -1, 1, {O_N, O_N}, {"istore_3"}},
9075fd0b74Schristos { 0x3f,   -1, 1, {O_N, O_N}, {"lstore_0"}},
9175fd0b74Schristos { 0x40,   -1, 1, {O_N, O_N}, {"lstore_1"}},
9275fd0b74Schristos { 0x41,   -1, 1, {O_N, O_N}, {"lstore_2"}},
9375fd0b74Schristos { 0x42,   -1, 1, {O_N, O_N}, {"lstore_3"}},
9475fd0b74Schristos { 0x43,   -1, 1, {O_N, O_N}, {"fstore_0"}},
9575fd0b74Schristos { 0x44,   -1, 1, {O_N, O_N}, {"fstore_1"}},
9675fd0b74Schristos { 0x45,   -1, 1, {O_N, O_N}, {"fstore_2"}},
9775fd0b74Schristos { 0x46,   -1, 1, {O_N, O_N}, {"fstore_3"}},
9875fd0b74Schristos { 0x47,   -1, 1, {O_N, O_N}, {"dstore_0"}},
9975fd0b74Schristos { 0x48,   -1, 1, {O_N, O_N}, {"dstore_1"}},
10075fd0b74Schristos { 0x49,   -1, 1, {O_N, O_N}, {"dstore_2"}},
10175fd0b74Schristos { 0x4a,   -1, 1, {O_N, O_N}, {"dstore_3"}},
10275fd0b74Schristos { 0x4b,   -1, 1, {O_N, O_N}, {"astore_0"}},
10375fd0b74Schristos { 0x4c,   -1, 1, {O_N, O_N}, {"astore_1"}},
10475fd0b74Schristos { 0x4d,   -1, 1, {O_N, O_N}, {"astore_2"}},
10575fd0b74Schristos { 0x4e,   -1, 1, {O_N, O_N}, {"astore_3"}},
10675fd0b74Schristos { 0x4f,   -1, 1, {O_N, O_N}, {"iastore"}},
10775fd0b74Schristos { 0x50,   -1, 1, {O_N, O_N}, {"lastore"}},
10875fd0b74Schristos { 0x51,   -1, 1, {O_N, O_N}, {"fastore"}},
10975fd0b74Schristos { 0x52,   -1, 1, {O_N, O_N}, {"dastore"}},
11075fd0b74Schristos { 0x53,   -1, 1, {O_N, O_N}, {"aastore"}},
11175fd0b74Schristos { 0x54,   -1, 1, {O_N, O_N}, {"bastore"}},
11275fd0b74Schristos { 0x55,   -1, 1, {O_N, O_N}, {"castore"}},
11375fd0b74Schristos { 0x56,   -1, 1, {O_N, O_N}, {"sastore"}},
11475fd0b74Schristos { 0x57,   -1, 1, {O_N, O_N}, {"pop"}},
11575fd0b74Schristos { 0x58,   -1, 1, {O_N, O_N}, {"pop2"}},
11675fd0b74Schristos { 0x59,   -1, 1, {O_N, O_N}, {"dup"}},
11775fd0b74Schristos { 0x5a,   -1, 1, {O_N, O_N}, {"dup_x1"}},
11875fd0b74Schristos { 0x5b,   -1, 1, {O_N, O_N}, {"dup_x2"}},
11975fd0b74Schristos { 0x5c,   -1, 1, {O_N, O_N}, {"dup2"}},
12075fd0b74Schristos { 0x5d,   -1, 1, {O_N, O_N}, {"dup2_x1"}},
12175fd0b74Schristos { 0x5e,   -1, 1, {O_N, O_N}, {"dup2_x2"}},
12275fd0b74Schristos { 0x5f,   -1, 1, {O_N, O_N}, {"swap"}},
12375fd0b74Schristos { 0x60,   -1, 1, {O_N, O_N}, {"iadd"}},
12475fd0b74Schristos { 0x61,   -1, 1, {O_N, O_N}, {"ladd"}},
12575fd0b74Schristos { 0x62,   -1, 1, {O_N, O_N}, {"fadd"}},
12675fd0b74Schristos { 0x63,   -1, 1, {O_N, O_N}, {"dadd"}},
12775fd0b74Schristos { 0x64,   -1, 1, {O_N, O_N}, {"isub"}},
12875fd0b74Schristos { 0x65,   -1, 1, {O_N, O_N}, {"lsub"}},
12975fd0b74Schristos { 0x66,   -1, 1, {O_N, O_N}, {"fsub"}},
13075fd0b74Schristos { 0x67,   -1, 1, {O_N, O_N}, {"dsub"}},
13175fd0b74Schristos { 0x68,   -1, 1, {O_N, O_N}, {"imul"}},
13275fd0b74Schristos { 0x69,   -1, 1, {O_N, O_N}, {"lmul"}},
13375fd0b74Schristos { 0x6a,   -1, 1, {O_N, O_N}, {"fmul"}},
13475fd0b74Schristos { 0x6b,   -1, 1, {O_N, O_N}, {"dmul"}},
13575fd0b74Schristos { 0x6c,   -1, 1, {O_N, O_N}, {"idiv"}},
13675fd0b74Schristos { 0x6d,   -1, 1, {O_N, O_N}, {"ldiv"}},
13775fd0b74Schristos { 0x6e,   -1, 1, {O_N, O_N}, {"fdiv"}},
13875fd0b74Schristos { 0x6f,   -1, 1, {O_N, O_N}, {"ddiv"}},
13975fd0b74Schristos { 0x70,   -1, 1, {O_N, O_N}, {"irem"}},
14075fd0b74Schristos { 0x71,   -1, 1, {O_N, O_N}, {"lrem"}},
14175fd0b74Schristos { 0x72,   -1, 1, {O_N, O_N}, {"frem"}},
14275fd0b74Schristos { 0x73,   -1, 1, {O_N, O_N}, {"drem"}},
14375fd0b74Schristos { 0x74,   -1, 1, {O_N, O_N}, {"ineg"}},
14475fd0b74Schristos { 0x75,   -1, 1, {O_N, O_N}, {"lneg"}},
14575fd0b74Schristos { 0x76,   -1, 1, {O_N, O_N}, {"fneg"}},
14675fd0b74Schristos { 0x77,   -1, 1, {O_N, O_N}, {"dneg"}},
14775fd0b74Schristos { 0x78,   -1, 1, {O_N, O_N}, {"ishl"}},
14875fd0b74Schristos { 0x79,   -1, 1, {O_N, O_N}, {"lshl"}},
14975fd0b74Schristos { 0x7a,   -1, 1, {O_N, O_N}, {"ishr"}},
15075fd0b74Schristos { 0x7b,   -1, 1, {O_N, O_N}, {"lshr"}},
15175fd0b74Schristos { 0x7c,   -1, 1, {O_N, O_N}, {"iushr"}},
15275fd0b74Schristos { 0x7d,   -1, 1, {O_N, O_N}, {"lushr"}},
15375fd0b74Schristos { 0x7e,   -1, 1, {O_N, O_N}, {"iand"}},
15475fd0b74Schristos { 0x7f,   -1, 1, {O_N, O_N}, {"land"}},
15575fd0b74Schristos { 0x80,   -1, 1, {O_N, O_N}, {"ior"}},
15675fd0b74Schristos { 0x81,   -1, 1, {O_N, O_N}, {"lor"}},
15775fd0b74Schristos { 0x82,   -1, 1, {O_N, O_N}, {"ixor"}},
15875fd0b74Schristos { 0x83,   -1, 1, {O_N, O_N}, {"lxor"}},
15975fd0b74Schristos { 0x84,   -1, 3, {O_U8, O_8}, {"iinc"}},
16075fd0b74Schristos { 0x85,   -1, 1, {O_N, O_N}, {"i2l"}},
16175fd0b74Schristos { 0x86,   -1, 1, {O_N, O_N}, {"i2f"}},
16275fd0b74Schristos { 0x87,   -1, 1, {O_N, O_N}, {"i2d"}},
16375fd0b74Schristos { 0x88,   -1, 1, {O_N, O_N}, {"l2i"}},
16475fd0b74Schristos { 0x89,   -1, 1, {O_N, O_N}, {"l2f"}},
16575fd0b74Schristos { 0x8a,   -1, 1, {O_N, O_N}, {"l2d"}},
16675fd0b74Schristos { 0x8b,   -1, 1, {O_N, O_N}, {"f2i"}},
16775fd0b74Schristos { 0x8c,   -1, 1, {O_N, O_N}, {"f2l"}},
16875fd0b74Schristos { 0x8d,   -1, 1, {O_N, O_N}, {"f2d"}},
16975fd0b74Schristos { 0x8e,   -1, 1, {O_N, O_N}, {"d2i"}},
17075fd0b74Schristos { 0x8f,   -1, 1, {O_N, O_N}, {"d2l"}},
17175fd0b74Schristos { 0x90,   -1, 1, {O_N, O_N}, {"d2f"}},
17275fd0b74Schristos { 0x91,   -1, 1, {O_N, O_N}, {"i2b"}},
17375fd0b74Schristos { 0x92,   -1, 1, {O_N, O_N}, {"i2c"}},
17475fd0b74Schristos { 0x93,   -1, 1, {O_N, O_N}, {"i2s"}},
17575fd0b74Schristos { 0x94,   -1, 1, {O_N, O_N}, {"lcmp"}},
17675fd0b74Schristos { 0x95,   -1, 1, {O_N, O_N}, {"fcmpl"}},
17775fd0b74Schristos { 0x96,   -1, 1, {O_N, O_N}, {"fcmpg"}},
17875fd0b74Schristos { 0x97,   -1, 1, {O_N, O_N}, {"dcmpl"}},
17975fd0b74Schristos { 0x98,   -1, 1, {O_N, O_N}, {"dcmpg"}},
18075fd0b74Schristos { 0x99,   -1, 3, {O_R16, O_N}, {"ifeq"}},
18175fd0b74Schristos { 0x9a,   -1, 3, {O_R16, O_N}, {"ifne"}},
18275fd0b74Schristos { 0x9b,   -1, 3, {O_R16, O_N}, {"iflt"}},
18375fd0b74Schristos { 0x9c,   -1, 3, {O_R16, O_N}, {"ifge"}},
18475fd0b74Schristos { 0x9d,   -1, 3, {O_R16, O_N}, {"ifgt"}},
18575fd0b74Schristos { 0x9e,   -1, 3, {O_R16, O_N}, {"ifle"}},
18675fd0b74Schristos { 0x9f,   -1, 3, {O_R16, O_N}, {"if_icmpeq"}},
18775fd0b74Schristos { 0xa0,   -1, 3, {O_R16, O_N}, {"if_icmpne"}},
18875fd0b74Schristos { 0xa1,   -1, 3, {O_R16, O_N}, {"if_icmplt"}},
18975fd0b74Schristos { 0xa2,   -1, 3, {O_R16, O_N}, {"if_icmpge"}},
19075fd0b74Schristos { 0xa3,   -1, 3, {O_R16, O_N}, {"if_icmpgt"}},
19175fd0b74Schristos { 0xa4,   -1, 3, {O_R16, O_N}, {"if_icmple"}},
19275fd0b74Schristos { 0xa5,   -1, 3, {O_R16, O_N}, {"if_acmpeq"}},
19375fd0b74Schristos { 0xa6,   -1, 3, {O_R16, O_N}, {"if_acmpne"}},
19475fd0b74Schristos { 0xa7,   -1, 3, {O_R16, O_N}, {"goto"}},
19575fd0b74Schristos { 0xa8,   -1, 3, {O_R16, O_N}, {"jsr"}},
19675fd0b74Schristos { 0xa9,   -1, 2, {O_U8, O_N}, {"ret"}},
19775fd0b74Schristos { 0xaa,   -1, 1, {O_N, O_N}, {"tableswitch"}},
19875fd0b74Schristos { 0xab,   -1, 1, {O_N, O_N}, {"lookupswitch"}},
19975fd0b74Schristos { 0xac,   -1, 1, {O_N, O_N}, {"ireturn"}},
20075fd0b74Schristos { 0xad,   -1, 1, {O_N, O_N}, {"lreturn"}},
20175fd0b74Schristos { 0xae,   -1, 1, {O_N, O_N}, {"freturn"}},
20275fd0b74Schristos { 0xaf,   -1, 1, {O_N, O_N}, {"dreturn"}},
20375fd0b74Schristos { 0xb0,   -1, 1, {O_N, O_N}, {"areturn"}},
20475fd0b74Schristos { 0xb1,   -1, 1, {O_N, O_N}, {"return"}},
20575fd0b74Schristos { 0xb2,   -1, 3, {O_U16, O_N}, {"getstatic"}},
20675fd0b74Schristos { 0xb3,   -1, 3, {O_U16, O_N}, {"putstatic"}},
20775fd0b74Schristos { 0xb4,   -1, 3, {O_U16, O_N}, {"getfield"}},
20875fd0b74Schristos { 0xb5,   -1, 3, {O_U16, O_N}, {"putfield"}},
20975fd0b74Schristos { 0xb6,   -1, 3, {O_U16, O_N}, {"invokevirtual"}},
21075fd0b74Schristos { 0xb7,   -1, 3, {O_U16, O_N}, {"invokespecial"}},
21175fd0b74Schristos { 0xb8,   -1, 3, {O_U16, O_N}, {"invokestatic"}},
21275fd0b74Schristos { 0xb9,   -1, 5, {O_U16, O_U8}, {"invokeinterface"}},
21375fd0b74Schristos { 0xba,   -1, 1, {O_N, O_N}, {"bad_ba"}},
21475fd0b74Schristos { 0xbb,   -1, 3, {O_N, O_N}, {"new"}},
21575fd0b74Schristos { 0xbc,   -1, 2, {O_N, O_N}, {"newarray"}},
21675fd0b74Schristos { 0xbd,   -1, 3, {O_N, O_N}, {"anewarray"}},
21775fd0b74Schristos { 0xbe,   -1, 1, {O_N, O_N}, {"arraylength"}},
21875fd0b74Schristos { 0xbf,   -1, 1, {O_N, O_N}, {"athrow"}},
21975fd0b74Schristos { 0xc0,   -1, 3, {O_N, O_N}, {"checkcast"}},
22075fd0b74Schristos { 0xc1,   -1, 3, {O_N, O_N}, {"instanceof"}},
22175fd0b74Schristos { 0xc2,   -1, 1, {O_N, O_N}, {"monitorenter"}},
22275fd0b74Schristos { 0xc3,   -1, 1, {O_N, O_N}, {"monitorexit"}},
22375fd0b74Schristos { 0xc4,   -1, 1, {O_N, O_N}, {"wide"}},
22475fd0b74Schristos { 0xc5,   -1, 4, {O_N, O_N}, {"multianewarray"}},
22575fd0b74Schristos { 0xc6,   -1, 3, {O_N, O_N}, {"ifnull"}},
22675fd0b74Schristos { 0xc7,   -1, 3, {O_N, O_N}, {"ifnonnull"}},
22775fd0b74Schristos { 0xc8,   -1, 5, {O_R32, O_N}, {"goto_w"}},
22875fd0b74Schristos { 0xc9,   -1, 5, {O_R32, O_N}, {"jsr_w"}},
22975fd0b74Schristos { 0xca,   -1, 3, {O_N, O_N}, {"breakpoint"}},
23075fd0b74Schristos { 0xcb,   -1, 2, {O_U8, O_N}, {"ldc_quick"}},
23175fd0b74Schristos { 0xcc,   -1, 3, {O_U16, O_N}, {"ldc_w_quick"}},
23275fd0b74Schristos { 0xcd,   -1, 3, {O_U16, O_N}, {"ldc2_w_quick"}},
23375fd0b74Schristos { 0xce,   -1, 3, {O_U16, O_N}, {"getfield_quick"}},
23475fd0b74Schristos { 0xcf,   -1, 3, {O_U16, O_N}, {"putfield_quick"}},
23575fd0b74Schristos { 0xd0,   -1, 3, {O_U16, O_N}, {"getfield2_quick"}},
23675fd0b74Schristos { 0xd1,   -1, 3, {O_U16, O_N}, {"putfield2_quick"}},
23775fd0b74Schristos { 0xd2,   -1, 3, {O_U16, O_N}, {"getstatic_quick"}},
23875fd0b74Schristos { 0xd3,   -1, 3, {O_U16, O_N}, {"putstatic_quick"}},
23975fd0b74Schristos { 0xd4,   -1, 3, {O_U16, O_N}, {"getstatic2_quick"}},
24075fd0b74Schristos { 0xd5,   -1, 3, {O_U16, O_N}, {"putstatic2_quick"}},
24175fd0b74Schristos { 0xd6,   -1, 3, {O_U16, O_N}, {"invokevirtual_quick"}},
24275fd0b74Schristos { 0xd7,   -1, 3, {O_U16, O_N}, {"invokenonvirtual_quick"}},
24375fd0b74Schristos { 0xd8,   -1, 3, {O_U16, O_N}, {"invokesuper_quick"}},
24475fd0b74Schristos { 0xd9,   -1, 3, {O_U16, O_N}, {"invokestatic_quick"}},
24575fd0b74Schristos { 0xda,   -1, 3, {O_U16, O_N}, {"invokeinterface_quick"}},
24675fd0b74Schristos { 0xdb,   -1, 1, {O_N, O_N}, {"bad_db"}},
24775fd0b74Schristos { 0xdc,   -1, 1, {O_N, O_N}, {"aastore_quick"}},
24875fd0b74Schristos { 0xdd,   -1, 3, {O_U16, O_N}, {"new_quick"}},
24975fd0b74Schristos { 0xde,   -1, 3, {O_U16, O_N}, {"anewarray_quick"}},
25075fd0b74Schristos { 0xdf,   -1, 3, {O_U16, O_N}, {"multianewarray_quick"}},
25175fd0b74Schristos { 0xe0,   -1, 3, {O_U16, O_N}, {"checkcast_quick"}},
25275fd0b74Schristos { 0xe1,   -1, 3, {O_U16, O_N}, {"instanceof_quick"}},
25375fd0b74Schristos { 0xe2,   -1, 3, {O_U16, O_N}, {"invokevirtiual_quick_w"}},
25475fd0b74Schristos { 0xe3,   -1, 3, {O_U16, O_N}, {"getfield_quick_w"}},
25575fd0b74Schristos { 0xe4,   -1, 3, {O_U16, O_N}, {"putfield_quick_w"}},
25675fd0b74Schristos { 0xe5,   -1, 1, {O_N, O_N}, {"nonnull_quick"}},
25775fd0b74Schristos { 0xe6,   -1, 3, {O_U16, O_N}, {"agetfield_quick"}},
25875fd0b74Schristos { 0xe7,   -1, 3, {O_U16, O_N}, {"aputfield_quick"}},
25975fd0b74Schristos { 0xe8,   -1, 3, {O_U16, O_N}, {"agetstatic_quick"}},
26075fd0b74Schristos { 0xe9,   -1, 3, {O_U16, O_N}, {"aputstatic_quick"}},
26175fd0b74Schristos { 0xea,   -1, 2, {O_U8, O_N}, {"aldc_quick"}},
26275fd0b74Schristos { 0xeb,   -1, 3, {O_U16, O_N}, {"aldc_w_quick"}},
26375fd0b74Schristos { 0xec,   -1, 1, {O_N, O_N}, {"exit_sync_method"}},
26475fd0b74Schristos { 0xed,   -1, 3, {O_16, O_N}, {"sethi"}},
26575fd0b74Schristos { 0xee,   -1, 3, {O_U8, O_8}, {"load_word_index"}},
26675fd0b74Schristos { 0xef,   -1, 3, {O_U8, O_8}, {"load_short_index"}},
26775fd0b74Schristos { 0xf0,   -1, 3, {O_U8, O_8}, {"load_char_index"}},
26875fd0b74Schristos { 0xf1,   -1, 3, {O_U8, O_8}, {"load_byte_index"}},
26975fd0b74Schristos { 0xf2,   -1, 3, {O_U8, O_8}, {"load_ubyte_index"}},
27075fd0b74Schristos { 0xf3,   -1, 3, {O_U8, O_8}, {"store_word_index"}},
27175fd0b74Schristos { 0xf4,   -1, 3, {O_U8, O_8}, {"na_store_word_index"}},
27275fd0b74Schristos { 0xf5,   -1, 3, {O_U8, O_8}, {"store_short_index"}},
27375fd0b74Schristos { 0xf6,   -1, 3, {O_U8, O_8}, {"store_byte_index"}},
27475fd0b74Schristos { 0xf7,   -1, 1, {O_N, O_N}, {"bad_f7"}},
27575fd0b74Schristos { 0xf8,   -1, 1, {O_N, O_N}, {"bad_f8"}},
27675fd0b74Schristos { 0xf9,   -1, 1, {O_N, O_N}, {"bad_f9"}},
27775fd0b74Schristos { 0xfa,   -1, 1, {O_N, O_N}, {"bad_fa"}},
27875fd0b74Schristos { 0xfb,   -1, 1, {O_N, O_N}, {"bad_fb"}},
27975fd0b74Schristos { 0xfc,   -1, 1, {O_N, O_N}, {"bad_fc"}},
28075fd0b74Schristos { 0xfd,   -1, 1, {O_N, O_N}, {"bad_fd"}},
28175fd0b74Schristos { 0xfe,   -1, 1, {O_N, O_N}, {"bad_fe"}},
28275fd0b74Schristos 
28375fd0b74Schristos { 0xff, 0x00, 2, {O_N, O_N}, {"load_ubyte"}},
28475fd0b74Schristos { 0xff, 0x01, 2, {O_N, O_N}, {"load_byte"}},
28575fd0b74Schristos { 0xff, 0x02, 2, {O_N, O_N}, {"load_char"}},
28675fd0b74Schristos { 0xff, 0x03, 2, {O_N, O_N}, {"load_short"}},
28775fd0b74Schristos { 0xff, 0x04, 2, {O_N, O_N}, {"load_word"}},
28875fd0b74Schristos { 0xff, 0x05, 2, {O_N, O_N}, {"priv_ret_from_trap"}},
28975fd0b74Schristos { 0xff, 0x06, 2, {O_N, O_N}, {"priv_read_dcache_tag"}},
29075fd0b74Schristos { 0xff, 0x07, 2, {O_N, O_N}, {"priv_read_dcache_data"}},
29175fd0b74Schristos { 0xff, 0x08, 2, {O_N, O_N}, {"bad"}},
29275fd0b74Schristos { 0xff, 0x09, 2, {O_N, O_N}, {"bad"}},
29375fd0b74Schristos { 0xff, 0x0a, 2, {O_N, O_N}, {"load_char_oe"}},
29475fd0b74Schristos { 0xff, 0x0b, 2, {O_N, O_N}, {"load_short_oe"}},
29575fd0b74Schristos { 0xff, 0x0c, 2, {O_N, O_N}, {"load_word_oe"}},
29675fd0b74Schristos { 0xff, 0x0d, 2, {O_N, O_N}, {"return0"}},
29775fd0b74Schristos { 0xff, 0x0e, 2, {O_N, O_N}, {"priv_read_icache_tag"}},
29875fd0b74Schristos { 0xff, 0x0f, 2, {O_N, O_N}, {"priv_read_icache_data"}},
29975fd0b74Schristos { 0xff, 0x10, 2, {O_N, O_N}, {"ncload_ubyte"}},
30075fd0b74Schristos { 0xff, 0x11, 2, {O_N, O_N}, {"ncload_byte"}},
30175fd0b74Schristos { 0xff, 0x12, 2, {O_N, O_N}, {"ncload_char"}},
30275fd0b74Schristos { 0xff, 0x13, 2, {O_N, O_N}, {"ncload_short"}},
30375fd0b74Schristos { 0xff, 0x14, 2, {O_N, O_N}, {"ncload_word"}},
30475fd0b74Schristos { 0xff, 0x15, 2, {O_N, O_N}, {"iucmp"}},
30575fd0b74Schristos { 0xff, 0x16, 2, {O_N, O_N}, {"priv_powerdown"}},
30675fd0b74Schristos { 0xff, 0x17, 2, {O_N, O_N}, {"cache_invalidate"}},
30775fd0b74Schristos { 0xff, 0x18, 2, {O_N, O_N}, {"bad"}},
30875fd0b74Schristos { 0xff, 0x19, 2, {O_N, O_N}, {"bad"}},
30975fd0b74Schristos { 0xff, 0x1a, 2, {O_N, O_N}, {"ncload_char_oe"}},
31075fd0b74Schristos { 0xff, 0x1b, 2, {O_N, O_N}, {"ncload_short_oe"}},
31175fd0b74Schristos { 0xff, 0x1c, 2, {O_N, O_N}, {"ncload_word_oe"}},
31275fd0b74Schristos { 0xff, 0x1d, 2, {O_N, O_N}, {"return1"}},
31375fd0b74Schristos { 0xff, 0x1e, 2, {O_N, O_N}, {"cache_flush"}},
31475fd0b74Schristos { 0xff, 0x1f, 2, {O_N, O_N}, {"cache_index_flush"}},
31575fd0b74Schristos { 0xff, 0x20, 2, {O_N, O_N}, {"store_byte"}},
31675fd0b74Schristos { 0xff, 0x21, 2, {O_N, O_N}, {"bad"}},
31775fd0b74Schristos { 0xff, 0x22, 2, {O_N, O_N}, {"store_short"}},
31875fd0b74Schristos { 0xff, 0x23, 2, {O_N, O_N}, {"bad"}},
31975fd0b74Schristos { 0xff, 0x24, 2, {O_N, O_N}, {"store_word"}},
32075fd0b74Schristos { 0xff, 0x25, 2, {O_N, O_N}, {"soft_trap"}},
32175fd0b74Schristos { 0xff, 0x26, 2, {O_N, O_N}, {"priv_write_dcache_tag"}},
32275fd0b74Schristos { 0xff, 0x27, 2, {O_N, O_N}, {"priv_write_dcache_data"}},
32375fd0b74Schristos { 0xff, 0x28, 2, {O_N, O_N}, {"bad"}},
32475fd0b74Schristos { 0xff, 0x29, 2, {O_N, O_N}, {"bad"}},
32575fd0b74Schristos { 0xff, 0x2a, 2, {O_N, O_N}, {"store_short_oe"}},
32675fd0b74Schristos { 0xff, 0x2b, 2, {O_N, O_N}, {"bad"}},
32775fd0b74Schristos { 0xff, 0x2c, 2, {O_N, O_N}, {"store_word_oe"}},
32875fd0b74Schristos { 0xff, 0x2d, 2, {O_N, O_N}, {"return2"}},
32975fd0b74Schristos { 0xff, 0x2e, 2, {O_N, O_N}, {"priv_write_icache_tag"}},
33075fd0b74Schristos { 0xff, 0x2f, 2, {O_N, O_N}, {"priv_write_icache_data"}},
33175fd0b74Schristos { 0xff, 0x30, 2, {O_N, O_N}, {"ncstore_byte"}},
33275fd0b74Schristos { 0xff, 0x31, 2, {O_N, O_N}, {"bad"}},
33375fd0b74Schristos { 0xff, 0x32, 2, {O_N, O_N}, {"ncstore_short"}},
33475fd0b74Schristos { 0xff, 0x33, 2, {O_N, O_N}, {"bad"}},
33575fd0b74Schristos { 0xff, 0x34, 2, {O_N, O_N}, {"ncstore_word"}},
33675fd0b74Schristos { 0xff, 0x35, 2, {O_N, O_N}, {"bad"}},
33775fd0b74Schristos { 0xff, 0x36, 2, {O_N, O_N}, {"priv_reset"}},
33875fd0b74Schristos { 0xff, 0x37, 2, {O_N, O_N}, {"get_current_class"}},
33975fd0b74Schristos { 0xff, 0x38, 2, {O_N, O_N}, {"bad"}},
34075fd0b74Schristos { 0xff, 0x39, 2, {O_N, O_N}, {"bad"}},
34175fd0b74Schristos { 0xff, 0x3a, 2, {O_N, O_N}, {"ncstore_short_oe"}},
34275fd0b74Schristos { 0xff, 0x3b, 2, {O_N, O_N}, {"bad"}},
34375fd0b74Schristos { 0xff, 0x3c, 2, {O_N, O_N}, {"ncstore_word_oe"}},
34475fd0b74Schristos { 0xff, 0x3d, 2, {O_N, O_N}, {"call"}},
34575fd0b74Schristos { 0xff, 0x3e, 2, {O_N, O_N}, {"zero_line"}},
34675fd0b74Schristos { 0xff, 0x3f, 2, {O_N, O_N}, {"priv_update_optop"}},
34775fd0b74Schristos { 0xff, 0x40, 2, {O_N, O_N}, {"read_pc"}},
34875fd0b74Schristos { 0xff, 0x41, 2, {O_N, O_N}, {"read_vars"}},
34975fd0b74Schristos { 0xff, 0x42, 2, {O_N, O_N}, {"read_frame"}},
35075fd0b74Schristos { 0xff, 0x43, 2, {O_N, O_N}, {"read_optop"}},
35175fd0b74Schristos { 0xff, 0x44, 2, {O_N, O_N}, {"priv_read_oplim"}},
35275fd0b74Schristos { 0xff, 0x45, 2, {O_N, O_N}, {"read_const_pool"}},
35375fd0b74Schristos { 0xff, 0x46, 2, {O_N, O_N}, {"priv_read_psr"}},
35475fd0b74Schristos { 0xff, 0x47, 2, {O_N, O_N}, {"priv_read_trapbase"}},
35575fd0b74Schristos { 0xff, 0x48, 2, {O_N, O_N}, {"priv_read_lockcount0"}},
35675fd0b74Schristos { 0xff, 0x49, 2, {O_N, O_N}, {"priv_read_lockcount1"}},
35775fd0b74Schristos { 0xff, 0x4a, 2, {O_N, O_N}, {"bad"}},
35875fd0b74Schristos { 0xff, 0x4b, 2, {O_N, O_N}, {"bad"}},
35975fd0b74Schristos { 0xff, 0x4c, 2, {O_N, O_N}, {"priv_read_lockaddr0"}},
36075fd0b74Schristos { 0xff, 0x4d, 2, {O_N, O_N}, {"priv_read_lockaddr1"}},
36175fd0b74Schristos { 0xff, 0x4e, 2, {O_N, O_N}, {"bad"}},
36275fd0b74Schristos { 0xff, 0x4f, 2, {O_N, O_N}, {"bad"}},
36375fd0b74Schristos { 0xff, 0x50, 2, {O_N, O_N}, {"priv_read_userrange1"}},
36475fd0b74Schristos { 0xff, 0x51, 2, {O_N, O_N}, {"priv_read_gc_config"}},
36575fd0b74Schristos { 0xff, 0x52, 2, {O_N, O_N}, {"priv_read_brk1a"}},
36675fd0b74Schristos { 0xff, 0x53, 2, {O_N, O_N}, {"priv_read_brk2a"}},
36775fd0b74Schristos { 0xff, 0x54, 2, {O_N, O_N}, {"priv_read_brk12c"}},
36875fd0b74Schristos { 0xff, 0x55, 2, {O_N, O_N}, {"priv_read_userrange2"}},
36975fd0b74Schristos { 0xff, 0x56, 2, {O_N, O_N}, {"bad"}},
37075fd0b74Schristos { 0xff, 0x57, 2, {O_N, O_N}, {"priv_read_versionid"}},
37175fd0b74Schristos { 0xff, 0x58, 2, {O_N, O_N}, {"priv_read_hcr"}},
37275fd0b74Schristos { 0xff, 0x59, 2, {O_N, O_N}, {"priv_read_sc_bottom"}},
37375fd0b74Schristos { 0xff, 0x5a, 2, {O_N, O_N}, {"read_global0"}},
37475fd0b74Schristos { 0xff, 0x5b, 2, {O_N, O_N}, {"read_global1"}},
37575fd0b74Schristos { 0xff, 0x5c, 2, {O_N, O_N}, {"read_global2"}},
37675fd0b74Schristos { 0xff, 0x5d, 2, {O_N, O_N}, {"read_global3"}},
37775fd0b74Schristos { 0xff, 0x5e, 2, {O_N, O_N}, {"bad"}},
37875fd0b74Schristos { 0xff, 0x5f, 2, {O_N, O_N}, {"bad"}},
37975fd0b74Schristos { 0xff, 0x60, 2, {O_N, O_N}, {"write_pc"}},
38075fd0b74Schristos { 0xff, 0x61, 2, {O_N, O_N}, {"write_vars"}},
38175fd0b74Schristos { 0xff, 0x62, 2, {O_N, O_N}, {"write_frame"}},
38275fd0b74Schristos { 0xff, 0x63, 2, {O_N, O_N}, {"write_optop"}},
38375fd0b74Schristos { 0xff, 0x64, 2, {O_N, O_N}, {"priv_write_oplim"}},
38475fd0b74Schristos { 0xff, 0x65, 2, {O_N, O_N}, {"write_const_pool"}},
38575fd0b74Schristos { 0xff, 0x66, 2, {O_N, O_N}, {"priv_write_psr"}},
38675fd0b74Schristos { 0xff, 0x67, 2, {O_N, O_N}, {"priv_write_trapbase"}},
38775fd0b74Schristos { 0xff, 0x68, 2, {O_N, O_N}, {"priv_write_lockcount0"}},
38875fd0b74Schristos { 0xff, 0x69, 2, {O_N, O_N}, {"priv_write_lockcount1"}},
38975fd0b74Schristos { 0xff, 0x6a, 2, {O_N, O_N}, {"bad"}},
39075fd0b74Schristos { 0xff, 0x6b, 2, {O_N, O_N}, {"bad"}},
39175fd0b74Schristos { 0xff, 0x6c, 2, {O_N, O_N}, {"priv_write_lockaddr0"}},
39275fd0b74Schristos { 0xff, 0x6d, 2, {O_N, O_N}, {"priv_write_lockaddr1"}},
39375fd0b74Schristos { 0xff, 0x6e, 2, {O_N, O_N}, {"bad"}},
39475fd0b74Schristos { 0xff, 0x6f, 2, {O_N, O_N}, {"bad"}},
39575fd0b74Schristos { 0xff, 0x70, 2, {O_N, O_N}, {"priv_write_userrange1"}},
39675fd0b74Schristos { 0xff, 0x71, 2, {O_N, O_N}, {"priv_write_gc_config"}},
39775fd0b74Schristos { 0xff, 0x72, 2, {O_N, O_N}, {"priv_write_brk1a"}},
39875fd0b74Schristos { 0xff, 0x73, 2, {O_N, O_N}, {"priv_write_brk2a"}},
39975fd0b74Schristos { 0xff, 0x74, 2, {O_N, O_N}, {"priv_write_brk12c"}},
40075fd0b74Schristos { 0xff, 0x75, 2, {O_N, O_N}, {"priv_write_userrange2"}},
40175fd0b74Schristos { 0xff, 0x76, 2, {O_N, O_N}, {"bad"}},
40275fd0b74Schristos { 0xff, 0x77, 2, {O_N, O_N}, {"bad"}},
40375fd0b74Schristos { 0xff, 0x78, 2, {O_N, O_N}, {"bad"}},
40475fd0b74Schristos { 0xff, 0x79, 2, {O_N, O_N}, {"priv_write_sc_bottom"}},
40575fd0b74Schristos { 0xff, 0x7a, 2, {O_N, O_N}, {"write_global0"}},
40675fd0b74Schristos { 0xff, 0x7b, 2, {O_N, O_N}, {"write_global1"}},
40775fd0b74Schristos { 0xff, 0x7c, 2, {O_N, O_N}, {"write_global2"}},
40875fd0b74Schristos { 0xff, 0x7d, 2, {O_N, O_N}, {"write_global3"}},
40975fd0b74Schristos { 0xff, 0x7e, 2, {O_N, O_N}, {"bad"}},
41075fd0b74Schristos { 0xff, 0x7f, 2, {O_N, O_N}, {"bad"}},
41175fd0b74Schristos { 0xff, 0x80, 2, {O_N, O_N}, {"bad"}},
41275fd0b74Schristos { 0xff, 0x81, 2, {O_N, O_N}, {"bad"}},
41375fd0b74Schristos { 0xff, 0x82, 2, {O_N, O_N}, {"bad"}},
41475fd0b74Schristos { 0xff, 0x83, 2, {O_N, O_N}, {"bad"}},
41575fd0b74Schristos { 0xff, 0x84, 2, {O_N, O_N}, {"bad"}},
41675fd0b74Schristos { 0xff, 0x85, 2, {O_N, O_N}, {"bad"}},
41775fd0b74Schristos { 0xff, 0x86, 2, {O_N, O_N}, {"bad"}},
41875fd0b74Schristos { 0xff, 0x87, 2, {O_N, O_N}, {"bad"}},
41975fd0b74Schristos { 0xff, 0x88, 2, {O_N, O_N}, {"bad"}},
42075fd0b74Schristos { 0xff, 0x89, 2, {O_N, O_N}, {"bad"}},
42175fd0b74Schristos { 0xff, 0x8a, 2, {O_N, O_N}, {"bad"}},
42275fd0b74Schristos { 0xff, 0x8b, 2, {O_N, O_N}, {"bad"}},
42375fd0b74Schristos { 0xff, 0x8c, 2, {O_N, O_N}, {"bad"}},
42475fd0b74Schristos { 0xff, 0x8d, 2, {O_N, O_N}, {"bad"}},
42575fd0b74Schristos { 0xff, 0x8e, 2, {O_N, O_N}, {"bad"}},
42675fd0b74Schristos { 0xff, 0x8f, 2, {O_N, O_N}, {"bad"}},
42775fd0b74Schristos { 0xff, 0x90, 2, {O_N, O_N}, {"bad"}},
42875fd0b74Schristos { 0xff, 0x91, 2, {O_N, O_N}, {"bad"}},
42975fd0b74Schristos { 0xff, 0x92, 2, {O_N, O_N}, {"bad"}},
43075fd0b74Schristos { 0xff, 0x93, 2, {O_N, O_N}, {"bad"}},
43175fd0b74Schristos { 0xff, 0x94, 2, {O_N, O_N}, {"bad"}},
43275fd0b74Schristos { 0xff, 0x95, 2, {O_N, O_N}, {"bad"}},
43375fd0b74Schristos { 0xff, 0x96, 2, {O_N, O_N}, {"bad"}},
43475fd0b74Schristos { 0xff, 0x97, 2, {O_N, O_N}, {"bad"}},
43575fd0b74Schristos { 0xff, 0x98, 2, {O_N, O_N}, {"bad"}},
43675fd0b74Schristos { 0xff, 0x99, 2, {O_N, O_N}, {"bad"}},
43775fd0b74Schristos { 0xff, 0x9a, 2, {O_N, O_N}, {"bad"}},
43875fd0b74Schristos { 0xff, 0x9b, 2, {O_N, O_N}, {"bad"}},
43975fd0b74Schristos { 0xff, 0x9c, 2, {O_N, O_N}, {"bad"}},
44075fd0b74Schristos { 0xff, 0x9d, 2, {O_N, O_N}, {"bad"}},
44175fd0b74Schristos { 0xff, 0x9e, 2, {O_N, O_N}, {"bad"}},
44275fd0b74Schristos { 0xff, 0x9f, 2, {O_N, O_N}, {"bad"}},
44375fd0b74Schristos { 0xff, 0xa0, 2, {O_N, O_N}, {"bad"}},
44475fd0b74Schristos { 0xff, 0xa1, 2, {O_N, O_N}, {"bad"}},
44575fd0b74Schristos { 0xff, 0xa2, 2, {O_N, O_N}, {"bad"}},
44675fd0b74Schristos { 0xff, 0xa3, 2, {O_N, O_N}, {"bad"}},
44775fd0b74Schristos { 0xff, 0xa4, 2, {O_N, O_N}, {"bad"}},
44875fd0b74Schristos { 0xff, 0xa5, 2, {O_N, O_N}, {"bad"}},
44975fd0b74Schristos { 0xff, 0xa6, 2, {O_N, O_N}, {"bad"}},
45075fd0b74Schristos { 0xff, 0xa7, 2, {O_N, O_N}, {"bad"}},
45175fd0b74Schristos { 0xff, 0xa8, 2, {O_N, O_N}, {"bad"}},
45275fd0b74Schristos { 0xff, 0xa9, 2, {O_N, O_N}, {"bad"}},
45375fd0b74Schristos { 0xff, 0xaa, 2, {O_N, O_N}, {"bad"}},
45475fd0b74Schristos { 0xff, 0xab, 2, {O_N, O_N}, {"bad"}},
45575fd0b74Schristos { 0xff, 0xac, 2, {O_N, O_N}, {"bad"}},
45675fd0b74Schristos { 0xff, 0xad, 2, {O_N, O_N}, {"bad"}},
45775fd0b74Schristos { 0xff, 0xae, 2, {O_N, O_N}, {"bad"}},	/*LM_FIXED*/
45875fd0b74Schristos { 0xff, 0xaf, 2, {O_N, O_N}, {"bad"}},	/*LM_FIXED*/
45975fd0b74Schristos { 0xff, 0xb0, 2, {O_N, O_N}, {"bad"}},	/*LM_FIXED*/
46075fd0b74Schristos { 0xff, 0xb1, 2, {O_N, O_N}, {"bad"}},	/*LM_FIXED*/
46175fd0b74Schristos { 0xff, 0xb2, 2, {O_N, O_N}, {"bad"}},
46275fd0b74Schristos { 0xff, 0xb3, 2, {O_N, O_N}, {"bad"}},
46375fd0b74Schristos { 0xff, 0xb4, 2, {O_N, O_N}, {"bad"}},
46475fd0b74Schristos { 0xff, 0xb5, 2, {O_N, O_N}, {"bad"}},
46575fd0b74Schristos { 0xff, 0xb6, 2, {O_N, O_N}, {"bad"}},
46675fd0b74Schristos { 0xff, 0xb7, 2, {O_N, O_N}, {"bad"}},
46775fd0b74Schristos { 0xff, 0xb8, 2, {O_N, O_N}, {"bad"}},
46875fd0b74Schristos { 0xff, 0xb9, 2, {O_N, O_N}, {"bad"}},
46975fd0b74Schristos { 0xff, 0xba, 2, {O_N, O_N}, {"bad"}},
47075fd0b74Schristos { 0xff, 0xbb, 2, {O_N, O_N}, {"bad"}},
47175fd0b74Schristos { 0xff, 0xbc, 2, {O_N, O_N}, {"bad"}},
47275fd0b74Schristos { 0xff, 0xbd, 2, {O_N, O_N}, {"bad"}},
47375fd0b74Schristos { 0xff, 0xbe, 2, {O_N, O_N}, {"bad"}},
47475fd0b74Schristos { 0xff, 0xbf, 2, {O_N, O_N}, {"bad"}},
47575fd0b74Schristos { 0xff, 0xc0, 2, {O_N, O_N}, {"bad"}},
47675fd0b74Schristos { 0xff, 0xc1, 2, {O_N, O_N}, {"bad"}},
47775fd0b74Schristos { 0xff, 0xc2, 2, {O_N, O_N}, {"bad"}},
47875fd0b74Schristos { 0xff, 0xc3, 2, {O_N, O_N}, {"bad"}},
47975fd0b74Schristos { 0xff, 0xc4, 2, {O_N, O_N}, {"bad"}},
48075fd0b74Schristos { 0xff, 0xc5, 2, {O_N, O_N}, {"bad"}},
48175fd0b74Schristos { 0xff, 0xc6, 2, {O_N, O_N}, {"bad"}},
48275fd0b74Schristos { 0xff, 0xc7, 2, {O_N, O_N}, {"bad"}},
48375fd0b74Schristos { 0xff, 0xc8, 2, {O_N, O_N}, {"bad"}},
48475fd0b74Schristos { 0xff, 0xc9, 2, {O_N, O_N}, {"bad"}},
48575fd0b74Schristos { 0xff, 0xca, 2, {O_N, O_N}, {"bad"}},
48675fd0b74Schristos { 0xff, 0xcb, 2, {O_N, O_N}, {"bad"}},
48775fd0b74Schristos { 0xff, 0xcc, 2, {O_N, O_N}, {"bad"}},
48875fd0b74Schristos { 0xff, 0xcd, 2, {O_N, O_N}, {"bad"}},
48975fd0b74Schristos { 0xff, 0xce, 2, {O_N, O_N}, {"bad"}},
49075fd0b74Schristos { 0xff, 0xcf, 2, {O_N, O_N}, {"bad"}},
49175fd0b74Schristos { 0xff, 0xd0, 2, {O_N, O_N}, {"bad"}},
49275fd0b74Schristos { 0xff, 0xd1, 2, {O_N, O_N}, {"bad"}},
49375fd0b74Schristos { 0xff, 0xd2, 2, {O_N, O_N}, {"bad"}},
49475fd0b74Schristos { 0xff, 0xd3, 2, {O_N, O_N}, {"bad"}},
49575fd0b74Schristos { 0xff, 0xd4, 2, {O_N, O_N}, {"bad"}},
49675fd0b74Schristos { 0xff, 0xd5, 2, {O_N, O_N}, {"bad"}},
49775fd0b74Schristos { 0xff, 0xd6, 2, {O_N, O_N}, {"bad"}},
49875fd0b74Schristos { 0xff, 0xd7, 2, {O_N, O_N}, {"bad"}},
49975fd0b74Schristos { 0xff, 0xd8, 2, {O_N, O_N}, {"bad"}},
50075fd0b74Schristos { 0xff, 0xd9, 2, {O_N, O_N}, {"bad"}},
50175fd0b74Schristos { 0xff, 0xda, 2, {O_N, O_N}, {"bad"}},
50275fd0b74Schristos { 0xff, 0xdb, 2, {O_N, O_N}, {"bad"}},
50375fd0b74Schristos { 0xff, 0xdc, 2, {O_N, O_N}, {"bad"}},
50475fd0b74Schristos { 0xff, 0xdd, 2, {O_N, O_N}, {"bad"}},
50575fd0b74Schristos { 0xff, 0xde, 2, {O_N, O_N}, {"bad"}},
50675fd0b74Schristos { 0xff, 0xdf, 2, {O_N, O_N}, {"bad"}},
50775fd0b74Schristos { 0xff, 0xe0, 2, {O_N, O_N}, {"bad"}},
50875fd0b74Schristos { 0xff, 0xe1, 2, {O_N, O_N}, {"bad"}},
50975fd0b74Schristos { 0xff, 0xe2, 2, {O_N, O_N}, {"bad"}},
51075fd0b74Schristos { 0xff, 0xe3, 2, {O_N, O_N}, {"bad"}},
51175fd0b74Schristos { 0xff, 0xe4, 2, {O_N, O_N}, {"bad"}},
51275fd0b74Schristos { 0xff, 0xe5, 2, {O_N, O_N}, {"bad"}},
51375fd0b74Schristos { 0xff, 0xe6, 2, {O_N, O_N}, {"bad"}},
51475fd0b74Schristos { 0xff, 0xe7, 2, {O_N, O_N}, {"bad"}},
51575fd0b74Schristos { 0xff, 0xe8, 2, {O_N, O_N}, {"bad"}},
51675fd0b74Schristos { 0xff, 0xe9, 2, {O_N, O_N}, {"bad"}},
51775fd0b74Schristos { 0xff, 0xea, 2, {O_N, O_N}, {"bad"}},
51875fd0b74Schristos { 0xff, 0xeb, 2, {O_N, O_N}, {"bad"}},
51975fd0b74Schristos { 0xff, 0xec, 2, {O_N, O_N}, {"bad"}},
52075fd0b74Schristos { 0xff, 0xed, 2, {O_N, O_N}, {"bad"}},
52175fd0b74Schristos { 0xff, 0xee, 2, {O_N, O_N}, {"bad"}},
52275fd0b74Schristos { 0xff, 0xef, 2, {O_N, O_N}, {"bad"}},
52375fd0b74Schristos { 0xff, 0xf0, 2, {O_N, O_N}, {"bad"}},
52475fd0b74Schristos { 0xff, 0xf1, 2, {O_N, O_N}, {"bad"}},
52575fd0b74Schristos { 0xff, 0xf2, 2, {O_N, O_N}, {"bad"}},
52675fd0b74Schristos { 0xff, 0xf3, 2, {O_N, O_N}, {"bad"}},
52775fd0b74Schristos { 0xff, 0xf4, 2, {O_N, O_N}, {"bad"}},
52875fd0b74Schristos { 0xff, 0xf5, 2, {O_N, O_N}, {"bad"}},
52975fd0b74Schristos { 0xff, 0xf6, 2, {O_N, O_N}, {"bad"}},
53075fd0b74Schristos { 0xff, 0xf7, 2, {O_N, O_N}, {"bad"}},
53175fd0b74Schristos { 0xff, 0xf8, 2, {O_N, O_N}, {"bad"}},
53275fd0b74Schristos { 0xff, 0xf9, 2, {O_N, O_N}, {"bad"}},
53375fd0b74Schristos { 0xff, 0xfa, 2, {O_N, O_N}, {"bad"}},
53475fd0b74Schristos { 0xff, 0xfb, 2, {O_N, O_N}, {"bad"}},
53575fd0b74Schristos { 0xff, 0xfc, 2, {O_N, O_N}, {"bad"}},
53675fd0b74Schristos { 0xff, 0xfd, 2, {O_N, O_N}, {"bad"}},
53775fd0b74Schristos { 0xff, 0xfe, 2, {O_N, O_N}, {"bad"}},
53875fd0b74Schristos { 0xff, 0xff, 2, {O_N, O_N}, {"bad"}},
53975fd0b74Schristos };
540