mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8139170: JVMCI refresh
Reviewed-by: kvn
This commit is contained in:
parent
a4e16dd190
commit
a38ea495d6
246 changed files with 4445 additions and 2901 deletions
|
@ -52,7 +52,7 @@ import java.util.List;
|
|||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethodImpl;
|
||||
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
|
||||
import jdk.vm.ci.meta.ConstantPool;
|
||||
import jdk.test.lib.Utils;
|
||||
|
||||
|
@ -76,7 +76,7 @@ public class GetSymbolTest {
|
|||
} catch (NoSuchMethodException e) {
|
||||
throw new Error("TEST BUG: can't find test method", e);
|
||||
}
|
||||
HotSpotResolvedJavaMethodImpl resolvedMethod
|
||||
HotSpotResolvedJavaMethod resolvedMethod
|
||||
= CTVMUtilities.getResolvedMethod(aClass, method);
|
||||
List<String> symbols;
|
||||
try {
|
||||
|
@ -101,7 +101,7 @@ public class GetSymbolTest {
|
|||
}
|
||||
}
|
||||
|
||||
private List<String> getSymbols(HotSpotResolvedJavaMethodImpl
|
||||
private List<String> getSymbols(HotSpotResolvedJavaMethod
|
||||
metaspaceMethod) throws ReflectiveOperationException {
|
||||
List<String> symbols = new ArrayList<>();
|
||||
ConstantPool pool = metaspaceMethod.getConstantPool();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue