1#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
5#[repr(u8)]
6#[rustfmt::skip]
7pub enum Opcode {
8 #[doc = "JVM opcode `nop` (`0x00`)."] Nop = 0x00,
9 #[doc = "JVM opcode `aconst_null` (`0x01`)."] AconstNull = 0x01,
10 #[doc = "JVM opcode `iconst_m1` (`0x02`)."] IconstM1 = 0x02,
11 #[doc = "JVM opcode `iconst_0` (`0x03`)."] Iconst0 = 0x03,
12 #[doc = "JVM opcode `iconst_1` (`0x04`)."] Iconst1 = 0x04,
13 #[doc = "JVM opcode `iconst_2` (`0x05`)."] Iconst2 = 0x05,
14 #[doc = "JVM opcode `iconst_3` (`0x06`)."] Iconst3 = 0x06,
15 #[doc = "JVM opcode `iconst_4` (`0x07`)."] Iconst4 = 0x07,
16 #[doc = "JVM opcode `iconst_5` (`0x08`)."] Iconst5 = 0x08,
17 #[doc = "JVM opcode `lconst_0` (`0x09`)."] Lconst0 = 0x09,
18 #[doc = "JVM opcode `lconst_1` (`0x0a`)."] Lconst1 = 0x0a,
19 #[doc = "JVM opcode `fconst_0` (`0x0b`)."] Fconst0 = 0x0b,
20 #[doc = "JVM opcode `fconst_1` (`0x0c`)."] Fconst1 = 0x0c,
21 #[doc = "JVM opcode `fconst_2` (`0x0d`)."] Fconst2 = 0x0d,
22 #[doc = "JVM opcode `dconst_0` (`0x0e`)."] Dconst0 = 0x0e,
23 #[doc = "JVM opcode `dconst_1` (`0x0f`)."] Dconst1 = 0x0f,
24 #[doc = "JVM opcode `bipush` (`0x10`)."] Bipush = 0x10,
25 #[doc = "JVM opcode `sipush` (`0x11`)."] Sipush = 0x11,
26 #[doc = "JVM opcode `ldc` (`0x12`)."] Ldc = 0x12,
27 #[doc = "JVM opcode `ldc_w` (`0x13`)."] LdcW = 0x13,
28 #[doc = "JVM opcode `ldc2_w` (`0x14`)."] Ldc2W = 0x14,
29 #[doc = "JVM opcode `iload` (`0x15`)."] Iload = 0x15,
30 #[doc = "JVM opcode `lload` (`0x16`)."] Lload = 0x16,
31 #[doc = "JVM opcode `fload` (`0x17`)."] Fload = 0x17,
32 #[doc = "JVM opcode `dload` (`0x18`)."] Dload = 0x18,
33 #[doc = "JVM opcode `aload` (`0x19`)."] Aload = 0x19,
34 #[doc = "JVM opcode `iload_0` (`0x1a`)."] Iload0 = 0x1a,
35 #[doc = "JVM opcode `iload_1` (`0x1b`)."] Iload1 = 0x1b,
36 #[doc = "JVM opcode `iload_2` (`0x1c`)."] Iload2 = 0x1c,
37 #[doc = "JVM opcode `iload_3` (`0x1d`)."] Iload3 = 0x1d,
38 #[doc = "JVM opcode `lload_0` (`0x1e`)."] Lload0 = 0x1e,
39 #[doc = "JVM opcode `lload_1` (`0x1f`)."] Lload1 = 0x1f,
40 #[doc = "JVM opcode `lload_2` (`0x20`)."] Lload2 = 0x20,
41 #[doc = "JVM opcode `lload_3` (`0x21`)."] Lload3 = 0x21,
42 #[doc = "JVM opcode `fload_0` (`0x22`)."] Fload0 = 0x22,
43 #[doc = "JVM opcode `fload_1` (`0x23`)."] Fload1 = 0x23,
44 #[doc = "JVM opcode `fload_2` (`0x24`)."] Fload2 = 0x24,
45 #[doc = "JVM opcode `fload_3` (`0x25`)."] Fload3 = 0x25,
46 #[doc = "JVM opcode `dload_0` (`0x26`)."] Dload0 = 0x26,
47 #[doc = "JVM opcode `dload_1` (`0x27`)."] Dload1 = 0x27,
48 #[doc = "JVM opcode `dload_2` (`0x28`)."] Dload2 = 0x28,
49 #[doc = "JVM opcode `dload_3` (`0x29`)."] Dload3 = 0x29,
50 #[doc = "JVM opcode `aload_0` (`0x2a`)."] Aload0 = 0x2a,
51 #[doc = "JVM opcode `aload_1` (`0x2b`)."] Aload1 = 0x2b,
52 #[doc = "JVM opcode `aload_2` (`0x2c`)."] Aload2 = 0x2c,
53 #[doc = "JVM opcode `aload_3` (`0x2d`)."] Aload3 = 0x2d,
54 #[doc = "JVM opcode `iaload` (`0x2e`)."] Iaload = 0x2e,
55 #[doc = "JVM opcode `laload` (`0x2f`)."] Laload = 0x2f,
56 #[doc = "JVM opcode `faload` (`0x30`)."] Faload = 0x30,
57 #[doc = "JVM opcode `daload` (`0x31`)."] Daload = 0x31,
58 #[doc = "JVM opcode `aaload` (`0x32`)."] Aaload = 0x32,
59 #[doc = "JVM opcode `baload` (`0x33`)."] Baload = 0x33,
60 #[doc = "JVM opcode `caload` (`0x34`)."] Caload = 0x34,
61 #[doc = "JVM opcode `saload` (`0x35`)."] Saload = 0x35,
62 #[doc = "JVM opcode `istore` (`0x36`)."] Istore = 0x36,
63 #[doc = "JVM opcode `lstore` (`0x37`)."] Lstore = 0x37,
64 #[doc = "JVM opcode `fstore` (`0x38`)."] Fstore = 0x38,
65 #[doc = "JVM opcode `dstore` (`0x39`)."] Dstore = 0x39,
66 #[doc = "JVM opcode `astore` (`0x3a`)."] Astore = 0x3a,
67 #[doc = "JVM opcode `istore_0` (`0x3b`)."] Istore0 = 0x3b,
68 #[doc = "JVM opcode `istore_1` (`0x3c`)."] Istore1 = 0x3c,
69 #[doc = "JVM opcode `istore_2` (`0x3d`)."] Istore2 = 0x3d,
70 #[doc = "JVM opcode `istore_3` (`0x3e`)."] Istore3 = 0x3e,
71 #[doc = "JVM opcode `lstore_0` (`0x3f`)."] Lstore0 = 0x3f,
72 #[doc = "JVM opcode `lstore_1` (`0x40`)."] Lstore1 = 0x40,
73 #[doc = "JVM opcode `lstore_2` (`0x41`)."] Lstore2 = 0x41,
74 #[doc = "JVM opcode `lstore_3` (`0x42`)."] Lstore3 = 0x42,
75 #[doc = "JVM opcode `fstore_0` (`0x43`)."] Fstore0 = 0x43,
76 #[doc = "JVM opcode `fstore_1` (`0x44`)."] Fstore1 = 0x44,
77 #[doc = "JVM opcode `fstore_2` (`0x45`)."] Fstore2 = 0x45,
78 #[doc = "JVM opcode `fstore_3` (`0x46`)."] Fstore3 = 0x46,
79 #[doc = "JVM opcode `dstore_0` (`0x47`)."] Dstore0 = 0x47,
80 #[doc = "JVM opcode `dstore_1` (`0x48`)."] Dstore1 = 0x48,
81 #[doc = "JVM opcode `dstore_2` (`0x49`)."] Dstore2 = 0x49,
82 #[doc = "JVM opcode `dstore_3` (`0x4a`)."] Dstore3 = 0x4a,
83 #[doc = "JVM opcode `astore_0` (`0x4b`)."] Astore0 = 0x4b,
84 #[doc = "JVM opcode `astore_1` (`0x4c`)."] Astore1 = 0x4c,
85 #[doc = "JVM opcode `astore_2` (`0x4d`)."] Astore2 = 0x4d,
86 #[doc = "JVM opcode `astore_3` (`0x4e`)."] Astore3 = 0x4e,
87 #[doc = "JVM opcode `iastore` (`0x4f`)."] Iastore = 0x4f,
88 #[doc = "JVM opcode `lastore` (`0x50`)."] Lastore = 0x50,
89 #[doc = "JVM opcode `fastore` (`0x51`)."] Fastore = 0x51,
90 #[doc = "JVM opcode `dastore` (`0x52`)."] Dastore = 0x52,
91 #[doc = "JVM opcode `aastore` (`0x53`)."] Aastore = 0x53,
92 #[doc = "JVM opcode `bastore` (`0x54`)."] Bastore = 0x54,
93 #[doc = "JVM opcode `castore` (`0x55`)."] Castore = 0x55,
94 #[doc = "JVM opcode `sastore` (`0x56`)."] Sastore = 0x56,
95 #[doc = "JVM opcode `pop` (`0x57`)."] Pop = 0x57,
96 #[doc = "JVM opcode `pop2` (`0x58`)."] Pop2 = 0x58,
97 #[doc = "JVM opcode `dup` (`0x59`)."] Dup = 0x59,
98 #[doc = "JVM opcode `dup_x1` (`0x5a`)."] DupX1 = 0x5a,
99 #[doc = "JVM opcode `dup_x2` (`0x5b`)."] DupX2 = 0x5b,
100 #[doc = "JVM opcode `dup2` (`0x5c`)."] Dup2 = 0x5c,
101 #[doc = "JVM opcode `dup2_x1` (`0x5d`)."] Dup2X1 = 0x5d,
102 #[doc = "JVM opcode `dup2_x2` (`0x5e`)."] Dup2X2 = 0x5e,
103 #[doc = "JVM opcode `swap` (`0x5f`)."] Swap = 0x5f,
104 #[doc = "JVM opcode `iadd` (`0x60`)."] Iadd = 0x60,
105 #[doc = "JVM opcode `ladd` (`0x61`)."] Ladd = 0x61,
106 #[doc = "JVM opcode `fadd` (`0x62`)."] Fadd = 0x62,
107 #[doc = "JVM opcode `dadd` (`0x63`)."] Dadd = 0x63,
108 #[doc = "JVM opcode `isub` (`0x64`)."] Isub = 0x64,
109 #[doc = "JVM opcode `lsub` (`0x65`)."] Lsub = 0x65,
110 #[doc = "JVM opcode `fsub` (`0x66`)."] Fsub = 0x66,
111 #[doc = "JVM opcode `dsub` (`0x67`)."] Dsub = 0x67,
112 #[doc = "JVM opcode `imul` (`0x68`)."] Imul = 0x68,
113 #[doc = "JVM opcode `lmul` (`0x69`)."] Lmul = 0x69,
114 #[doc = "JVM opcode `fmul` (`0x6a`)."] Fmul = 0x6a,
115 #[doc = "JVM opcode `dmul` (`0x6b`)."] Dmul = 0x6b,
116 #[doc = "JVM opcode `idiv` (`0x6c`)."] Idiv = 0x6c,
117 #[doc = "JVM opcode `ldiv` (`0x6d`)."] Ldiv = 0x6d,
118 #[doc = "JVM opcode `fdiv` (`0x6e`)."] Fdiv = 0x6e,
119 #[doc = "JVM opcode `ddiv` (`0x6f`)."] Ddiv = 0x6f,
120 #[doc = "JVM opcode `irem` (`0x70`)."] Irem = 0x70,
121 #[doc = "JVM opcode `lrem` (`0x71`)."] Lrem = 0x71,
122 #[doc = "JVM opcode `frem` (`0x72`)."] Frem = 0x72,
123 #[doc = "JVM opcode `drem` (`0x73`)."] Drem = 0x73,
124 #[doc = "JVM opcode `ineg` (`0x74`)."] Ineg = 0x74,
125 #[doc = "JVM opcode `lneg` (`0x75`)."] Lneg = 0x75,
126 #[doc = "JVM opcode `fneg` (`0x76`)."] Fneg = 0x76,
127 #[doc = "JVM opcode `dneg` (`0x77`)."] Dneg = 0x77,
128 #[doc = "JVM opcode `ishl` (`0x78`)."] Ishl = 0x78,
129 #[doc = "JVM opcode `lshl` (`0x79`)."] Lshl = 0x79,
130 #[doc = "JVM opcode `ishr` (`0x7a`)."] Ishr = 0x7a,
131 #[doc = "JVM opcode `lshr` (`0x7b`)."] Lshr = 0x7b,
132 #[doc = "JVM opcode `iushr` (`0x7c`)."] Iushr = 0x7c,
133 #[doc = "JVM opcode `lushr` (`0x7d`)."] Lushr = 0x7d,
134 #[doc = "JVM opcode `iand` (`0x7e`)."] Iand = 0x7e,
135 #[doc = "JVM opcode `land` (`0x7f`)."] Land = 0x7f,
136 #[doc = "JVM opcode `ior` (`0x80`)."] Ior = 0x80,
137 #[doc = "JVM opcode `lor` (`0x81`)."] Lor = 0x81,
138 #[doc = "JVM opcode `ixor` (`0x82`)."] Ixor = 0x82,
139 #[doc = "JVM opcode `lxor` (`0x83`)."] Lxor = 0x83,
140 #[doc = "JVM opcode `iinc` (`0x84`)."] Iinc = 0x84,
141 #[doc = "JVM opcode `i2l` (`0x85`)."] I2l = 0x85,
142 #[doc = "JVM opcode `i2f` (`0x86`)."] I2f = 0x86,
143 #[doc = "JVM opcode `i2d` (`0x87`)."] I2d = 0x87,
144 #[doc = "JVM opcode `l2i` (`0x88`)."] L2i = 0x88,
145 #[doc = "JVM opcode `l2f` (`0x89`)."] L2f = 0x89,
146 #[doc = "JVM opcode `l2d` (`0x8a`)."] L2d = 0x8a,
147 #[doc = "JVM opcode `f2i` (`0x8b`)."] F2i = 0x8b,
148 #[doc = "JVM opcode `f2l` (`0x8c`)."] F2l = 0x8c,
149 #[doc = "JVM opcode `f2d` (`0x8d`)."] F2d = 0x8d,
150 #[doc = "JVM opcode `d2i` (`0x8e`)."] D2i = 0x8e,
151 #[doc = "JVM opcode `d2l` (`0x8f`)."] D2l = 0x8f,
152 #[doc = "JVM opcode `d2f` (`0x90`)."] D2f = 0x90,
153 #[doc = "JVM opcode `i2b` (`0x91`)."] I2b = 0x91,
154 #[doc = "JVM opcode `i2c` (`0x92`)."] I2c = 0x92,
155 #[doc = "JVM opcode `i2s` (`0x93`)."] I2s = 0x93,
156 #[doc = "JVM opcode `lcmp` (`0x94`)."] Lcmp = 0x94,
157 #[doc = "JVM opcode `fcmpl` (`0x95`)."] Fcmpl = 0x95,
158 #[doc = "JVM opcode `fcmpg` (`0x96`)."] Fcmpg = 0x96,
159 #[doc = "JVM opcode `dcmpl` (`0x97`)."] Dcmpl = 0x97,
160 #[doc = "JVM opcode `dcmpg` (`0x98`)."] Dcmpg = 0x98,
161 #[doc = "JVM opcode `ifeq` (`0x99`)."] Ifeq = 0x99,
162 #[doc = "JVM opcode `ifne` (`0x9a`)."] Ifne = 0x9a,
163 #[doc = "JVM opcode `iflt` (`0x9b`)."] Iflt = 0x9b,
164 #[doc = "JVM opcode `ifge` (`0x9c`)."] Ifge = 0x9c,
165 #[doc = "JVM opcode `ifgt` (`0x9d`)."] Ifgt = 0x9d,
166 #[doc = "JVM opcode `ifle` (`0x9e`)."] Ifle = 0x9e,
167 #[doc = "JVM opcode `if_icmpeq` (`0x9f`)."] IfIcmpeq = 0x9f,
168 #[doc = "JVM opcode `if_icmpne` (`0xa0`)."] IfIcmpne = 0xa0,
169 #[doc = "JVM opcode `if_icmplt` (`0xa1`)."] IfIcmplt = 0xa1,
170 #[doc = "JVM opcode `if_icmpge` (`0xa2`)."] IfIcmpge = 0xa2,
171 #[doc = "JVM opcode `if_icmpgt` (`0xa3`)."] IfIcmpgt = 0xa3,
172 #[doc = "JVM opcode `if_icmple` (`0xa4`)."] IfIcmple = 0xa4,
173 #[doc = "JVM opcode `if_acmpeq` (`0xa5`)."] IfAcmpeq = 0xa5,
174 #[doc = "JVM opcode `if_acmpne` (`0xa6`)."] IfAcmpne = 0xa6,
175 #[doc = "JVM opcode `goto` (`0xa7`)."] Goto = 0xa7,
176 #[doc = "JVM opcode `jsr` (`0xa8`)."] Jsr = 0xa8,
177 #[doc = "JVM opcode `ret` (`0xa9`)."] Ret = 0xa9,
178 #[doc = "JVM opcode `tableswitch` (`0xaa`)."] Tableswitch = 0xaa,
179 #[doc = "JVM opcode `lookupswitch` (`0xab`)."] Lookupswitch = 0xab,
180 #[doc = "JVM opcode `ireturn` (`0xac`)."] Ireturn = 0xac,
181 #[doc = "JVM opcode `lreturn` (`0xad`)."] Lreturn = 0xad,
182 #[doc = "JVM opcode `freturn` (`0xae`)."] Freturn = 0xae,
183 #[doc = "JVM opcode `dreturn` (`0xaf`)."] Dreturn = 0xaf,
184 #[doc = "JVM opcode `areturn` (`0xb0`)."] Areturn = 0xb0,
185 #[doc = "JVM opcode `return` (`0xb1`)."] Return = 0xb1,
186 #[doc = "JVM opcode `getstatic` (`0xb2`)."] Getstatic = 0xb2,
187 #[doc = "JVM opcode `putstatic` (`0xb3`)."] Putstatic = 0xb3,
188 #[doc = "JVM opcode `getfield` (`0xb4`)."] Getfield = 0xb4,
189 #[doc = "JVM opcode `putfield` (`0xb5`)."] Putfield = 0xb5,
190 #[doc = "JVM opcode `invokevirtual` (`0xb6`)."] Invokevirtual = 0xb6,
191 #[doc = "JVM opcode `invokespecial` (`0xb7`)."] Invokespecial = 0xb7,
192 #[doc = "JVM opcode `invokestatic` (`0xb8`)."] Invokestatic = 0xb8,
193 #[doc = "JVM opcode `invokeinterface` (`0xb9`)."] Invokeinterface = 0xb9,
194 #[doc = "JVM opcode `invokedynamic` (`0xba`)."] Invokedynamic = 0xba,
195 #[doc = "JVM opcode `new` (`0xbb`)."] New = 0xbb,
196 #[doc = "JVM opcode `newarray` (`0xbc`)."] Newarray = 0xbc,
197 #[doc = "JVM opcode `anewarray` (`0xbd`)."] Anewarray = 0xbd,
198 #[doc = "JVM opcode `arraylength` (`0xbe`)."] Arraylength = 0xbe,
199 #[doc = "JVM opcode `athrow` (`0xbf`)."] Athrow = 0xbf,
200 #[doc = "JVM opcode `checkcast` (`0xc0`)."] Checkcast = 0xc0,
201 #[doc = "JVM opcode `instanceof` (`0xc1`)."] Instanceof = 0xc1,
202 #[doc = "JVM opcode `monitorenter` (`0xc2`)."] Monitorenter = 0xc2,
203 #[doc = "JVM opcode `monitorexit` (`0xc3`)."] Monitorexit = 0xc3,
204 #[doc = "JVM opcode `wide` (`0xc4`)."] Wide = 0xc4,
205 #[doc = "JVM opcode `multianewarray` (`0xc5`)."] Multianewarray = 0xc5,
206 #[doc = "JVM opcode `ifnull` (`0xc6`)."] Ifnull = 0xc6,
207 #[doc = "JVM opcode `ifnonnull` (`0xc7`)."] Ifnonnull = 0xc7,
208 #[doc = "JVM opcode `goto_w` (`0xc8`)."] GotoW = 0xc8,
209 #[doc = "JVM opcode `jsr_w` (`0xc9`)."] JsrW = 0xc9,
210 #[doc = "JVM opcode `breakpoint` (`0xca`)."] Breakpoint = 0xca,
211 #[doc = "JVM opcode `reserved_cb` (`0xcb`)."] ReservedCB = 0xcb,
212 #[doc = "JVM opcode `reserved_cc` (`0xcc`)."] ReservedCC = 0xcc,
213 #[doc = "JVM opcode `reserved_cd` (`0xcd`)."] ReservedCD = 0xcd,
214 #[doc = "JVM opcode `reserved_ce` (`0xce`)."] ReservedCE = 0xce,
215 #[doc = "JVM opcode `reserved_cf` (`0xcf`)."] ReservedCF = 0xcf,
216 #[doc = "JVM opcode `reserved_d0` (`0xd0`)."] ReservedD0 = 0xd0,
217 #[doc = "JVM opcode `reserved_d1` (`0xd1`)."] ReservedD1 = 0xd1,
218 #[doc = "JVM opcode `reserved_d2` (`0xd2`)."] ReservedD2 = 0xd2,
219 #[doc = "JVM opcode `reserved_d3` (`0xd3`)."] ReservedD3 = 0xd3,
220 #[doc = "JVM opcode `reserved_d4` (`0xd4`)."] ReservedD4 = 0xd4,
221 #[doc = "JVM opcode `reserved_d5` (`0xd5`)."] ReservedD5 = 0xd5,
222 #[doc = "JVM opcode `reserved_d6` (`0xd6`)."] ReservedD6 = 0xd6,
223 #[doc = "JVM opcode `reserved_d7` (`0xd7`)."] ReservedD7 = 0xd7,
224 #[doc = "JVM opcode `reserved_d8` (`0xd8`)."] ReservedD8 = 0xd8,
225 #[doc = "JVM opcode `reserved_d9` (`0xd9`)."] ReservedD9 = 0xd9,
226 #[doc = "JVM opcode `reserved_da` (`0xda`)."] ReservedDA = 0xda,
227 #[doc = "JVM opcode `reserved_db` (`0xdb`)."] ReservedDB = 0xdb,
228 #[doc = "JVM opcode `reserved_dc` (`0xdc`)."] ReservedDC = 0xdc,
229 #[doc = "JVM opcode `reserved_dd` (`0xdd`)."] ReservedDD = 0xdd,
230 #[doc = "JVM opcode `reserved_de` (`0xde`)."] ReservedDE = 0xde,
231 #[doc = "JVM opcode `reserved_df` (`0xdf`)."] ReservedDF = 0xdf,
232 #[doc = "JVM opcode `reserved_e0` (`0xe0`)."] ReservedE0 = 0xe0,
233 #[doc = "JVM opcode `reserved_e1` (`0xe1`)."] ReservedE1 = 0xe1,
234 #[doc = "JVM opcode `reserved_e2` (`0xe2`)."] ReservedE2 = 0xe2,
235 #[doc = "JVM opcode `reserved_e3` (`0xe3`)."] ReservedE3 = 0xe3,
236 #[doc = "JVM opcode `reserved_e4` (`0xe4`)."] ReservedE4 = 0xe4,
237 #[doc = "JVM opcode `reserved_e5` (`0xe5`)."] ReservedE5 = 0xe5,
238 #[doc = "JVM opcode `reserved_e6` (`0xe6`)."] ReservedE6 = 0xe6,
239 #[doc = "JVM opcode `reserved_e7` (`0xe7`)."] ReservedE7 = 0xe7,
240 #[doc = "JVM opcode `reserved_e8` (`0xe8`)."] ReservedE8 = 0xe8,
241 #[doc = "JVM opcode `reserved_e9` (`0xe9`)."] ReservedE9 = 0xe9,
242 #[doc = "JVM opcode `reserved_ea` (`0xea`)."] ReservedEA = 0xea,
243 #[doc = "JVM opcode `reserved_eb` (`0xeb`)."] ReservedEB = 0xeb,
244 #[doc = "JVM opcode `reserved_ec` (`0xec`)."] ReservedEC = 0xec,
245 #[doc = "JVM opcode `reserved_ed` (`0xed`)."] ReservedED = 0xed,
246 #[doc = "JVM opcode `reserved_ee` (`0xee`)."] ReservedEE = 0xee,
247 #[doc = "JVM opcode `reserved_ef` (`0xef`)."] ReservedEF = 0xef,
248 #[doc = "JVM opcode `reserved_f0` (`0xf0`)."] ReservedF0 = 0xf0,
249 #[doc = "JVM opcode `reserved_f1` (`0xf1`)."] ReservedF1 = 0xf1,
250 #[doc = "JVM opcode `reserved_f2` (`0xf2`)."] ReservedF2 = 0xf2,
251 #[doc = "JVM opcode `reserved_f3` (`0xf3`)."] ReservedF3 = 0xf3,
252 #[doc = "JVM opcode `reserved_f4` (`0xf4`)."] ReservedF4 = 0xf4,
253 #[doc = "JVM opcode `reserved_f5` (`0xf5`)."] ReservedF5 = 0xf5,
254 #[doc = "JVM opcode `reserved_f6` (`0xf6`)."] ReservedF6 = 0xf6,
255 #[doc = "JVM opcode `reserved_f7` (`0xf7`)."] ReservedF7 = 0xf7,
256 #[doc = "JVM opcode `reserved_f8` (`0xf8`)."] ReservedF8 = 0xf8,
257 #[doc = "JVM opcode `reserved_f9` (`0xf9`)."] ReservedF9 = 0xf9,
258 #[doc = "JVM opcode `reserved_fa` (`0xfa`)."] ReservedFA = 0xfa,
259 #[doc = "JVM opcode `reserved_fb` (`0xfb`)."] ReservedFB = 0xfb,
260 #[doc = "JVM opcode `reserved_fc` (`0xfc`)."] ReservedFC = 0xfc,
261 #[doc = "JVM opcode `reserved_fd` (`0xfd`)."] ReservedFD = 0xfd,
262 #[doc = "JVM opcode `impdep1` (`0xfe`)."] Impdep1 = 0xfe,
263 #[doc = "JVM opcode `impdep2` (`0xff`)."] Impdep2 = 0xff,
264}
265
266#[derive(Clone, Copy, Debug, Eq, PartialEq)]
268pub struct OpcodeMetadata {
269 pub opcode: Opcode,
271 pub mnemonic: &'static str,
273 pub operands: &'static str,
275 pub width: &'static str,
277 pub control: &'static str,
279 pub constant_pool: &'static str,
281 pub since: &'static str,
283 pub until: &'static str,
285}
286
287#[rustfmt::skip]
289pub static OPCODES: [OpcodeMetadata; 256] = [
290 OpcodeMetadata { opcode: Opcode::Nop, mnemonic: "nop", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
291 OpcodeMetadata { opcode: Opcode::AconstNull, mnemonic: "aconst_null", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
292 OpcodeMetadata { opcode: Opcode::IconstM1, mnemonic: "iconst_m1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
293 OpcodeMetadata { opcode: Opcode::Iconst0, mnemonic: "iconst_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
294 OpcodeMetadata { opcode: Opcode::Iconst1, mnemonic: "iconst_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
295 OpcodeMetadata { opcode: Opcode::Iconst2, mnemonic: "iconst_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
296 OpcodeMetadata { opcode: Opcode::Iconst3, mnemonic: "iconst_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
297 OpcodeMetadata { opcode: Opcode::Iconst4, mnemonic: "iconst_4", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
298 OpcodeMetadata { opcode: Opcode::Iconst5, mnemonic: "iconst_5", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
299 OpcodeMetadata { opcode: Opcode::Lconst0, mnemonic: "lconst_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
300 OpcodeMetadata { opcode: Opcode::Lconst1, mnemonic: "lconst_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
301 OpcodeMetadata { opcode: Opcode::Fconst0, mnemonic: "fconst_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
302 OpcodeMetadata { opcode: Opcode::Fconst1, mnemonic: "fconst_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
303 OpcodeMetadata { opcode: Opcode::Fconst2, mnemonic: "fconst_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
304 OpcodeMetadata { opcode: Opcode::Dconst0, mnemonic: "dconst_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
305 OpcodeMetadata { opcode: Opcode::Dconst1, mnemonic: "dconst_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
306 OpcodeMetadata { opcode: Opcode::Bipush, mnemonic: "bipush", operands: "value:s1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
307 OpcodeMetadata { opcode: Opcode::Sipush, mnemonic: "sipush", operands: "value:s2", width: "3", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
308 OpcodeMetadata { opcode: Opcode::Ldc, mnemonic: "ldc", operands: "constant_pool:u1", width: "2", control: "fallthrough", constant_pool: "loadable-category-1", since: "45.3", until: "unbounded" },
309 OpcodeMetadata { opcode: Opcode::LdcW, mnemonic: "ldc_w", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "loadable-category-1", since: "45.3", until: "unbounded" },
310 OpcodeMetadata { opcode: Opcode::Ldc2W, mnemonic: "ldc2_w", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "loadable-category-2", since: "45.3", until: "unbounded" },
311 OpcodeMetadata { opcode: Opcode::Iload, mnemonic: "iload", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
312 OpcodeMetadata { opcode: Opcode::Lload, mnemonic: "lload", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
313 OpcodeMetadata { opcode: Opcode::Fload, mnemonic: "fload", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
314 OpcodeMetadata { opcode: Opcode::Dload, mnemonic: "dload", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
315 OpcodeMetadata { opcode: Opcode::Aload, mnemonic: "aload", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
316 OpcodeMetadata { opcode: Opcode::Iload0, mnemonic: "iload_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
317 OpcodeMetadata { opcode: Opcode::Iload1, mnemonic: "iload_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
318 OpcodeMetadata { opcode: Opcode::Iload2, mnemonic: "iload_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
319 OpcodeMetadata { opcode: Opcode::Iload3, mnemonic: "iload_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
320 OpcodeMetadata { opcode: Opcode::Lload0, mnemonic: "lload_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
321 OpcodeMetadata { opcode: Opcode::Lload1, mnemonic: "lload_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
322 OpcodeMetadata { opcode: Opcode::Lload2, mnemonic: "lload_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
323 OpcodeMetadata { opcode: Opcode::Lload3, mnemonic: "lload_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
324 OpcodeMetadata { opcode: Opcode::Fload0, mnemonic: "fload_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
325 OpcodeMetadata { opcode: Opcode::Fload1, mnemonic: "fload_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
326 OpcodeMetadata { opcode: Opcode::Fload2, mnemonic: "fload_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
327 OpcodeMetadata { opcode: Opcode::Fload3, mnemonic: "fload_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
328 OpcodeMetadata { opcode: Opcode::Dload0, mnemonic: "dload_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
329 OpcodeMetadata { opcode: Opcode::Dload1, mnemonic: "dload_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
330 OpcodeMetadata { opcode: Opcode::Dload2, mnemonic: "dload_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
331 OpcodeMetadata { opcode: Opcode::Dload3, mnemonic: "dload_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
332 OpcodeMetadata { opcode: Opcode::Aload0, mnemonic: "aload_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
333 OpcodeMetadata { opcode: Opcode::Aload1, mnemonic: "aload_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
334 OpcodeMetadata { opcode: Opcode::Aload2, mnemonic: "aload_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
335 OpcodeMetadata { opcode: Opcode::Aload3, mnemonic: "aload_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
336 OpcodeMetadata { opcode: Opcode::Iaload, mnemonic: "iaload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
337 OpcodeMetadata { opcode: Opcode::Laload, mnemonic: "laload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
338 OpcodeMetadata { opcode: Opcode::Faload, mnemonic: "faload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
339 OpcodeMetadata { opcode: Opcode::Daload, mnemonic: "daload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
340 OpcodeMetadata { opcode: Opcode::Aaload, mnemonic: "aaload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
341 OpcodeMetadata { opcode: Opcode::Baload, mnemonic: "baload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
342 OpcodeMetadata { opcode: Opcode::Caload, mnemonic: "caload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
343 OpcodeMetadata { opcode: Opcode::Saload, mnemonic: "saload", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
344 OpcodeMetadata { opcode: Opcode::Istore, mnemonic: "istore", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
345 OpcodeMetadata { opcode: Opcode::Lstore, mnemonic: "lstore", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
346 OpcodeMetadata { opcode: Opcode::Fstore, mnemonic: "fstore", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
347 OpcodeMetadata { opcode: Opcode::Dstore, mnemonic: "dstore", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
348 OpcodeMetadata { opcode: Opcode::Astore, mnemonic: "astore", operands: "local:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
349 OpcodeMetadata { opcode: Opcode::Istore0, mnemonic: "istore_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
350 OpcodeMetadata { opcode: Opcode::Istore1, mnemonic: "istore_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
351 OpcodeMetadata { opcode: Opcode::Istore2, mnemonic: "istore_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
352 OpcodeMetadata { opcode: Opcode::Istore3, mnemonic: "istore_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
353 OpcodeMetadata { opcode: Opcode::Lstore0, mnemonic: "lstore_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
354 OpcodeMetadata { opcode: Opcode::Lstore1, mnemonic: "lstore_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
355 OpcodeMetadata { opcode: Opcode::Lstore2, mnemonic: "lstore_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
356 OpcodeMetadata { opcode: Opcode::Lstore3, mnemonic: "lstore_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
357 OpcodeMetadata { opcode: Opcode::Fstore0, mnemonic: "fstore_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
358 OpcodeMetadata { opcode: Opcode::Fstore1, mnemonic: "fstore_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
359 OpcodeMetadata { opcode: Opcode::Fstore2, mnemonic: "fstore_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
360 OpcodeMetadata { opcode: Opcode::Fstore3, mnemonic: "fstore_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
361 OpcodeMetadata { opcode: Opcode::Dstore0, mnemonic: "dstore_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
362 OpcodeMetadata { opcode: Opcode::Dstore1, mnemonic: "dstore_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
363 OpcodeMetadata { opcode: Opcode::Dstore2, mnemonic: "dstore_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
364 OpcodeMetadata { opcode: Opcode::Dstore3, mnemonic: "dstore_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
365 OpcodeMetadata { opcode: Opcode::Astore0, mnemonic: "astore_0", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
366 OpcodeMetadata { opcode: Opcode::Astore1, mnemonic: "astore_1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
367 OpcodeMetadata { opcode: Opcode::Astore2, mnemonic: "astore_2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
368 OpcodeMetadata { opcode: Opcode::Astore3, mnemonic: "astore_3", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
369 OpcodeMetadata { opcode: Opcode::Iastore, mnemonic: "iastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
370 OpcodeMetadata { opcode: Opcode::Lastore, mnemonic: "lastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
371 OpcodeMetadata { opcode: Opcode::Fastore, mnemonic: "fastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
372 OpcodeMetadata { opcode: Opcode::Dastore, mnemonic: "dastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
373 OpcodeMetadata { opcode: Opcode::Aastore, mnemonic: "aastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
374 OpcodeMetadata { opcode: Opcode::Bastore, mnemonic: "bastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
375 OpcodeMetadata { opcode: Opcode::Castore, mnemonic: "castore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
376 OpcodeMetadata { opcode: Opcode::Sastore, mnemonic: "sastore", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
377 OpcodeMetadata { opcode: Opcode::Pop, mnemonic: "pop", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
378 OpcodeMetadata { opcode: Opcode::Pop2, mnemonic: "pop2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
379 OpcodeMetadata { opcode: Opcode::Dup, mnemonic: "dup", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
380 OpcodeMetadata { opcode: Opcode::DupX1, mnemonic: "dup_x1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
381 OpcodeMetadata { opcode: Opcode::DupX2, mnemonic: "dup_x2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
382 OpcodeMetadata { opcode: Opcode::Dup2, mnemonic: "dup2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
383 OpcodeMetadata { opcode: Opcode::Dup2X1, mnemonic: "dup2_x1", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
384 OpcodeMetadata { opcode: Opcode::Dup2X2, mnemonic: "dup2_x2", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
385 OpcodeMetadata { opcode: Opcode::Swap, mnemonic: "swap", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
386 OpcodeMetadata { opcode: Opcode::Iadd, mnemonic: "iadd", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
387 OpcodeMetadata { opcode: Opcode::Ladd, mnemonic: "ladd", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
388 OpcodeMetadata { opcode: Opcode::Fadd, mnemonic: "fadd", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
389 OpcodeMetadata { opcode: Opcode::Dadd, mnemonic: "dadd", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
390 OpcodeMetadata { opcode: Opcode::Isub, mnemonic: "isub", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
391 OpcodeMetadata { opcode: Opcode::Lsub, mnemonic: "lsub", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
392 OpcodeMetadata { opcode: Opcode::Fsub, mnemonic: "fsub", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
393 OpcodeMetadata { opcode: Opcode::Dsub, mnemonic: "dsub", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
394 OpcodeMetadata { opcode: Opcode::Imul, mnemonic: "imul", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
395 OpcodeMetadata { opcode: Opcode::Lmul, mnemonic: "lmul", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
396 OpcodeMetadata { opcode: Opcode::Fmul, mnemonic: "fmul", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
397 OpcodeMetadata { opcode: Opcode::Dmul, mnemonic: "dmul", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
398 OpcodeMetadata { opcode: Opcode::Idiv, mnemonic: "idiv", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
399 OpcodeMetadata { opcode: Opcode::Ldiv, mnemonic: "ldiv", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
400 OpcodeMetadata { opcode: Opcode::Fdiv, mnemonic: "fdiv", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
401 OpcodeMetadata { opcode: Opcode::Ddiv, mnemonic: "ddiv", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
402 OpcodeMetadata { opcode: Opcode::Irem, mnemonic: "irem", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
403 OpcodeMetadata { opcode: Opcode::Lrem, mnemonic: "lrem", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
404 OpcodeMetadata { opcode: Opcode::Frem, mnemonic: "frem", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
405 OpcodeMetadata { opcode: Opcode::Drem, mnemonic: "drem", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
406 OpcodeMetadata { opcode: Opcode::Ineg, mnemonic: "ineg", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
407 OpcodeMetadata { opcode: Opcode::Lneg, mnemonic: "lneg", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
408 OpcodeMetadata { opcode: Opcode::Fneg, mnemonic: "fneg", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
409 OpcodeMetadata { opcode: Opcode::Dneg, mnemonic: "dneg", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
410 OpcodeMetadata { opcode: Opcode::Ishl, mnemonic: "ishl", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
411 OpcodeMetadata { opcode: Opcode::Lshl, mnemonic: "lshl", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
412 OpcodeMetadata { opcode: Opcode::Ishr, mnemonic: "ishr", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
413 OpcodeMetadata { opcode: Opcode::Lshr, mnemonic: "lshr", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
414 OpcodeMetadata { opcode: Opcode::Iushr, mnemonic: "iushr", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
415 OpcodeMetadata { opcode: Opcode::Lushr, mnemonic: "lushr", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
416 OpcodeMetadata { opcode: Opcode::Iand, mnemonic: "iand", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
417 OpcodeMetadata { opcode: Opcode::Land, mnemonic: "land", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
418 OpcodeMetadata { opcode: Opcode::Ior, mnemonic: "ior", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
419 OpcodeMetadata { opcode: Opcode::Lor, mnemonic: "lor", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
420 OpcodeMetadata { opcode: Opcode::Ixor, mnemonic: "ixor", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
421 OpcodeMetadata { opcode: Opcode::Lxor, mnemonic: "lxor", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
422 OpcodeMetadata { opcode: Opcode::Iinc, mnemonic: "iinc", operands: "local:u1,increment:s1", width: "3", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
423 OpcodeMetadata { opcode: Opcode::I2l, mnemonic: "i2l", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
424 OpcodeMetadata { opcode: Opcode::I2f, mnemonic: "i2f", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
425 OpcodeMetadata { opcode: Opcode::I2d, mnemonic: "i2d", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
426 OpcodeMetadata { opcode: Opcode::L2i, mnemonic: "l2i", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
427 OpcodeMetadata { opcode: Opcode::L2f, mnemonic: "l2f", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
428 OpcodeMetadata { opcode: Opcode::L2d, mnemonic: "l2d", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
429 OpcodeMetadata { opcode: Opcode::F2i, mnemonic: "f2i", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
430 OpcodeMetadata { opcode: Opcode::F2l, mnemonic: "f2l", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
431 OpcodeMetadata { opcode: Opcode::F2d, mnemonic: "f2d", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
432 OpcodeMetadata { opcode: Opcode::D2i, mnemonic: "d2i", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
433 OpcodeMetadata { opcode: Opcode::D2l, mnemonic: "d2l", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
434 OpcodeMetadata { opcode: Opcode::D2f, mnemonic: "d2f", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
435 OpcodeMetadata { opcode: Opcode::I2b, mnemonic: "i2b", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
436 OpcodeMetadata { opcode: Opcode::I2c, mnemonic: "i2c", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
437 OpcodeMetadata { opcode: Opcode::I2s, mnemonic: "i2s", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
438 OpcodeMetadata { opcode: Opcode::Lcmp, mnemonic: "lcmp", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
439 OpcodeMetadata { opcode: Opcode::Fcmpl, mnemonic: "fcmpl", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
440 OpcodeMetadata { opcode: Opcode::Fcmpg, mnemonic: "fcmpg", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
441 OpcodeMetadata { opcode: Opcode::Dcmpl, mnemonic: "dcmpl", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
442 OpcodeMetadata { opcode: Opcode::Dcmpg, mnemonic: "dcmpg", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
443 OpcodeMetadata { opcode: Opcode::Ifeq, mnemonic: "ifeq", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
444 OpcodeMetadata { opcode: Opcode::Ifne, mnemonic: "ifne", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
445 OpcodeMetadata { opcode: Opcode::Iflt, mnemonic: "iflt", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
446 OpcodeMetadata { opcode: Opcode::Ifge, mnemonic: "ifge", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
447 OpcodeMetadata { opcode: Opcode::Ifgt, mnemonic: "ifgt", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
448 OpcodeMetadata { opcode: Opcode::Ifle, mnemonic: "ifle", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
449 OpcodeMetadata { opcode: Opcode::IfIcmpeq, mnemonic: "if_icmpeq", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
450 OpcodeMetadata { opcode: Opcode::IfIcmpne, mnemonic: "if_icmpne", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
451 OpcodeMetadata { opcode: Opcode::IfIcmplt, mnemonic: "if_icmplt", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
452 OpcodeMetadata { opcode: Opcode::IfIcmpge, mnemonic: "if_icmpge", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
453 OpcodeMetadata { opcode: Opcode::IfIcmpgt, mnemonic: "if_icmpgt", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
454 OpcodeMetadata { opcode: Opcode::IfIcmple, mnemonic: "if_icmple", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
455 OpcodeMetadata { opcode: Opcode::IfAcmpeq, mnemonic: "if_acmpeq", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
456 OpcodeMetadata { opcode: Opcode::IfAcmpne, mnemonic: "if_acmpne", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
457 OpcodeMetadata { opcode: Opcode::Goto, mnemonic: "goto", operands: "branch:s2", width: "3", control: "unconditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
458 OpcodeMetadata { opcode: Opcode::Jsr, mnemonic: "jsr", operands: "branch:s2", width: "3", control: "subroutine-call", constant_pool: "none", since: "45.3", until: "unbounded" },
459 OpcodeMetadata { opcode: Opcode::Ret, mnemonic: "ret", operands: "local:u1", width: "2", control: "subroutine-return", constant_pool: "none", since: "45.3", until: "unbounded" },
460 OpcodeMetadata { opcode: Opcode::Tableswitch, mnemonic: "tableswitch", operands: "padding:align4,default:s4,low:s4,high:s4,offsets:s4[]", width: "variable", control: "switch", constant_pool: "none", since: "45.3", until: "unbounded" },
461 OpcodeMetadata { opcode: Opcode::Lookupswitch, mnemonic: "lookupswitch", operands: "padding:align4,default:s4,npairs:s4,pairs:(s4,s4)[]", width: "variable", control: "switch", constant_pool: "none", since: "45.3", until: "unbounded" },
462 OpcodeMetadata { opcode: Opcode::Ireturn, mnemonic: "ireturn", operands: "none", width: "1", control: "return", constant_pool: "none", since: "45.3", until: "unbounded" },
463 OpcodeMetadata { opcode: Opcode::Lreturn, mnemonic: "lreturn", operands: "none", width: "1", control: "return", constant_pool: "none", since: "45.3", until: "unbounded" },
464 OpcodeMetadata { opcode: Opcode::Freturn, mnemonic: "freturn", operands: "none", width: "1", control: "return", constant_pool: "none", since: "45.3", until: "unbounded" },
465 OpcodeMetadata { opcode: Opcode::Dreturn, mnemonic: "dreturn", operands: "none", width: "1", control: "return", constant_pool: "none", since: "45.3", until: "unbounded" },
466 OpcodeMetadata { opcode: Opcode::Areturn, mnemonic: "areturn", operands: "none", width: "1", control: "return", constant_pool: "none", since: "45.3", until: "unbounded" },
467 OpcodeMetadata { opcode: Opcode::Return, mnemonic: "return", operands: "none", width: "1", control: "return", constant_pool: "none", since: "45.3", until: "unbounded" },
468 OpcodeMetadata { opcode: Opcode::Getstatic, mnemonic: "getstatic", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Fieldref", since: "45.3", until: "unbounded" },
469 OpcodeMetadata { opcode: Opcode::Putstatic, mnemonic: "putstatic", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Fieldref", since: "45.3", until: "unbounded" },
470 OpcodeMetadata { opcode: Opcode::Getfield, mnemonic: "getfield", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Fieldref", since: "45.3", until: "unbounded" },
471 OpcodeMetadata { opcode: Opcode::Putfield, mnemonic: "putfield", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Fieldref", since: "45.3", until: "unbounded" },
472 OpcodeMetadata { opcode: Opcode::Invokevirtual, mnemonic: "invokevirtual", operands: "constant_pool:u2", width: "3", control: "invoke", constant_pool: "Methodref", since: "45.3", until: "unbounded" },
473 OpcodeMetadata { opcode: Opcode::Invokespecial, mnemonic: "invokespecial", operands: "constant_pool:u2", width: "3", control: "invoke", constant_pool: "Methodref|InterfaceMethodref", since: "45.3", until: "unbounded" },
474 OpcodeMetadata { opcode: Opcode::Invokestatic, mnemonic: "invokestatic", operands: "constant_pool:u2", width: "3", control: "invoke", constant_pool: "Methodref|InterfaceMethodref", since: "45.3", until: "unbounded" },
475 OpcodeMetadata { opcode: Opcode::Invokeinterface, mnemonic: "invokeinterface", operands: "constant_pool:u2,count:u1,zero:u1", width: "5", control: "invoke", constant_pool: "InterfaceMethodref", since: "45.3", until: "unbounded" },
476 OpcodeMetadata { opcode: Opcode::Invokedynamic, mnemonic: "invokedynamic", operands: "constant_pool:u2,zero:u2", width: "5", control: "invoke", constant_pool: "InvokeDynamic", since: "51.0", until: "unbounded" },
477 OpcodeMetadata { opcode: Opcode::New, mnemonic: "new", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Class", since: "45.3", until: "unbounded" },
478 OpcodeMetadata { opcode: Opcode::Newarray, mnemonic: "newarray", operands: "atype:u1", width: "2", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
479 OpcodeMetadata { opcode: Opcode::Anewarray, mnemonic: "anewarray", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Class", since: "45.3", until: "unbounded" },
480 OpcodeMetadata { opcode: Opcode::Arraylength, mnemonic: "arraylength", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
481 OpcodeMetadata { opcode: Opcode::Athrow, mnemonic: "athrow", operands: "none", width: "1", control: "throw", constant_pool: "none", since: "45.3", until: "unbounded" },
482 OpcodeMetadata { opcode: Opcode::Checkcast, mnemonic: "checkcast", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Class", since: "45.3", until: "unbounded" },
483 OpcodeMetadata { opcode: Opcode::Instanceof, mnemonic: "instanceof", operands: "constant_pool:u2", width: "3", control: "fallthrough", constant_pool: "Class", since: "45.3", until: "unbounded" },
484 OpcodeMetadata { opcode: Opcode::Monitorenter, mnemonic: "monitorenter", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
485 OpcodeMetadata { opcode: Opcode::Monitorexit, mnemonic: "monitorexit", operands: "none", width: "1", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
486 OpcodeMetadata { opcode: Opcode::Wide, mnemonic: "wide", operands: "modified_opcode:u1,local:u2[,increment:s2]", width: "variable", control: "fallthrough", constant_pool: "none", since: "45.3", until: "unbounded" },
487 OpcodeMetadata { opcode: Opcode::Multianewarray, mnemonic: "multianewarray", operands: "constant_pool:u2,dimensions:u1", width: "4", control: "fallthrough", constant_pool: "Class", since: "45.3", until: "unbounded" },
488 OpcodeMetadata { opcode: Opcode::Ifnull, mnemonic: "ifnull", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
489 OpcodeMetadata { opcode: Opcode::Ifnonnull, mnemonic: "ifnonnull", operands: "branch:s2", width: "3", control: "conditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
490 OpcodeMetadata { opcode: Opcode::GotoW, mnemonic: "goto_w", operands: "branch:s4", width: "5", control: "unconditional-branch", constant_pool: "none", since: "45.3", until: "unbounded" },
491 OpcodeMetadata { opcode: Opcode::JsrW, mnemonic: "jsr_w", operands: "branch:s4", width: "5", control: "subroutine-call", constant_pool: "none", since: "45.3", until: "unbounded" },
492 OpcodeMetadata { opcode: Opcode::Breakpoint, mnemonic: "breakpoint", operands: "none", width: "1", control: "reserved", constant_pool: "none", since: "reserved", until: "unbounded" },
493 OpcodeMetadata { opcode: Opcode::ReservedCB, mnemonic: "reserved_cb", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
494 OpcodeMetadata { opcode: Opcode::ReservedCC, mnemonic: "reserved_cc", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
495 OpcodeMetadata { opcode: Opcode::ReservedCD, mnemonic: "reserved_cd", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
496 OpcodeMetadata { opcode: Opcode::ReservedCE, mnemonic: "reserved_ce", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
497 OpcodeMetadata { opcode: Opcode::ReservedCF, mnemonic: "reserved_cf", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
498 OpcodeMetadata { opcode: Opcode::ReservedD0, mnemonic: "reserved_d0", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
499 OpcodeMetadata { opcode: Opcode::ReservedD1, mnemonic: "reserved_d1", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
500 OpcodeMetadata { opcode: Opcode::ReservedD2, mnemonic: "reserved_d2", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
501 OpcodeMetadata { opcode: Opcode::ReservedD3, mnemonic: "reserved_d3", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
502 OpcodeMetadata { opcode: Opcode::ReservedD4, mnemonic: "reserved_d4", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
503 OpcodeMetadata { opcode: Opcode::ReservedD5, mnemonic: "reserved_d5", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
504 OpcodeMetadata { opcode: Opcode::ReservedD6, mnemonic: "reserved_d6", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
505 OpcodeMetadata { opcode: Opcode::ReservedD7, mnemonic: "reserved_d7", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
506 OpcodeMetadata { opcode: Opcode::ReservedD8, mnemonic: "reserved_d8", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
507 OpcodeMetadata { opcode: Opcode::ReservedD9, mnemonic: "reserved_d9", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
508 OpcodeMetadata { opcode: Opcode::ReservedDA, mnemonic: "reserved_da", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
509 OpcodeMetadata { opcode: Opcode::ReservedDB, mnemonic: "reserved_db", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
510 OpcodeMetadata { opcode: Opcode::ReservedDC, mnemonic: "reserved_dc", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
511 OpcodeMetadata { opcode: Opcode::ReservedDD, mnemonic: "reserved_dd", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
512 OpcodeMetadata { opcode: Opcode::ReservedDE, mnemonic: "reserved_de", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
513 OpcodeMetadata { opcode: Opcode::ReservedDF, mnemonic: "reserved_df", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
514 OpcodeMetadata { opcode: Opcode::ReservedE0, mnemonic: "reserved_e0", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
515 OpcodeMetadata { opcode: Opcode::ReservedE1, mnemonic: "reserved_e1", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
516 OpcodeMetadata { opcode: Opcode::ReservedE2, mnemonic: "reserved_e2", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
517 OpcodeMetadata { opcode: Opcode::ReservedE3, mnemonic: "reserved_e3", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
518 OpcodeMetadata { opcode: Opcode::ReservedE4, mnemonic: "reserved_e4", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
519 OpcodeMetadata { opcode: Opcode::ReservedE5, mnemonic: "reserved_e5", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
520 OpcodeMetadata { opcode: Opcode::ReservedE6, mnemonic: "reserved_e6", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
521 OpcodeMetadata { opcode: Opcode::ReservedE7, mnemonic: "reserved_e7", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
522 OpcodeMetadata { opcode: Opcode::ReservedE8, mnemonic: "reserved_e8", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
523 OpcodeMetadata { opcode: Opcode::ReservedE9, mnemonic: "reserved_e9", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
524 OpcodeMetadata { opcode: Opcode::ReservedEA, mnemonic: "reserved_ea", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
525 OpcodeMetadata { opcode: Opcode::ReservedEB, mnemonic: "reserved_eb", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
526 OpcodeMetadata { opcode: Opcode::ReservedEC, mnemonic: "reserved_ec", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
527 OpcodeMetadata { opcode: Opcode::ReservedED, mnemonic: "reserved_ed", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
528 OpcodeMetadata { opcode: Opcode::ReservedEE, mnemonic: "reserved_ee", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
529 OpcodeMetadata { opcode: Opcode::ReservedEF, mnemonic: "reserved_ef", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
530 OpcodeMetadata { opcode: Opcode::ReservedF0, mnemonic: "reserved_f0", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
531 OpcodeMetadata { opcode: Opcode::ReservedF1, mnemonic: "reserved_f1", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
532 OpcodeMetadata { opcode: Opcode::ReservedF2, mnemonic: "reserved_f2", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
533 OpcodeMetadata { opcode: Opcode::ReservedF3, mnemonic: "reserved_f3", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
534 OpcodeMetadata { opcode: Opcode::ReservedF4, mnemonic: "reserved_f4", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
535 OpcodeMetadata { opcode: Opcode::ReservedF5, mnemonic: "reserved_f5", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
536 OpcodeMetadata { opcode: Opcode::ReservedF6, mnemonic: "reserved_f6", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
537 OpcodeMetadata { opcode: Opcode::ReservedF7, mnemonic: "reserved_f7", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
538 OpcodeMetadata { opcode: Opcode::ReservedF8, mnemonic: "reserved_f8", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
539 OpcodeMetadata { opcode: Opcode::ReservedF9, mnemonic: "reserved_f9", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
540 OpcodeMetadata { opcode: Opcode::ReservedFA, mnemonic: "reserved_fa", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
541 OpcodeMetadata { opcode: Opcode::ReservedFB, mnemonic: "reserved_fb", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
542 OpcodeMetadata { opcode: Opcode::ReservedFC, mnemonic: "reserved_fc", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
543 OpcodeMetadata { opcode: Opcode::ReservedFD, mnemonic: "reserved_fd", operands: "invalid", width: "invalid", control: "invalid", constant_pool: "none", since: "never", until: "never" },
544 OpcodeMetadata { opcode: Opcode::Impdep1, mnemonic: "impdep1", operands: "none", width: "1", control: "reserved", constant_pool: "none", since: "reserved", until: "unbounded" },
545 OpcodeMetadata { opcode: Opcode::Impdep2, mnemonic: "impdep2", operands: "none", width: "1", control: "reserved", constant_pool: "none", since: "reserved", until: "unbounded" },
546];
547
548impl Opcode {
549 #[must_use]
551 pub const fn from_byte(byte: u8) -> Self {
552 OPCODES[byte as usize].opcode
553 }
554
555 #[must_use]
557 pub const fn metadata(self) -> &'static OpcodeMetadata {
558 &OPCODES[self as usize]
559 }
560}