File: AbstractFrameModelingVisitor.java

package info (click to toggle)
findbugs 3.1.0~preview2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 16,412 kB
  • sloc: java: 132,265; xml: 31,759; sh: 361; sql: 126; perl: 122; makefile: 35
file content (1283 lines) | stat: -rw-r--r-- 31,842 bytes parent folder | download | duplicates (2)
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
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
/*
 * Bytecode Analysis Framework
 * Copyright (C) 2003-2005 University of Maryland
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package edu.umd.cs.findbugs.ba;

import org.apache.bcel.Constants;
import org.apache.bcel.generic.*;

import edu.umd.cs.findbugs.bcel.generic.NONNULL2Z;
import edu.umd.cs.findbugs.bcel.generic.NULL2Z;

/**
 * A common base class for frame modeling visitors. This class provides a
 * default implementation which copies values between frame slots whenever
 * appropriate. For example, its handler for the ALOAD bytecode will get the
 * value from the referenced local in the frame and push it onto the stack.
 * Bytecodes which do something other than copying values are modeled by popping
 * values as appropriate, and pushing the "default" value onto the stack for
 * each stack slot produced, where the default value is the one returned by the
 * getDefaultValue() method.
 * <p/>
 * <p>
 * Subclasses should override the visit methods for any bytecode instructions
 * which require special handling.
 * </p>
 * <p>
 * Users of AbstractFrameModelingVisitors should call the analyzeInstruction()
 * method instead of directly using the accept() method of the instruction. This
 * allows a checked DataflowAnalysisException to be thrown when invalid bytecode
 * is detected. E.g., stack underflows.
 * </p>
 *
 * @author David Hovemeyer
 * @see Frame
 * @see DataflowAnalysis
 */
public abstract class AbstractFrameModelingVisitor<Value, FrameType extends Frame<Value>> implements Visitor {
    private FrameType frame;

    private Location location;

    protected ConstantPoolGen cpg;

    /**
     * Constructor.
     *
     * @param cpg
     *            the ConstantPoolGen of the method to be analyzed
     */
    public AbstractFrameModelingVisitor(ConstantPoolGen cpg) {
        this.frame = null;
        this.cpg = cpg;
    }

    /**
     * Analyze the given Instruction.
     *
     * @param ins
     *            the Instruction
     * @throws DataflowAnalysisException
     *             if an error occurs analyzing the instruction; in most cases,
     *             this indicates that the bytecode for the method being
     *             analyzed is invalid
     */
    public void analyzeInstruction(Instruction ins) throws DataflowAnalysisException {
        if (frame.isValid()) {
            try {
                ins.accept(this);
            } catch (InvalidBytecodeException e) {
                String message = "Invalid bytecode: could not analyze instr. " + ins + " at frame " + frame;
                throw new DataflowAnalysisException(message, e);
            }
        }
    }

    /**
     * Get the ConstantPoolGen for the method.
     */
    public ConstantPoolGen getCPG() {
        return cpg;
    }

    /**
     * Set the frame and Location for the instruction about to be modeled.
     *
     * @param frame
     *            the Frame
     * @param location
     *            the Location
     */
    public void setFrameAndLocation(FrameType frame, Location location) {
        this.frame = frame;
        this.location = location;
    }

    /**
     * Get the frame.
     *
     * @return the Frame object
     */
    public FrameType getFrame() {
        return frame;
    }

    /**
     * Get the Location.
     *
     * @return the Location
     */
    public Location getLocation() {
        return location;
    }

    /**
     * Produce a "default" value. This is what is pushed onto the stack by the
     * handleNormalInstruction() method for instructions which produce stack
     * values.
     */
    public abstract Value getDefaultValue();

    /**
     * Get the number of words consumed by given instruction.
     */
    public int getNumWordsConsumed(Instruction ins) {
        int numWordsConsumed = ins.consumeStack(cpg);
        if (numWordsConsumed == Constants.UNPREDICTABLE) {
            throw new InvalidBytecodeException("Unpredictable stack consumption");
        }
        return numWordsConsumed;
    }

