1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "dalvik-bytecode-Opcodes"))]
__jni_bindgen! {
    /// public interface [Opcodes](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html)
    ///
    /// Required feature: "dalvik-bytecode-Opcodes"
    public interface Opcodes ("dalvik/bytecode/Opcodes") extends crate::java::lang::Object {

        /// public static final [OP_ADD_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_DOUBLE)
        pub const OP_ADD_DOUBLE : i32 = 171;

        /// public static final [OP_ADD_DOUBLE_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_DOUBLE_2ADDR)
        pub const OP_ADD_DOUBLE_2ADDR : i32 = 203;

        /// public static final [OP_ADD_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_FLOAT)
        pub const OP_ADD_FLOAT : i32 = 166;

        /// public static final [OP_ADD_FLOAT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_FLOAT_2ADDR)
        pub const OP_ADD_FLOAT_2ADDR : i32 = 198;

        /// public static final [OP_ADD_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_INT)
        pub const OP_ADD_INT : i32 = 144;

        /// public static final [OP_ADD_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_INT_2ADDR)
        pub const OP_ADD_INT_2ADDR : i32 = 176;

        /// public static final [OP_ADD_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_INT_LIT16)
        pub const OP_ADD_INT_LIT16 : i32 = 208;

        /// public static final [OP_ADD_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_INT_LIT8)
        pub const OP_ADD_INT_LIT8 : i32 = 216;

        /// public static final [OP_ADD_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_LONG)
        pub const OP_ADD_LONG : i32 = 155;

        /// public static final [OP_ADD_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ADD_LONG_2ADDR)
        pub const OP_ADD_LONG_2ADDR : i32 = 187;

        /// public static final [OP_AGET](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET)
        pub const OP_AGET : i32 = 68;

        /// public static final [OP_AGET_BOOLEAN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET_BOOLEAN)
        pub const OP_AGET_BOOLEAN : i32 = 71;

        /// public static final [OP_AGET_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET_BYTE)
        pub const OP_AGET_BYTE : i32 = 72;

        /// public static final [OP_AGET_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET_CHAR)
        pub const OP_AGET_CHAR : i32 = 73;

        /// public static final [OP_AGET_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET_OBJECT)
        pub const OP_AGET_OBJECT : i32 = 70;

        /// public static final [OP_AGET_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET_SHORT)
        pub const OP_AGET_SHORT : i32 = 74;

        /// public static final [OP_AGET_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AGET_WIDE)
        pub const OP_AGET_WIDE : i32 = 69;

        /// public static final [OP_AND_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AND_INT)
        pub const OP_AND_INT : i32 = 149;

        /// public static final [OP_AND_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AND_INT_2ADDR)
        pub const OP_AND_INT_2ADDR : i32 = 181;

        /// public static final [OP_AND_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AND_INT_LIT16)
        pub const OP_AND_INT_LIT16 : i32 = 213;

        /// public static final [OP_AND_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AND_INT_LIT8)
        pub const OP_AND_INT_LIT8 : i32 = 221;

        /// public static final [OP_AND_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AND_LONG)
        pub const OP_AND_LONG : i32 = 160;

        /// public static final [OP_AND_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_AND_LONG_2ADDR)
        pub const OP_AND_LONG_2ADDR : i32 = 192;

        /// public static final [OP_APUT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT)
        pub const OP_APUT : i32 = 75;

        /// public static final [OP_APUT_BOOLEAN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT_BOOLEAN)
        pub const OP_APUT_BOOLEAN : i32 = 78;

        /// public static final [OP_APUT_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT_BYTE)
        pub const OP_APUT_BYTE : i32 = 79;

        /// public static final [OP_APUT_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT_CHAR)
        pub const OP_APUT_CHAR : i32 = 80;

        /// public static final [OP_APUT_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT_OBJECT)
        pub const OP_APUT_OBJECT : i32 = 77;

        /// public static final [OP_APUT_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT_SHORT)
        pub const OP_APUT_SHORT : i32 = 81;

        /// public static final [OP_APUT_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_APUT_WIDE)
        pub const OP_APUT_WIDE : i32 = 76;

        /// public static final [OP_ARRAY_LENGTH](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_ARRAY_LENGTH)
        pub const OP_ARRAY_LENGTH : i32 = 33;

        /// public static final [OP_BREAKPOINT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_BREAKPOINT)
        #[deprecated] pub const OP_BREAKPOINT : i32 = 236;

        /// public static final [OP_CHECK_CAST](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CHECK_CAST)
        pub const OP_CHECK_CAST : i32 = 31;

        /// public static final [OP_CHECK_CAST_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CHECK_CAST_JUMBO)
        pub const OP_CHECK_CAST_JUMBO : i32 = 511;

        /// public static final [OP_CMPG_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CMPG_DOUBLE)
        pub const OP_CMPG_DOUBLE : i32 = 48;

        /// public static final [OP_CMPG_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CMPG_FLOAT)
        pub const OP_CMPG_FLOAT : i32 = 46;

        /// public static final [OP_CMPL_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CMPL_DOUBLE)
        pub const OP_CMPL_DOUBLE : i32 = 47;

        /// public static final [OP_CMPL_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CMPL_FLOAT)
        pub const OP_CMPL_FLOAT : i32 = 45;

        /// public static final [OP_CMP_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CMP_LONG)
        pub const OP_CMP_LONG : i32 = 49;

        /// public static final [OP_CONST](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST)
        pub const OP_CONST : i32 = 20;

        /// public static final [OP_CONST_16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_16)
        pub const OP_CONST_16 : i32 = 19;

        /// public static final [OP_CONST_4](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_4)
        pub const OP_CONST_4 : i32 = 18;

        /// public static final [OP_CONST_CLASS](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_CLASS)
        pub const OP_CONST_CLASS : i32 = 28;

        /// public static final [OP_CONST_CLASS_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_CLASS_JUMBO)
        pub const OP_CONST_CLASS_JUMBO : i32 = 255;

        /// public static final [OP_CONST_HIGH16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_HIGH16)
        pub const OP_CONST_HIGH16 : i32 = 21;

        /// public static final [OP_CONST_METHOD_HANDLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_METHOD_HANDLE)
        pub const OP_CONST_METHOD_HANDLE : i32 = 254;

        /// public static final [OP_CONST_METHOD_TYPE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_METHOD_TYPE)
        pub const OP_CONST_METHOD_TYPE : i32 = 255;

        /// public static final [OP_CONST_STRING](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_STRING)
        pub const OP_CONST_STRING : i32 = 26;

        /// public static final [OP_CONST_STRING_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_STRING_JUMBO)
        pub const OP_CONST_STRING_JUMBO : i32 = 27;

        /// public static final [OP_CONST_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_WIDE)
        pub const OP_CONST_WIDE : i32 = 24;

        /// public static final [OP_CONST_WIDE_16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_WIDE_16)
        pub const OP_CONST_WIDE_16 : i32 = 22;

        /// public static final [OP_CONST_WIDE_32](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_WIDE_32)
        pub const OP_CONST_WIDE_32 : i32 = 23;

        /// public static final [OP_CONST_WIDE_HIGH16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_CONST_WIDE_HIGH16)
        pub const OP_CONST_WIDE_HIGH16 : i32 = 25;

        /// public static final [OP_DIV_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_DOUBLE)
        pub const OP_DIV_DOUBLE : i32 = 174;

        /// public static final [OP_DIV_DOUBLE_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_DOUBLE_2ADDR)
        pub const OP_DIV_DOUBLE_2ADDR : i32 = 206;

        /// public static final [OP_DIV_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_FLOAT)
        pub const OP_DIV_FLOAT : i32 = 169;

        /// public static final [OP_DIV_FLOAT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_FLOAT_2ADDR)
        pub const OP_DIV_FLOAT_2ADDR : i32 = 201;

        /// public static final [OP_DIV_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_INT)
        pub const OP_DIV_INT : i32 = 147;

        /// public static final [OP_DIV_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_INT_2ADDR)
        pub const OP_DIV_INT_2ADDR : i32 = 179;

        /// public static final [OP_DIV_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_INT_LIT16)
        pub const OP_DIV_INT_LIT16 : i32 = 211;

        /// public static final [OP_DIV_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_INT_LIT8)
        pub const OP_DIV_INT_LIT8 : i32 = 219;

        /// public static final [OP_DIV_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_LONG)
        pub const OP_DIV_LONG : i32 = 158;

        /// public static final [OP_DIV_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DIV_LONG_2ADDR)
        pub const OP_DIV_LONG_2ADDR : i32 = 190;

        /// public static final [OP_DOUBLE_TO_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DOUBLE_TO_FLOAT)
        pub const OP_DOUBLE_TO_FLOAT : i32 = 140;

        /// public static final [OP_DOUBLE_TO_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DOUBLE_TO_INT)
        pub const OP_DOUBLE_TO_INT : i32 = 138;

        /// public static final [OP_DOUBLE_TO_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_DOUBLE_TO_LONG)
        pub const OP_DOUBLE_TO_LONG : i32 = 139;

        /// public static final [OP_EXECUTE_INLINE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_EXECUTE_INLINE)
        #[deprecated] pub const OP_EXECUTE_INLINE : i32 = 238;

        /// public static final [OP_EXECUTE_INLINE_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_EXECUTE_INLINE_RANGE)
        #[deprecated] pub const OP_EXECUTE_INLINE_RANGE : i32 = 239;

        /// public static final [OP_FILLED_NEW_ARRAY](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FILLED_NEW_ARRAY)
        pub const OP_FILLED_NEW_ARRAY : i32 = 36;

        /// public static final [OP_FILLED_NEW_ARRAY_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FILLED_NEW_ARRAY_JUMBO)
        pub const OP_FILLED_NEW_ARRAY_JUMBO : i32 = 1535;

        /// public static final [OP_FILLED_NEW_ARRAY_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FILLED_NEW_ARRAY_RANGE)
        pub const OP_FILLED_NEW_ARRAY_RANGE : i32 = 37;

        /// public static final [OP_FILL_ARRAY_DATA](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FILL_ARRAY_DATA)
        pub const OP_FILL_ARRAY_DATA : i32 = 38;

        /// public static final [OP_FLOAT_TO_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FLOAT_TO_DOUBLE)
        pub const OP_FLOAT_TO_DOUBLE : i32 = 137;

        /// public static final [OP_FLOAT_TO_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FLOAT_TO_INT)
        pub const OP_FLOAT_TO_INT : i32 = 135;

        /// public static final [OP_FLOAT_TO_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_FLOAT_TO_LONG)
        pub const OP_FLOAT_TO_LONG : i32 = 136;

        /// public static final [OP_GOTO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_GOTO)
        pub const OP_GOTO : i32 = 40;

        /// public static final [OP_GOTO_16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_GOTO_16)
        pub const OP_GOTO_16 : i32 = 41;

        /// public static final [OP_GOTO_32](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_GOTO_32)
        pub const OP_GOTO_32 : i32 = 42;

        /// public static final [OP_IF_EQ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_EQ)
        pub const OP_IF_EQ : i32 = 50;

        /// public static final [OP_IF_EQZ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_EQZ)
        pub const OP_IF_EQZ : i32 = 56;

        /// public static final [OP_IF_GE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_GE)
        pub const OP_IF_GE : i32 = 53;

        /// public static final [OP_IF_GEZ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_GEZ)
        pub const OP_IF_GEZ : i32 = 59;

        /// public static final [OP_IF_GT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_GT)
        pub const OP_IF_GT : i32 = 54;

        /// public static final [OP_IF_GTZ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_GTZ)
        pub const OP_IF_GTZ : i32 = 60;

        /// public static final [OP_IF_LE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_LE)
        pub const OP_IF_LE : i32 = 55;

        /// public static final [OP_IF_LEZ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_LEZ)
        pub const OP_IF_LEZ : i32 = 61;

        /// public static final [OP_IF_LT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_LT)
        pub const OP_IF_LT : i32 = 52;

        /// public static final [OP_IF_LTZ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_LTZ)
        pub const OP_IF_LTZ : i32 = 58;

        /// public static final [OP_IF_NE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_NE)
        pub const OP_IF_NE : i32 = 51;

        /// public static final [OP_IF_NEZ](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IF_NEZ)
        pub const OP_IF_NEZ : i32 = 57;

        /// public static final [OP_IGET](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET)
        pub const OP_IGET : i32 = 82;

        /// public static final [OP_IGET_BOOLEAN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_BOOLEAN)
        pub const OP_IGET_BOOLEAN : i32 = 85;

        /// public static final [OP_IGET_BOOLEAN_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_BOOLEAN_JUMBO)
        pub const OP_IGET_BOOLEAN_JUMBO : i32 = 2559;

        /// public static final [OP_IGET_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_BYTE)
        pub const OP_IGET_BYTE : i32 = 86;

        /// public static final [OP_IGET_BYTE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_BYTE_JUMBO)
        pub const OP_IGET_BYTE_JUMBO : i32 = 2815;

        /// public static final [OP_IGET_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_CHAR)
        pub const OP_IGET_CHAR : i32 = 87;

        /// public static final [OP_IGET_CHAR_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_CHAR_JUMBO)
        pub const OP_IGET_CHAR_JUMBO : i32 = 3071;

        /// public static final [OP_IGET_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_JUMBO)
        pub const OP_IGET_JUMBO : i32 = 1791;

        /// public static final [OP_IGET_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_OBJECT)
        pub const OP_IGET_OBJECT : i32 = 84;

        /// public static final [OP_IGET_OBJECT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_OBJECT_JUMBO)
        pub const OP_IGET_OBJECT_JUMBO : i32 = 2303;

        /// public static final [OP_IGET_OBJECT_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_OBJECT_QUICK)
        #[deprecated] pub const OP_IGET_OBJECT_QUICK : i32 = 244;

        /// public static final [OP_IGET_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_QUICK)
        #[deprecated] pub const OP_IGET_QUICK : i32 = 242;

        /// public static final [OP_IGET_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_SHORT)
        pub const OP_IGET_SHORT : i32 = 88;

        /// public static final [OP_IGET_SHORT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_SHORT_JUMBO)
        pub const OP_IGET_SHORT_JUMBO : i32 = 3327;

        /// public static final [OP_IGET_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_WIDE)
        pub const OP_IGET_WIDE : i32 = 83;

        /// public static final [OP_IGET_WIDE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_WIDE_JUMBO)
        pub const OP_IGET_WIDE_JUMBO : i32 = 2047;

        /// public static final [OP_IGET_WIDE_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_WIDE_QUICK)
        #[deprecated] pub const OP_IGET_WIDE_QUICK : i32 = 243;

        /// public static final [OP_IGET_WIDE_VOLATILE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IGET_WIDE_VOLATILE)
        #[deprecated] pub const OP_IGET_WIDE_VOLATILE : i32 = 232;

        /// public static final [OP_INSTANCE_OF](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INSTANCE_OF)
        pub const OP_INSTANCE_OF : i32 = 32;

        /// public static final [OP_INSTANCE_OF_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INSTANCE_OF_JUMBO)
        pub const OP_INSTANCE_OF_JUMBO : i32 = 767;

        /// public static final [OP_INT_TO_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INT_TO_BYTE)
        pub const OP_INT_TO_BYTE : i32 = 141;

        /// public static final [OP_INT_TO_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INT_TO_CHAR)
        pub const OP_INT_TO_CHAR : i32 = 142;

        /// public static final [OP_INT_TO_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INT_TO_DOUBLE)
        pub const OP_INT_TO_DOUBLE : i32 = 131;

        /// public static final [OP_INT_TO_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INT_TO_FLOAT)
        pub const OP_INT_TO_FLOAT : i32 = 130;

        /// public static final [OP_INT_TO_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INT_TO_LONG)
        pub const OP_INT_TO_LONG : i32 = 129;

        /// public static final [OP_INT_TO_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INT_TO_SHORT)
        pub const OP_INT_TO_SHORT : i32 = 143;

        /// public static final [OP_INVOKE_CUSTOM](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_CUSTOM)
        pub const OP_INVOKE_CUSTOM : i32 = 252;

        /// public static final [OP_INVOKE_CUSTOM_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_CUSTOM_RANGE)
        pub const OP_INVOKE_CUSTOM_RANGE : i32 = 253;

        /// public static final [OP_INVOKE_DIRECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_DIRECT)
        pub const OP_INVOKE_DIRECT : i32 = 112;

        /// public static final [OP_INVOKE_DIRECT_EMPTY](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_DIRECT_EMPTY)
        #[deprecated] pub const OP_INVOKE_DIRECT_EMPTY : i32 = 240;

        /// public static final [OP_INVOKE_DIRECT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_DIRECT_JUMBO)
        pub const OP_INVOKE_DIRECT_JUMBO : i32 = 9471;

        /// public static final [OP_INVOKE_DIRECT_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_DIRECT_RANGE)
        pub const OP_INVOKE_DIRECT_RANGE : i32 = 118;

        /// public static final [OP_INVOKE_INTERFACE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_INTERFACE)
        pub const OP_INVOKE_INTERFACE : i32 = 114;

        /// public static final [OP_INVOKE_INTERFACE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_INTERFACE_JUMBO)
        pub const OP_INVOKE_INTERFACE_JUMBO : i32 = 9983;

        /// public static final [OP_INVOKE_INTERFACE_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_INTERFACE_RANGE)
        pub const OP_INVOKE_INTERFACE_RANGE : i32 = 120;

        /// public static final [OP_INVOKE_POLYMORPHIC](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_POLYMORPHIC)
        pub const OP_INVOKE_POLYMORPHIC : i32 = 250;

        /// public static final [OP_INVOKE_POLYMORPHIC_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_POLYMORPHIC_RANGE)
        pub const OP_INVOKE_POLYMORPHIC_RANGE : i32 = 251;

        /// public static final [OP_INVOKE_STATIC](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_STATIC)
        pub const OP_INVOKE_STATIC : i32 = 113;

        /// public static final [OP_INVOKE_STATIC_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_STATIC_JUMBO)
        pub const OP_INVOKE_STATIC_JUMBO : i32 = 9727;

        /// public static final [OP_INVOKE_STATIC_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_STATIC_RANGE)
        pub const OP_INVOKE_STATIC_RANGE : i32 = 119;

        /// public static final [OP_INVOKE_SUPER](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_SUPER)
        pub const OP_INVOKE_SUPER : i32 = 111;

        /// public static final [OP_INVOKE_SUPER_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_SUPER_JUMBO)
        pub const OP_INVOKE_SUPER_JUMBO : i32 = 9215;

        /// public static final [OP_INVOKE_SUPER_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_SUPER_QUICK)
        #[deprecated] pub const OP_INVOKE_SUPER_QUICK : i32 = 250;

        /// public static final [OP_INVOKE_SUPER_QUICK_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_SUPER_QUICK_RANGE)
        #[deprecated] pub const OP_INVOKE_SUPER_QUICK_RANGE : i32 = 251;

        /// public static final [OP_INVOKE_SUPER_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_SUPER_RANGE)
        pub const OP_INVOKE_SUPER_RANGE : i32 = 117;

        /// public static final [OP_INVOKE_VIRTUAL](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_VIRTUAL)
        pub const OP_INVOKE_VIRTUAL : i32 = 110;

        /// public static final [OP_INVOKE_VIRTUAL_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_VIRTUAL_JUMBO)
        pub const OP_INVOKE_VIRTUAL_JUMBO : i32 = 8959;

        /// public static final [OP_INVOKE_VIRTUAL_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_VIRTUAL_QUICK)
        #[deprecated] pub const OP_INVOKE_VIRTUAL_QUICK : i32 = 248;

        /// public static final [OP_INVOKE_VIRTUAL_QUICK_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_VIRTUAL_QUICK_RANGE)
        #[deprecated] pub const OP_INVOKE_VIRTUAL_QUICK_RANGE : i32 = 249;

        /// public static final [OP_INVOKE_VIRTUAL_RANGE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_INVOKE_VIRTUAL_RANGE)
        pub const OP_INVOKE_VIRTUAL_RANGE : i32 = 116;

        /// public static final [OP_IPUT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT)
        pub const OP_IPUT : i32 = 89;

        /// public static final [OP_IPUT_BOOLEAN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_BOOLEAN)
        pub const OP_IPUT_BOOLEAN : i32 = 92;

        /// public static final [OP_IPUT_BOOLEAN_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_BOOLEAN_JUMBO)
        pub const OP_IPUT_BOOLEAN_JUMBO : i32 = 4351;

        /// public static final [OP_IPUT_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_BYTE)
        pub const OP_IPUT_BYTE : i32 = 93;

        /// public static final [OP_IPUT_BYTE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_BYTE_JUMBO)
        pub const OP_IPUT_BYTE_JUMBO : i32 = 4607;

        /// public static final [OP_IPUT_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_CHAR)
        pub const OP_IPUT_CHAR : i32 = 94;

        /// public static final [OP_IPUT_CHAR_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_CHAR_JUMBO)
        pub const OP_IPUT_CHAR_JUMBO : i32 = 4863;

        /// public static final [OP_IPUT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_JUMBO)
        pub const OP_IPUT_JUMBO : i32 = 3583;

        /// public static final [OP_IPUT_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_OBJECT)
        pub const OP_IPUT_OBJECT : i32 = 91;

        /// public static final [OP_IPUT_OBJECT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_OBJECT_JUMBO)
        pub const OP_IPUT_OBJECT_JUMBO : i32 = 4095;

        /// public static final [OP_IPUT_OBJECT_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_OBJECT_QUICK)
        #[deprecated] pub const OP_IPUT_OBJECT_QUICK : i32 = 247;

        /// public static final [OP_IPUT_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_QUICK)
        #[deprecated] pub const OP_IPUT_QUICK : i32 = 245;

        /// public static final [OP_IPUT_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_SHORT)
        pub const OP_IPUT_SHORT : i32 = 95;

        /// public static final [OP_IPUT_SHORT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_SHORT_JUMBO)
        pub const OP_IPUT_SHORT_JUMBO : i32 = 5119;

        /// public static final [OP_IPUT_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_WIDE)
        pub const OP_IPUT_WIDE : i32 = 90;

        /// public static final [OP_IPUT_WIDE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_WIDE_JUMBO)
        pub const OP_IPUT_WIDE_JUMBO : i32 = 3839;

        /// public static final [OP_IPUT_WIDE_QUICK](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_WIDE_QUICK)
        #[deprecated] pub const OP_IPUT_WIDE_QUICK : i32 = 246;

        /// public static final [OP_IPUT_WIDE_VOLATILE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_IPUT_WIDE_VOLATILE)
        #[deprecated] pub const OP_IPUT_WIDE_VOLATILE : i32 = 233;

        /// public static final [OP_LONG_TO_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_LONG_TO_DOUBLE)
        pub const OP_LONG_TO_DOUBLE : i32 = 134;

        /// public static final [OP_LONG_TO_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_LONG_TO_FLOAT)
        pub const OP_LONG_TO_FLOAT : i32 = 133;

        /// public static final [OP_LONG_TO_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_LONG_TO_INT)
        pub const OP_LONG_TO_INT : i32 = 132;

        /// public static final [OP_MONITOR_ENTER](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MONITOR_ENTER)
        pub const OP_MONITOR_ENTER : i32 = 29;

        /// public static final [OP_MONITOR_EXIT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MONITOR_EXIT)
        pub const OP_MONITOR_EXIT : i32 = 30;

        /// public static final [OP_MOVE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE)
        pub const OP_MOVE : i32 = 1;

        /// public static final [OP_MOVE_16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_16)
        pub const OP_MOVE_16 : i32 = 3;

        /// public static final [OP_MOVE_EXCEPTION](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_EXCEPTION)
        pub const OP_MOVE_EXCEPTION : i32 = 13;

        /// public static final [OP_MOVE_FROM16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_FROM16)
        pub const OP_MOVE_FROM16 : i32 = 2;

        /// public static final [OP_MOVE_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_OBJECT)
        pub const OP_MOVE_OBJECT : i32 = 7;

        /// public static final [OP_MOVE_OBJECT_16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_OBJECT_16)
        pub const OP_MOVE_OBJECT_16 : i32 = 9;

        /// public static final [OP_MOVE_OBJECT_FROM16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_OBJECT_FROM16)
        pub const OP_MOVE_OBJECT_FROM16 : i32 = 8;

        /// public static final [OP_MOVE_RESULT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_RESULT)
        pub const OP_MOVE_RESULT : i32 = 10;

        /// public static final [OP_MOVE_RESULT_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_RESULT_OBJECT)
        pub const OP_MOVE_RESULT_OBJECT : i32 = 12;

        /// public static final [OP_MOVE_RESULT_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_RESULT_WIDE)
        pub const OP_MOVE_RESULT_WIDE : i32 = 11;

        /// public static final [OP_MOVE_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_WIDE)
        pub const OP_MOVE_WIDE : i32 = 4;

        /// public static final [OP_MOVE_WIDE_16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_WIDE_16)
        pub const OP_MOVE_WIDE_16 : i32 = 6;

        /// public static final [OP_MOVE_WIDE_FROM16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MOVE_WIDE_FROM16)
        pub const OP_MOVE_WIDE_FROM16 : i32 = 5;

        /// public static final [OP_MUL_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_DOUBLE)
        pub const OP_MUL_DOUBLE : i32 = 173;

        /// public static final [OP_MUL_DOUBLE_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_DOUBLE_2ADDR)
        pub const OP_MUL_DOUBLE_2ADDR : i32 = 205;

        /// public static final [OP_MUL_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_FLOAT)
        pub const OP_MUL_FLOAT : i32 = 168;

        /// public static final [OP_MUL_FLOAT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_FLOAT_2ADDR)
        pub const OP_MUL_FLOAT_2ADDR : i32 = 200;

        /// public static final [OP_MUL_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_INT)
        pub const OP_MUL_INT : i32 = 146;

        /// public static final [OP_MUL_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_INT_2ADDR)
        pub const OP_MUL_INT_2ADDR : i32 = 178;

        /// public static final [OP_MUL_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_INT_LIT16)
        pub const OP_MUL_INT_LIT16 : i32 = 210;

        /// public static final [OP_MUL_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_INT_LIT8)
        pub const OP_MUL_INT_LIT8 : i32 = 218;

        /// public static final [OP_MUL_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_LONG)
        pub const OP_MUL_LONG : i32 = 157;

        /// public static final [OP_MUL_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_MUL_LONG_2ADDR)
        pub const OP_MUL_LONG_2ADDR : i32 = 189;

        /// public static final [OP_NEG_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEG_DOUBLE)
        pub const OP_NEG_DOUBLE : i32 = 128;

        /// public static final [OP_NEG_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEG_FLOAT)
        pub const OP_NEG_FLOAT : i32 = 127;

        /// public static final [OP_NEG_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEG_INT)
        pub const OP_NEG_INT : i32 = 123;

        /// public static final [OP_NEG_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEG_LONG)
        pub const OP_NEG_LONG : i32 = 125;

        /// public static final [OP_NEW_ARRAY](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEW_ARRAY)
        pub const OP_NEW_ARRAY : i32 = 35;

        /// public static final [OP_NEW_ARRAY_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEW_ARRAY_JUMBO)
        pub const OP_NEW_ARRAY_JUMBO : i32 = 1279;

        /// public static final [OP_NEW_INSTANCE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEW_INSTANCE)
        pub const OP_NEW_INSTANCE : i32 = 34;

        /// public static final [OP_NEW_INSTANCE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NEW_INSTANCE_JUMBO)
        pub const OP_NEW_INSTANCE_JUMBO : i32 = 1023;

        /// public static final [OP_NOP](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NOP)
        pub const OP_NOP : i32 = 0;

        /// public static final [OP_NOT_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NOT_INT)
        pub const OP_NOT_INT : i32 = 124;

        /// public static final [OP_NOT_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_NOT_LONG)
        pub const OP_NOT_LONG : i32 = 126;

        /// public static final [OP_OR_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_OR_INT)
        pub const OP_OR_INT : i32 = 150;

        /// public static final [OP_OR_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_OR_INT_2ADDR)
        pub const OP_OR_INT_2ADDR : i32 = 182;

        /// public static final [OP_OR_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_OR_INT_LIT16)
        pub const OP_OR_INT_LIT16 : i32 = 214;

        /// public static final [OP_OR_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_OR_INT_LIT8)
        pub const OP_OR_INT_LIT8 : i32 = 222;

        /// public static final [OP_OR_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_OR_LONG)
        pub const OP_OR_LONG : i32 = 161;

        /// public static final [OP_OR_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_OR_LONG_2ADDR)
        pub const OP_OR_LONG_2ADDR : i32 = 193;

        /// public static final [OP_PACKED_SWITCH](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_PACKED_SWITCH)
        pub const OP_PACKED_SWITCH : i32 = 43;

        /// public static final [OP_REM_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_DOUBLE)
        pub const OP_REM_DOUBLE : i32 = 175;

        /// public static final [OP_REM_DOUBLE_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_DOUBLE_2ADDR)
        pub const OP_REM_DOUBLE_2ADDR : i32 = 207;

        /// public static final [OP_REM_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_FLOAT)
        pub const OP_REM_FLOAT : i32 = 170;

        /// public static final [OP_REM_FLOAT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_FLOAT_2ADDR)
        pub const OP_REM_FLOAT_2ADDR : i32 = 202;

        /// public static final [OP_REM_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_INT)
        pub const OP_REM_INT : i32 = 148;

        /// public static final [OP_REM_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_INT_2ADDR)
        pub const OP_REM_INT_2ADDR : i32 = 180;

        /// public static final [OP_REM_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_INT_LIT16)
        pub const OP_REM_INT_LIT16 : i32 = 212;

        /// public static final [OP_REM_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_INT_LIT8)
        pub const OP_REM_INT_LIT8 : i32 = 220;

        /// public static final [OP_REM_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_LONG)
        pub const OP_REM_LONG : i32 = 159;

        /// public static final [OP_REM_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_REM_LONG_2ADDR)
        pub const OP_REM_LONG_2ADDR : i32 = 191;

        /// public static final [OP_RETURN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_RETURN)
        pub const OP_RETURN : i32 = 15;

        /// public static final [OP_RETURN_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_RETURN_OBJECT)
        pub const OP_RETURN_OBJECT : i32 = 17;

        /// public static final [OP_RETURN_VOID](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_RETURN_VOID)
        pub const OP_RETURN_VOID : i32 = 14;

        /// public static final [OP_RETURN_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_RETURN_WIDE)
        pub const OP_RETURN_WIDE : i32 = 16;

        /// public static final [OP_RSUB_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_RSUB_INT)
        pub const OP_RSUB_INT : i32 = 209;

        /// public static final [OP_RSUB_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_RSUB_INT_LIT8)
        pub const OP_RSUB_INT_LIT8 : i32 = 217;

        /// public static final [OP_SGET](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET)
        pub const OP_SGET : i32 = 96;

        /// public static final [OP_SGET_BOOLEAN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_BOOLEAN)
        pub const OP_SGET_BOOLEAN : i32 = 99;

        /// public static final [OP_SGET_BOOLEAN_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_BOOLEAN_JUMBO)
        pub const OP_SGET_BOOLEAN_JUMBO : i32 = 6143;

        /// public static final [OP_SGET_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_BYTE)
        pub const OP_SGET_BYTE : i32 = 100;

        /// public static final [OP_SGET_BYTE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_BYTE_JUMBO)
        pub const OP_SGET_BYTE_JUMBO : i32 = 6399;

        /// public static final [OP_SGET_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_CHAR)
        pub const OP_SGET_CHAR : i32 = 101;

        /// public static final [OP_SGET_CHAR_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_CHAR_JUMBO)
        pub const OP_SGET_CHAR_JUMBO : i32 = 6655;

        /// public static final [OP_SGET_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_JUMBO)
        pub const OP_SGET_JUMBO : i32 = 5375;

        /// public static final [OP_SGET_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_OBJECT)
        pub const OP_SGET_OBJECT : i32 = 98;

        /// public static final [OP_SGET_OBJECT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_OBJECT_JUMBO)
        pub const OP_SGET_OBJECT_JUMBO : i32 = 5887;

        /// public static final [OP_SGET_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_SHORT)
        pub const OP_SGET_SHORT : i32 = 102;

        /// public static final [OP_SGET_SHORT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_SHORT_JUMBO)
        pub const OP_SGET_SHORT_JUMBO : i32 = 6911;

        /// public static final [OP_SGET_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_WIDE)
        pub const OP_SGET_WIDE : i32 = 97;

        /// public static final [OP_SGET_WIDE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_WIDE_JUMBO)
        pub const OP_SGET_WIDE_JUMBO : i32 = 5631;

        /// public static final [OP_SGET_WIDE_VOLATILE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SGET_WIDE_VOLATILE)
        #[deprecated] pub const OP_SGET_WIDE_VOLATILE : i32 = 234;

        /// public static final [OP_SHL_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHL_INT)
        pub const OP_SHL_INT : i32 = 152;

        /// public static final [OP_SHL_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHL_INT_2ADDR)
        pub const OP_SHL_INT_2ADDR : i32 = 184;

        /// public static final [OP_SHL_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHL_INT_LIT8)
        pub const OP_SHL_INT_LIT8 : i32 = 224;

        /// public static final [OP_SHL_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHL_LONG)
        pub const OP_SHL_LONG : i32 = 163;

        /// public static final [OP_SHL_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHL_LONG_2ADDR)
        pub const OP_SHL_LONG_2ADDR : i32 = 195;

        /// public static final [OP_SHR_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHR_INT)
        pub const OP_SHR_INT : i32 = 153;

        /// public static final [OP_SHR_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHR_INT_2ADDR)
        pub const OP_SHR_INT_2ADDR : i32 = 185;

        /// public static final [OP_SHR_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHR_INT_LIT8)
        pub const OP_SHR_INT_LIT8 : i32 = 225;

        /// public static final [OP_SHR_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHR_LONG)
        pub const OP_SHR_LONG : i32 = 164;

        /// public static final [OP_SHR_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SHR_LONG_2ADDR)
        pub const OP_SHR_LONG_2ADDR : i32 = 196;

        /// public static final [OP_SPARSE_SWITCH](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPARSE_SWITCH)
        pub const OP_SPARSE_SWITCH : i32 = 44;

        /// public static final [OP_SPUT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT)
        pub const OP_SPUT : i32 = 103;

        /// public static final [OP_SPUT_BOOLEAN](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_BOOLEAN)
        pub const OP_SPUT_BOOLEAN : i32 = 106;

        /// public static final [OP_SPUT_BOOLEAN_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_BOOLEAN_JUMBO)
        pub const OP_SPUT_BOOLEAN_JUMBO : i32 = 7935;

        /// public static final [OP_SPUT_BYTE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_BYTE)
        pub const OP_SPUT_BYTE : i32 = 107;

        /// public static final [OP_SPUT_BYTE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_BYTE_JUMBO)
        pub const OP_SPUT_BYTE_JUMBO : i32 = 8191;

        /// public static final [OP_SPUT_CHAR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_CHAR)
        pub const OP_SPUT_CHAR : i32 = 108;

        /// public static final [OP_SPUT_CHAR_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_CHAR_JUMBO)
        pub const OP_SPUT_CHAR_JUMBO : i32 = 8447;

        /// public static final [OP_SPUT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_JUMBO)
        pub const OP_SPUT_JUMBO : i32 = 7167;

        /// public static final [OP_SPUT_OBJECT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_OBJECT)
        pub const OP_SPUT_OBJECT : i32 = 105;

        /// public static final [OP_SPUT_OBJECT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_OBJECT_JUMBO)
        pub const OP_SPUT_OBJECT_JUMBO : i32 = 7679;

        /// public static final [OP_SPUT_SHORT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_SHORT)
        pub const OP_SPUT_SHORT : i32 = 109;

        /// public static final [OP_SPUT_SHORT_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_SHORT_JUMBO)
        pub const OP_SPUT_SHORT_JUMBO : i32 = 8703;

        /// public static final [OP_SPUT_WIDE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_WIDE)
        pub const OP_SPUT_WIDE : i32 = 104;

        /// public static final [OP_SPUT_WIDE_JUMBO](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_WIDE_JUMBO)
        pub const OP_SPUT_WIDE_JUMBO : i32 = 7423;

        /// public static final [OP_SPUT_WIDE_VOLATILE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SPUT_WIDE_VOLATILE)
        #[deprecated] pub const OP_SPUT_WIDE_VOLATILE : i32 = 235;

        /// public static final [OP_SUB_DOUBLE](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_DOUBLE)
        pub const OP_SUB_DOUBLE : i32 = 172;

        /// public static final [OP_SUB_DOUBLE_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_DOUBLE_2ADDR)
        pub const OP_SUB_DOUBLE_2ADDR : i32 = 204;

        /// public static final [OP_SUB_FLOAT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_FLOAT)
        pub const OP_SUB_FLOAT : i32 = 167;

        /// public static final [OP_SUB_FLOAT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_FLOAT_2ADDR)
        pub const OP_SUB_FLOAT_2ADDR : i32 = 199;

        /// public static final [OP_SUB_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_INT)
        pub const OP_SUB_INT : i32 = 145;

        /// public static final [OP_SUB_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_INT_2ADDR)
        pub const OP_SUB_INT_2ADDR : i32 = 177;

        /// public static final [OP_SUB_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_LONG)
        pub const OP_SUB_LONG : i32 = 156;

        /// public static final [OP_SUB_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_SUB_LONG_2ADDR)
        pub const OP_SUB_LONG_2ADDR : i32 = 188;

        /// public static final [OP_THROW](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_THROW)
        pub const OP_THROW : i32 = 39;

        /// public static final [OP_THROW_VERIFICATION_ERROR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_THROW_VERIFICATION_ERROR)
        #[deprecated] pub const OP_THROW_VERIFICATION_ERROR : i32 = 237;

        /// public static final [OP_USHR_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_USHR_INT)
        pub const OP_USHR_INT : i32 = 154;

        /// public static final [OP_USHR_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_USHR_INT_2ADDR)
        pub const OP_USHR_INT_2ADDR : i32 = 186;

        /// public static final [OP_USHR_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_USHR_INT_LIT8)
        pub const OP_USHR_INT_LIT8 : i32 = 226;

        /// public static final [OP_USHR_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_USHR_LONG)
        pub const OP_USHR_LONG : i32 = 165;

        /// public static final [OP_USHR_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_USHR_LONG_2ADDR)
        pub const OP_USHR_LONG_2ADDR : i32 = 197;

        /// public static final [OP_XOR_INT](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_XOR_INT)
        pub const OP_XOR_INT : i32 = 151;

        /// public static final [OP_XOR_INT_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_XOR_INT_2ADDR)
        pub const OP_XOR_INT_2ADDR : i32 = 183;

        /// public static final [OP_XOR_INT_LIT16](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_XOR_INT_LIT16)
        pub const OP_XOR_INT_LIT16 : i32 = 215;

        /// public static final [OP_XOR_INT_LIT8](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_XOR_INT_LIT8)
        pub const OP_XOR_INT_LIT8 : i32 = 223;

        /// public static final [OP_XOR_LONG](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_XOR_LONG)
        pub const OP_XOR_LONG : i32 = 162;

        /// public static final [OP_XOR_LONG_2ADDR](https://developer.android.com/reference/dalvik/bytecode/Opcodes.html#OP_XOR_LONG_2ADDR)
        pub const OP_XOR_LONG_2ADDR : i32 = 194;
    }
}