1
1
/*
2
- * Copyright (c) 2002, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2002, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
27
27
import sun .jvm .hotspot .oops .*;
28
28
import sun .jvm .hotspot .interpreter .*;
29
29
import sun .jvm .hotspot .utilities .*;
30
- import sun .jvm .hotspot .debugger .*;
31
30
import sun .jvm .hotspot .runtime .*;
32
31
import java .security .AccessController ;
33
32
import java .security .PrivilegedAction ;
34
- import java .security .AccessControlContext ;
35
- import java .security .PrivilegedExceptionAction ;
36
- import java .security .PrivilegedActionException ;
37
33
38
34
public class ByteCodeRewriter
39
35
{
@@ -92,7 +88,7 @@ protected short getConstantPoolIndex(int rawcode, int bci) {
92
88
case 2 : cpCacheIndex = method .getBytecodeByteArg (bci ); break ;
93
89
case 3 : cpCacheIndex = method .getBytecodeShortArg (bci ); break ;
94
90
case 5 :
95
- if (fmt .indexOf ("__" ) >= 0 )
91
+ if (fmt .contains ("__" ))
96
92
cpCacheIndex = method .getBytecodeShortArg (bci );
97
93
else
98
94
cpCacheIndex = method .getBytecodeIntArg (bci );
@@ -102,15 +98,15 @@ protected short getConstantPoolIndex(int rawcode, int bci) {
102
98
103
99
if (cpCache == null ) {
104
100
return (short ) cpCacheIndex ;
105
- } else if (fmt .indexOf ("JJJJ" ) >= 0 ) {
101
+ } else if (fmt .contains ("JJJJ" )) {
106
102
// Invokedynamic require special handling
107
103
cpCacheIndex = ~cpCacheIndex ;
108
104
cpCacheIndex = bytes .swapInt (cpCacheIndex );
109
105
return (short ) cpCache .getEntryAt (cpCacheIndex ).getConstantPoolIndex ();
110
- } else if (fmt .indexOf ("JJ" ) >= 0 ) {
106
+ } else if (fmt .contains ("JJ" )) {
111
107
// change byte-ordering and go via cache
112
108
return (short ) cpCache .getEntryAt ((int ) (0xFFFF & bytes .swapShort ((short )cpCacheIndex ))).getConstantPoolIndex ();
113
- } else if (fmt .indexOf ("j" ) >= 0 ) {
109
+ } else if (fmt .contains ("j" )) {
114
110
// go via cache
115
111
return (short ) cpCache .getEntryAt ((int ) (0xFF & cpCacheIndex )).getConstantPoolIndex ();
116
112
} else {
0 commit comments