    /**
     * Get the number of words produced by given instruction.
     */
    public int getNumWordsProduced(Instruction ins) {

        int numWordsProduced = ins.produceStack(cpg);
        if (numWordsProduced == Constants.UNPREDICTABLE) {
            throw new InvalidBytecodeException("Unpredictable stack productions");
        }
        return numWordsProduced;
    }

    /**
     * This is called for illegal bytecodes.
     *
     * @throws InvalidBytecodeException
     */
    private void illegalBytecode(Instruction ins) {
        throw new InvalidBytecodeException("Illegal bytecode: " + ins);
    }

    /*
     * ----------------------------------------------------------------------
     * Empty visit methods
     * ----------------------------------------------------------------------
     */

    @Override
    public void visitStackInstruction(StackInstruction obj) {
    }

    @Override
    public void visitLocalVariableInstruction(LocalVariableInstruction obj) {
    }

    @Override
    public void visitBranchInstruction(BranchInstruction obj) {
    }

    @Override
    public void visitLoadClass(LoadClass obj) {
    }

    @Override
    public void visitFieldInstruction(FieldInstruction obj) {
    }

    @Override
    public void visitIfInstruction(IfInstruction obj) {
    }

    /** To allow for calls to visitNULL2Z and visitNONNULL2Z, this method is made final.
     * If you want to override it, override visitConversionInstruction2 instead.
     */
    @Override
    public final void visitConversionInstruction(ConversionInstruction obj) {
        visitConversionInstruction2(obj);
        if (obj instanceof NULL2Z) {
            visitNULL2Z((NULL2Z) obj);
        } else if (obj instanceof NONNULL2Z) {
            visitNONNULL2Z((NONNULL2Z) obj);
        }
    }

    public final void visitConversionInstruction2(ConversionInstruction obj) {

    }

    @Override
    public void visitPopInstruction(PopInstruction obj) {
    }

    @Override
    public void visitJsrInstruction(JsrInstruction obj) {
    }

    @Override
    public void visitGotoInstruction(GotoInstruction obj) {
    }

    @Override
    public void visitStoreInstruction(StoreInstruction obj) {
    }

    @Override
    public void visitTypedInstruction(TypedInstruction obj) {
    }

    @Override
    public void visitSelect(Select obj) {
    }

    @Override
    public void visitUnconditionalBranch(UnconditionalBranch obj) {
    }

    @Override
    public void visitPushInstruction(PushInstruction obj) {
    }

    @Override
    public void visitArithmeticInstruction(ArithmeticInstruction obj) {
    }

    @Override
    public void visitCPInstruction(CPInstruction obj) {
    }

    @Override
    public void visitInvokeInstruction(InvokeInstruction obj) {
    }

    @Override
    public void visitArrayInstruction(ArrayInstruction obj) {
    }

    @Override
    public void visitAllocationInstruction(AllocationInstruction obj) {
    }

    @Override
    public void visitReturnInstruction(ReturnInstruction obj) {
    }

    @Override
    public void visitFieldOrMethod(FieldOrMethod obj) {
    }

    @Override
    public void visitConstantPushInstruction(ConstantPushInstruction obj) {
    }

    @Override
    public void visitExceptionThrower(ExceptionThrower obj) {
    }

    @Override
    public void visitLoadInstruction(LoadInstruction obj) {
    }

    @Override
    public void visitVariableLengthInstruction(VariableLengthInstruction obj) {
    }

    @Override
    public void visitStackProducer(StackProducer obj) {
    }

    @Override
    public void visitStackConsumer(StackConsumer obj) {
    }

    public void visitNameSignatureInstruction(NameSignatureInstruction obj) {
    }

    /*
     * ----------------------------------------------------------------------
     * General instruction handlers
     * ----------------------------------------------------------------------
     */

    /**
     * Handler for all instructions which pop values from the stack and store
     * them in a local variable. Note that two locals are stored into for long
     * and double stores.
     */
    public void handleStoreInstruction(StoreInstruction obj) {
        try {
            int numConsumed = obj.consumeStack(cpg);
            if (numConsumed == Constants.UNPREDICTABLE) {
                throw new InvalidBytecodeException("Unpredictable stack consumption");
            }

            int index = obj.getIndex();

            // Store values into consecutive locals corresponding
            // to the order in which the values appeared on the stack.
            while (numConsumed-- > 0) {
                Value value = frame.popValue();
                frame.setValue(index++, value);
            }
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    /**
     * Handler for all instructions which load values from a local variable and
     * push them on the stack. Note that two locals are loaded for long and
     * double loads.
     */
    public void handleLoadInstruction(LoadInstruction obj) {
        int numProduced = obj.produceStack(cpg);
        if (numProduced == Constants.UNPREDICTABLE) {
            throw new InvalidBytecodeException("Unpredictable stack production");
        }

        int index = obj.getIndex() + numProduced;

        // Load values from locals in reverse order.
        // This restores them to the stack in a way consistent
        // with visitStoreInstruction().
        while (numProduced-- > 0) {
            Value value = frame.getValue(--index);
            frame.pushValue(value);
        }
    }

    /**
     * This is called to handle any instruction which does not simply copy
     * values between stack slots. The default value is pushed (if the
     * instruction is a stack producer).
     */
    public void handleNormalInstruction(Instruction ins) {
        modelNormalInstruction(ins, getNumWordsConsumed(ins), getNumWordsProduced(ins));
    }

    /**
     * Model the stack for instructions handled by handleNormalInstruction().
     * Subclasses may override to provide analysis-specific behavior.
     *
     * @param ins
     *            the Instruction to model
     * @param numWordsConsumed
     *            number of stack words consumed
     * @param numWordsProduced
     *            number of stack words produced
     */
    public void modelNormalInstruction(Instruction ins, int numWordsConsumed, int numWordsProduced) {
        modelInstruction(ins, numWordsConsumed, numWordsProduced, getDefaultValue());
    }

    /**
     * Primitive to model the stack effect of a single instruction, explicitly
     * specifying the value to be pushed on the stack.
     *
     * @param ins
     *            the Instruction to model
     * @param numWordsConsumed
     *            number of stack words consumed
     * @param numWordsProduced
     *            number of stack words produced
     * @param pushValue
     *            value to push on the stack
     */
    public void modelInstruction(Instruction ins, int numWordsConsumed, int numWordsProduced, Value pushValue) {
        if (frame.getStackDepth() < numWordsConsumed) {
            try {
                throw new IllegalArgumentException(" asked to pop " + numWordsConsumed + " stack elements but only "
                        + frame.getStackDepth() + " elements remain in " + frame + " while processing " + ins);
            } catch (Exception e) {
                throw new IllegalArgumentException(" asked to pop " + numWordsConsumed + " stack elements but only "
                        + frame.getStackDepth() + " elements remain while processing " + ins);
            }
        }
        try {
            while (numWordsConsumed-- > 0) {
                frame.popValue();
            }
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException("Not enough values on the stack", e);
        }

        while (numWordsProduced-- > 0) {
            frame.pushValue(pushValue);
        }
    }

    /*
     * ----------------------------------------------------------------------
     * Visit methods for scalar STORE instructions
     * ----------------------------------------------------------------------
     */

    @Override
    public void visitASTORE(ASTORE obj) {
        handleStoreInstruction(obj);
    }

    @Override
    public void visitDSTORE(DSTORE obj) {
        handleStoreInstruction(obj);
    }

    @Override
    public void visitFSTORE(FSTORE obj) {
        handleStoreInstruction(obj);
    }

    @Override
    public void visitISTORE(ISTORE obj) {
        handleStoreInstruction(obj);
    }

    @Override
    public void visitLSTORE(LSTORE obj) {
        handleStoreInstruction(obj);
    }

    /*
     * ----------------------------------------------------------------------
     * Visit methods for scalar LOAD instructions
     * ----------------------------------------------------------------------
     */

    @Override
    public void visitALOAD(ALOAD obj) {
        handleLoadInstruction(obj);
    }

    @Override
    public void visitDLOAD(DLOAD obj) {
        handleLoadInstruction(obj);
    }

    @Override
    public void visitFLOAD(FLOAD obj) {
        handleLoadInstruction(obj);
    }

    @Override
    public void visitILOAD(ILOAD obj) {
        handleLoadInstruction(obj);
    }

    @Override
    public void visitLLOAD(LLOAD obj) {
        handleLoadInstruction(obj);
    }

    /*
     * ----------------------------------------------------------------------
     * Visit methods for POP, DUP, and SWAP instructions
     * ----------------------------------------------------------------------
     */

    @Override
    public void visitPOP(POP obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitPOP2(POP2 obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDUP(DUP obj) {
        try {
            Value value = frame.popValue();
            frame.pushValue(value);
            frame.pushValue(value);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    @Override
    public void visitDUP_X1(DUP_X1 obj) {
        try {
            Value value1 = frame.popValue();
            Value value2 = frame.popValue();
            frame.pushValue(value1);
            frame.pushValue(value2);
            frame.pushValue(value1);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    @Override
    public void visitDUP_X2(DUP_X2 obj) {
        try {
            Value value1 = frame.popValue();
            Value value2 = frame.popValue();
            Value value3 = frame.popValue();
            frame.pushValue(value1);
            frame.pushValue(value3);
            frame.pushValue(value2);
            frame.pushValue(value1);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    @Override
    public void visitDUP2(DUP2 obj) {
        try {
            Value value1 = frame.popValue();
            Value value2 = frame.popValue();
            frame.pushValue(value2);
            frame.pushValue(value1);
            frame.pushValue(value2);
            frame.pushValue(value1);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    @Override
    public void visitDUP2_X1(DUP2_X1 obj) {
        try {
            Value value1 = frame.popValue();
            Value value2 = frame.popValue();
            Value value3 = frame.popValue();
            frame.pushValue(value2);
            frame.pushValue(value1);
            frame.pushValue(value3);
            frame.pushValue(value2);
            frame.pushValue(value1);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    @Override
    public void visitDUP2_X2(DUP2_X2 obj) {
        try {
            Value value1 = frame.popValue();
            Value value2 = frame.popValue();
            Value value3 = frame.popValue();
            Value value4 = frame.popValue();
            frame.pushValue(value2);
            frame.pushValue(value1);
            frame.pushValue(value4);
            frame.pushValue(value3);
            frame.pushValue(value2);
            frame.pushValue(value1);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    @Override
    public void visitSWAP(SWAP obj) {
        try {
            Value value1 = frame.popValue();
            Value value2 = frame.popValue();
            frame.pushValue(value1);
            frame.pushValue(value2);
        } catch (DataflowAnalysisException e) {
            throw new InvalidBytecodeException(e.toString());
        }
    }

    /*
     * ----------------------------------------------------------------------
     * Illegal bytecodes
     * ----------------------------------------------------------------------
     */

    @Override
    public void visitIMPDEP1(IMPDEP1 obj) {
        illegalBytecode(obj);
    }

    @Override
    public void visitIMPDEP2(IMPDEP2 obj) {
        illegalBytecode(obj);
    }

    @Override
    public void visitBREAKPOINT(BREAKPOINT obj) {
        illegalBytecode(obj);
    }

    /*
     * ----------------------------------------------------------------------
     * Bytecodes that have "default" semantics
     * ----------------------------------------------------------------------
     */

    @Override
    public void visitACONST_NULL(ACONST_NULL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitGETSTATIC(GETSTATIC obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ICMPLT(IF_ICMPLT obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitMONITOREXIT(MONITOREXIT obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFLT(IFLT obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitBASTORE(BASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitCHECKCAST(CHECKCAST obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFCMPG(FCMPG obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitI2F(I2F obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitATHROW(ATHROW obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDCMPL(DCMPL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitARRAYLENGTH(ARRAYLENGTH obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitINVOKESTATIC(INVOKESTATIC obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLCONST(LCONST obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDREM(DREM obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFGE(IFGE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitCALOAD(CALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLASTORE(LASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitI2D(I2D obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDADD(DADD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitINVOKESPECIAL(INVOKESPECIAL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIAND(IAND obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitPUTFIELD(PUTFIELD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDCONST(DCONST obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitNEW(NEW obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFNULL(IFNULL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLSUB(LSUB obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitL2I(L2I obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitISHR(ISHR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitTABLESWITCH(TABLESWITCH obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIINC(IINC obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDRETURN(DRETURN obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDASTORE(DASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIALOAD(IALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDDIV(DDIV obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ICMPGE(IF_ICMPGE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLAND(LAND obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIDIV(IDIV obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLOR(LOR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitCASTORE(CASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFREM(FREM obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLDC(LDC obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitBIPUSH(BIPUSH obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitF2L(F2L obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFMUL(FMUL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitJSR(JSR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFSUB(FSUB obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitSASTORE(SASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitRETURN(RETURN obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDALOAD(DALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitSIPUSH(SIPUSH obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDSUB(DSUB obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitL2F(L2F obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ICMPGT(IF_ICMPGT obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitF2D(F2D obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitI2L(I2L obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ACMPNE(IF_ACMPNE obj) {
        handleNormalInstruction(obj);
    }


    public void visitNULL2Z(NULL2Z obj) {
        handleNormalInstruction(obj);
    }

    public void visitNONNULL2Z(NONNULL2Z obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitI2S(I2S obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFEQ(IFEQ obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIOR(IOR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIREM(IREM obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIASTORE(IASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitNEWARRAY(NEWARRAY obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitINVOKEINTERFACE(INVOKEINTERFACE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitINEG(INEG obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLCMP(LCMP obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitJSR_W(JSR_W obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitMULTIANEWARRAY(MULTIANEWARRAY obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitSALOAD(SALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFNONNULL(IFNONNULL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDMUL(DMUL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFNE(IFNE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ICMPLE(IF_ICMPLE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLDC2_W(LDC2_W obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitGETFIELD(GETFIELD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLADD(LADD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitNOP(NOP obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFALOAD(FALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitINSTANCEOF(INSTANCEOF obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFLE(IFLE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLXOR(LXOR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLRETURN(LRETURN obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFCONST(FCONST obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIUSHR(IUSHR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitBALOAD(BALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ACMPEQ(IF_ACMPEQ obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitMONITORENTER(MONITORENTER obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLSHL(LSHL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDCMPG(DCMPG obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitD2L(D2L obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitL2D(L2D obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitRET(RET obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIFGT(IFGT obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIXOR(IXOR obj) {
        handleNormalInstruction(obj);
    }
    @Override
    public void visitINVOKEDYNAMIC(INVOKEDYNAMIC obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitINVOKEVIRTUAL(INVOKEVIRTUAL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFASTORE(FASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIRETURN(IRETURN obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ICMPNE(IF_ICMPNE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLDIV(LDIV obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitPUTSTATIC(PUTSTATIC obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitAALOAD(AALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitD2I(D2I obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIF_ICMPEQ(IF_ICMPEQ obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitAASTORE(AASTORE obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitARETURN(ARETURN obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFNEG(FNEG obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitGOTO_W(GOTO_W obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitD2F(D2F obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitGOTO(GOTO obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitISUB(ISUB obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitF2I(F2I obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitDNEG(DNEG obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitICONST(ICONST obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFDIV(FDIV obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitI2B(I2B obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLNEG(LNEG obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLREM(LREM obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIMUL(IMUL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitIADD(IADD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLSHR(LSHR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLOOKUPSWITCH(LOOKUPSWITCH obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFCMPL(FCMPL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitI2C(I2C obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLMUL(LMUL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLUSHR(LUSHR obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitISHL(ISHL obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitLALOAD(LALOAD obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitANEWARRAY(ANEWARRAY obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFRETURN(FRETURN obj) {
        handleNormalInstruction(obj);
    }

    @Override
    public void visitFADD(FADD obj) {
        handleNormalInstruction(obj);
    }
}