annotate jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/CompilerToVM.java @ 23392:b3a816d3b844

Backed out changeset: a920338dd4d4
author Doug Simon <doug.simon@oracle.com>
date Thu, 12 May 2016 11:06:49 +0200
parents 19855d029fc0
children 1d4ce2d19e52
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
1 /*
23322
f8178417d018 Expose SharedRuntime::throw_and_post_jvmti_exception to JVMCI compilers.
Roland Schatz <roland.schatz@oracle.com>
parents: 23315
diff changeset
2 * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
4 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
8 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
13 * accompanied this code).
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
14 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
18 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
21 * questions.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
22 */
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
23
22672
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
24 package jdk.vm.ci.hotspot;
20176
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
25
22672
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
26 import static jdk.vm.ci.hotspot.HotSpotJVMCIRuntime.runtime;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
27 import static jdk.vm.ci.inittimer.InitTimer.timer;
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
28
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
29 import java.lang.reflect.Constructor;
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
30 import java.lang.reflect.Method;
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
31
22782
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
32 import jdk.vm.ci.code.BytecodeFrame;
22672
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
33 import jdk.vm.ci.code.InstalledCode;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
34 import jdk.vm.ci.code.InvalidInstalledCodeException;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
35 import jdk.vm.ci.code.TargetDescription;
23392
b3a816d3b844 Backed out changeset: a920338dd4d4
Doug Simon <doug.simon@oracle.com>
parents: 23390
diff changeset
36 import jdk.vm.ci.common.JVMCIError;
22672
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
37 import jdk.vm.ci.hotspotvmconfig.HotSpotVMField;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
38 import jdk.vm.ci.inittimer.InitTimer;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
39 import jdk.vm.ci.meta.JavaType;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
40 import jdk.vm.ci.meta.ResolvedJavaMethod;
1bbd4a7c274b Rename jdk.internal.jvmci to jdk.vm.ci
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22650
diff changeset
41 import jdk.vm.ci.meta.ResolvedJavaType;
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
42 import sun.misc.Unsafe;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
43
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
44 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
45 * Calls from Java into HotSpot. The behavior of all the methods in this class that take a native
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
46 * pointer as an argument (e.g., {@link #getSymbol(long)}) is undefined if the argument does not
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
47 * denote a valid native object.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
48 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
49 final class CompilerToVM {
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
50 /**
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
51 * Initializes the native part of the JVMCI runtime.
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
52 */
22650
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
53 private static native void registerNatives();
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
54
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
55 static {
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
56 initialize();
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
57 }
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
58
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
59 @SuppressWarnings("try")
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
60 private static void initialize() {
22650
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
61 try (InitTimer t = timer("CompilerToVM.registerNatives")) {
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
62 registerNatives();
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
63 }
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
64 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
65
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
66 /**
22582
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
67 * Gets the {@link CompilerToVM} instance associated with the singleton
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
68 * {@link HotSpotJVMCIRuntime} instance.
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
69 */
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
70 public static CompilerToVM compilerToVM() {
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
71 return runtime().getCompilerToVM();
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
72 }
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
73
232c53e17ea0 added CompilerToVM.compilerToVM() for static access to the CompilerToVM instance
Doug Simon <doug.simon@oracle.com>
parents: 22573
diff changeset
74 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
75 * Copies the original bytecode of {@code method} into a new byte array and returns it.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
76 *
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
77 * @return a new byte array containing the original bytecode of {@code method}
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
78 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
79 native byte[] getBytecode(HotSpotResolvedJavaMethodImpl method);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
80
22414
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
81 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
82 * Gets the number of entries in {@code method}'s exception handler table or 0 if it has not
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
83 * exception handler table.
22414
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
84 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
85 native int getExceptionTableLength(HotSpotResolvedJavaMethodImpl method);
14105
f62c770c22be make HotSpotResolvedJavaMethod leaner
twisti
parents: 14104
diff changeset
86
22414
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
87 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
88 * Gets the address of the first entry in {@code method}'s exception handler table.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
89 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
90 * Each entry is a native object described by these fields:
22414
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
91 *
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
92 * <ul>
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
93 * <li>{@link HotSpotVMConfig#exceptionTableElementSize}</li>
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
94 * <li>{@link HotSpotVMConfig#exceptionTableElementStartPcOffset}</li>
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
95 * <li>{@link HotSpotVMConfig#exceptionTableElementEndPcOffset}</li>
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
96 * <li>{@link HotSpotVMConfig#exceptionTableElementHandlerPcOffset}</li>
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
97 * <li>{@link HotSpotVMConfig#exceptionTableElementCatchTypeIndexOffset}
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
98 * </ul>
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
99 *
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
100 * @return 0 if {@code method} has no exception handlers (i.e.
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
101 * {@code getExceptionTableLength(method) == 0})
22414
c1c05278cdf8 renamed exceptionTable* methods in CompilerToVM to getExceptionTable* and added javadoc (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22054
diff changeset
102 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
103 native long getExceptionTableStart(HotSpotResolvedJavaMethodImpl method);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
104
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
105 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
106 * Determines if {@code method} can be inlined. A method may not be inlinable for a number of
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
107 * reasons such as:
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
108 * <ul>
14520
f84115370178 Javadoc fixes
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14172
diff changeset
109 * <li>a CompileOracle directive may prevent inlining or compilation of methods</li>
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
110 * <li>the method may have a bytecode breakpoint set</li>
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
111 * <li>the method may have other bytecode features that require special handling by the VM</li>
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
112 * </ul>
13953
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
113 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
114 native boolean canInlineMethod(HotSpotResolvedJavaMethodImpl method);
13953
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
115
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
116 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
117 * Determines if {@code method} should be inlined at any cost. This could be because:
13953
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
118 * <ul>
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
119 * <li>a CompileOracle directive may forces inlining of this methods</li>
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
120 * <li>an annotation forces inlining of this method</li>
d587baa55dd7 Add shouldBeInlined method to ResolvedJavaMethod, implement it for HotSpot and use it in the inlining phase
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 13819
diff changeset
121 * </ul>
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
122 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
123 native boolean shouldInlineMethod(HotSpotResolvedJavaMethodImpl method);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
124
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
125 /**
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
126 * Used to implement {@link ResolvedJavaType#findUniqueConcreteMethod(ResolvedJavaMethod)}.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
127 *
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
128 * @param method the method on which to base the search
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
129 * @param actualHolderType the best known type of receiver
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
130 * @return the method result or 0 is there is no unique concrete method for {@code method}
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
131 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
132 native HotSpotResolvedJavaMethodImpl findUniqueConcreteMethod(HotSpotResolvedObjectTypeImpl actualHolderType, HotSpotResolvedJavaMethodImpl method);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
133
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
134 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
135 * Gets the implementor for the interface class {@code type}.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
136 *
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
137 * @return the implementor if there is a single implementor, 0 if there is no implementor, or
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
138 * {@code type} itself if there is more than one implementor
7225
31c4d9f9e922 adder better CHA support
Christian Haeubl <haeubl@ssw.jku.at>
parents: 7147
diff changeset
139 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
140 native HotSpotResolvedObjectTypeImpl getImplementor(HotSpotResolvedObjectTypeImpl type);
7225
31c4d9f9e922 adder better CHA support
Christian Haeubl <haeubl@ssw.jku.at>
parents: 7147
diff changeset
141
31c4d9f9e922 adder better CHA support
Christian Haeubl <haeubl@ssw.jku.at>
parents: 7147
diff changeset
142 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
143 * Determines if {@code method} is ignored by security stack walks.
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
144 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
145 native boolean methodIsIgnoredBySecurityStackWalk(HotSpotResolvedJavaMethodImpl method);
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
146
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
147 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
148 * Converts a name to a type.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
149 *
7027
58dbea9fb973 CompilerToVM.lookupType() now fails with an exception if eagerResolve is true and resolution fails
Doug Simon <doug.simon@oracle.com>
parents: 7019
diff changeset
150 * @param name a well formed Java type in {@linkplain JavaType#getName() internal} format
16492
8853b9304083 made type resolution require an accessing class context
Doug Simon <doug.simon@oracle.com>
parents: 16405
diff changeset
151 * @param accessingClass the context of resolution (must not be null)
14117
2b2f0022900f removed unnecessary lookupKlassByName method
Doug Simon <doug.simon@oracle.com>
parents: 14107
diff changeset
152 * @param resolve force resolution to a {@link ResolvedJavaType}. If true, this method will
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7307
diff changeset
153 * either return a {@link ResolvedJavaType} or throw an exception
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
154 * @return the type for {@code name} or 0 if resolution failed and {@code resolve == false}
14117
2b2f0022900f removed unnecessary lookupKlassByName method
Doug Simon <doug.simon@oracle.com>
parents: 14107
diff changeset
155 * @throws LinkageError if {@code resolve == true} and the resolution failed
7027
58dbea9fb973 CompilerToVM.lookupType() now fails with an exception if eagerResolve is true and resolution fails
Doug Simon <doug.simon@oracle.com>
parents: 7019
diff changeset
156 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
157 native HotSpotResolvedObjectTypeImpl lookupType(String name, Class<?> accessingClass, boolean resolve);
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
158
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
159 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
160 * Resolves the entry at index {@code cpi} in {@code constantPool} to an object.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
161 *
22611
5baefb241788 restricted and documented constant pool entry types supported by resolveConstantInPool and resolvePossiblyCachedConstantInPool
Doug Simon <doug.simon@oracle.com>
parents: 22605
diff changeset
162 * The behavior of this method is undefined if {@code cpi} does not denote one of the following
5baefb241788 restricted and documented constant pool entry types supported by resolveConstantInPool and resolvePossiblyCachedConstantInPool
Doug Simon <doug.simon@oracle.com>
parents: 22605
diff changeset
163 * entry types: {@code JVM_CONSTANT_MethodHandle}, {@code JVM_CONSTANT_MethodHandleInError},
5baefb241788 restricted and documented constant pool entry types supported by resolveConstantInPool and resolvePossiblyCachedConstantInPool
Doug Simon <doug.simon@oracle.com>
parents: 22605
diff changeset
164 * {@code JVM_CONSTANT_MethodType} and {@code JVM_CONSTANT_MethodTypeInError}.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
165 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
166 native Object resolveConstantInPool(HotSpotConstantPool constantPool, int cpi);
14529
82c3b54d1f08 added HotSpotConstantPool.JVM_CONSTANT enum
twisti
parents: 14520
diff changeset
167
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
168 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
169 * Resolves the entry at index {@code cpi} in {@code constantPool} to an object, looking in the
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
170 * constant pool cache first.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
171 *
22611
5baefb241788 restricted and documented constant pool entry types supported by resolveConstantInPool and resolvePossiblyCachedConstantInPool
Doug Simon <doug.simon@oracle.com>
parents: 22605
diff changeset
172 * The behavior of this method is undefined if {@code cpi} does not denote a
5baefb241788 restricted and documented constant pool entry types supported by resolveConstantInPool and resolvePossiblyCachedConstantInPool
Doug Simon <doug.simon@oracle.com>
parents: 22605
diff changeset
173 * {@code JVM_CONSTANT_String} entry.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
174 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
175 native Object resolvePossiblyCachedConstantInPool(HotSpotConstantPool constantPool, int cpi);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
176
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
177 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
178 * Gets the {@code JVM_CONSTANT_NameAndType} index from the entry at index {@code cpi} in
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
179 * {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
180 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
181 * The behavior of this method is undefined if {@code cpi} does not denote an entry containing a
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
182 * {@code JVM_CONSTANT_NameAndType} index.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
183 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
184 native int lookupNameAndTypeRefIndexInPool(HotSpotConstantPool constantPool, int cpi);
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
185
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
186 /**
22605
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
187 * Gets the name of the {@code JVM_CONSTANT_NameAndType} entry referenced by another entry
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
188 * denoted by {@code which} in {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
189 *
22605
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
190 * The behavior of this method is undefined if {@code which} does not denote a entry that
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
191 * references a {@code JVM_CONSTANT_NameAndType} entry.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
192 */
22605
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
193 native String lookupNameInPool(HotSpotConstantPool constantPool, int which);
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
194
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
195 /**
22605
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
196 * Gets the signature of the {@code JVM_CONSTANT_NameAndType} entry referenced by another entry
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
197 * denoted by {@code which} in {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
198 *
22605
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
199 * The behavior of this method is undefined if {@code which} does not denote a entry that
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
200 * references a {@code JVM_CONSTANT_NameAndType} entry.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
201 */
22605
f0ec628cb987 fixed javadoc for lookupNameRefInPool and lookupSignatureRefInPool in CompilerToVM and renamed them to lookupNameInPool and lookupSignatureInPool
Doug Simon <doug.simon@oracle.com>
parents: 22597
diff changeset
202 native String lookupSignatureInPool(HotSpotConstantPool constantPool, int which);
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
203
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
204 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
205 * Gets the {@code JVM_CONSTANT_Class} index from the entry at index {@code cpi} in
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
206 * {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
207 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
208 * The behavior of this method is undefined if {@code cpi} does not denote an entry containing a
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
209 * {@code JVM_CONSTANT_Class} index.
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
210 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
211 native int lookupKlassRefIndexInPool(HotSpotConstantPool constantPool, int cpi);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
212
22415
c25188911c49 added javadoc to more methods in CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22414
diff changeset
213 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
214 * Looks up a class denoted by the {@code JVM_CONSTANT_Class} entry at index {@code cpi} in
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
215 * {@code constantPool}. This method does not perform any resolution.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
216 *
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
217 * The behavior of this method is undefined if {@code cpi} does not denote a
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
218 * {@code JVM_CONSTANT_Class} entry.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
219 *
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
220 * @return the resolved class entry or a String otherwise
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
221 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
222 native Object lookupKlassInPool(HotSpotConstantPool constantPool, int cpi);
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
223
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
224 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
225 * Looks up a method denoted by the entry at index {@code cpi} in {@code constantPool}. This
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
226 * method does not perform any resolution.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
227 *
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
228 * The behavior of this method is undefined if {@code cpi} does not denote an entry representing
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
229 * a method.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
230 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
231 * @param opcode the opcode of the instruction for which the lookup is being performed or
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
232 * {@code -1}. If non-negative, then resolution checks specific to the bytecode it
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
233 * denotes are performed if the method is already resolved. Should any of these
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
234 * checks fail, 0 is returned.
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
235 * @return the resolved method entry, 0 otherwise
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
236 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
237 native HotSpotResolvedJavaMethodImpl lookupMethodInPool(HotSpotConstantPool constantPool, int cpi, byte opcode);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
238
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
239 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
240 * Ensures that the type referenced by the specified {@code JVM_CONSTANT_InvokeDynamic} entry at
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
241 * index {@code cpi} in {@code constantPool} is loaded and initialized.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
242 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
243 * The behavior of this method is undefined if {@code cpi} does not denote a
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
244 * {@code JVM_CONSTANT_InvokeDynamic} entry.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
245 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
246 native void resolveInvokeDynamicInPool(HotSpotConstantPool constantPool, int cpi);
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
247
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
248 /**
23345
1c4b6a7f1917 update to Eclipse 4.5.2 format style
Doug Simon <doug.simon@oracle.com>
parents: 23322
diff changeset
249 * Ensures that the type referenced by the entry for a
1c4b6a7f1917 update to Eclipse 4.5.2 format style
Doug Simon <doug.simon@oracle.com>
parents: 23322
diff changeset
250 * <a href="https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-2.html#jvms-2.9">signature
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
251 * polymorphic</a> method at index {@code cpi} in {@code constantPool} is loaded and
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
252 * initialized.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
253 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
254 * The behavior of this method is undefined if {@code cpi} does not denote an entry representing
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
255 * a signature polymorphic method.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
256 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
257 native void resolveInvokeHandleInPool(HotSpotConstantPool constantPool, int cpi);
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
258
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
259 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
260 * Gets the resolved type denoted by the entry at index {@code cpi} in {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
261 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
262 * The behavior of this method is undefined if {@code cpi} does not denote an entry representing
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
263 * a class.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
264 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
265 * @throws LinkageError if resolution failed
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
266 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
267 native HotSpotResolvedObjectTypeImpl resolveTypeInPool(HotSpotConstantPool constantPool, int cpi) throws LinkageError;
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
268
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
269 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
270 * Looks up and attempts to resolve the {@code JVM_CONSTANT_Field} entry at index {@code cpi} in
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
271 * {@code constantPool}. The values returned in {@code info} are:
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
272 *
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
273 * <pre>
14093
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
274 * [(int) flags, // only valid if field is resolved
dd783f0ecf17 refactor CompilerToVM interface
twisti
parents: 14069
diff changeset
275 * (int) offset] // only valid if field is resolved
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
276 * </pre>
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
277 *
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
278 * The behavior of this method is undefined if {@code cpi} does not denote a
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
279 * {@code JVM_CONSTANT_Field} entry.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
280 *
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
281 * @param info an array in which the details of the field are returned
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
282 * @return the type defining the field if resolution is successful, 0 otherwise
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
283 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
284 native HotSpotResolvedObjectTypeImpl resolveFieldInPool(HotSpotConstantPool constantPool, int cpi, byte opcode, long[] info);
14069
2f37b0e442fe removed remaining VMToCompiler calls for allocating Graal API objects
Doug Simon <doug.simon@oracle.com>
parents: 14052
diff changeset
285
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
286 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
287 * Converts {@code cpci} from an index into the cache for {@code constantPool} to an index
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
288 * directly into {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
289 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
290 * The behavior of this method is undefined if {@code ccpi} is an invalid constant pool cache
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
291 * index.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
292 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
293 native int constantPoolRemapInstructionOperandFromCache(HotSpotConstantPool constantPool, int cpci);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
294
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
295 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
296 * Gets the appendix object (if any) associated with the entry at index {@code cpi} in
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
297 * {@code constantPool}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
298 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
299 native Object lookupAppendixInPool(HotSpotConstantPool constantPool, int cpi);
9011
23762f2438b6 support for compiling LambdaForm invocations (invokevirtual instructions that were rewritten to invokehandle instructions)
Doug Simon <doug.simon@oracle.com>
parents: 8945
diff changeset
300
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
301 /**
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
302 * Installs the result of a compilation into the code cache.
15045
0286888f792b fix PrintCompilation formatting and use same time source
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14908
diff changeset
303 *
22496
90c4254dc25a Pass TargetDescription argument to CompilerToVM.installCode.
Roland Schatz <roland.schatz@oracle.com>
parents: 22455
diff changeset
304 * @param target the target where this code should be installed
9669
ed6202820ecf renamed HotSpotCompilationResult to HotSpotCompiledCode and added subclasses HotSpotCompiledNmethod and HotSpotCompiledRuntimeStub
Doug Simon <doug.simon@oracle.com>
parents: 9649
diff changeset
305 * @param compiledCode the result of a compilation
9604
8fe7e6e7b443 javadoc fix
Doug Simon <doug.simon@oracle.com>
parents: 9338
diff changeset
306 * @param code the details of the installed CodeBlob are written to this object
21414
b04f579c803f removed unnecessary CompilerToVM.CodeInstallResult enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21413
diff changeset
307 * @return the outcome of the installation which will be one of
b04f579c803f removed unnecessary CompilerToVM.CodeInstallResult enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21413
diff changeset
308 * {@link HotSpotVMConfig#codeInstallResultOk},
b04f579c803f removed unnecessary CompilerToVM.CodeInstallResult enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21413
diff changeset
309 * {@link HotSpotVMConfig#codeInstallResultCacheFull},
b04f579c803f removed unnecessary CompilerToVM.CodeInstallResult enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21413
diff changeset
310 * {@link HotSpotVMConfig#codeInstallResultCodeTooLarge},
b04f579c803f removed unnecessary CompilerToVM.CodeInstallResult enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21413
diff changeset
311 * {@link HotSpotVMConfig#codeInstallResultDependenciesFailed} or
b04f579c803f removed unnecessary CompilerToVM.CodeInstallResult enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21413
diff changeset
312 * {@link HotSpotVMConfig#codeInstallResultDependenciesInvalid}.
23392
b3a816d3b844 Backed out changeset: a920338dd4d4
Doug Simon <doug.simon@oracle.com>
parents: 23390
diff changeset
313 * @throws JVMCIError if there is something wrong with the compiled code or the associated
b3a816d3b844 Backed out changeset: a920338dd4d4
Doug Simon <doug.simon@oracle.com>
parents: 23390
diff changeset
314 * metadata.
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
315 */
22699
ea58bbafd5b9 Move SpeculationLog implementation to HotSpotSpeculationLog, because it is not useful for other VMs
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22686
diff changeset
316 native int installCode(TargetDescription target, HotSpotCompiledCode compiledCode, InstalledCode code, HotSpotSpeculationLog speculationLog);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
317
13103
c0b0974dd509 moved notification of Graal compilation statistics from VMToCompiler to CompilerToVM
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
318 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
319 * Resets all compilation statistics.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
320 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
321 native void resetCompilationStatistics();
13103
c0b0974dd509 moved notification of Graal compilation statistics from VMToCompiler to CompilerToVM
Doug Simon <doug.simon@oracle.com>
parents: 12559
diff changeset
322
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
323 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
324 * Initializes the fields of {@code config}.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
325 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
326 native void initializeConfiguration(HotSpotVMConfig config);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
327
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
328 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
329 * Resolves the implementation of {@code method} for virtual dispatches on objects of dynamic
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
330 * type {@code exactReceiver}. This resolution process only searches "up" the class hierarchy of
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
331 * {@code exactReceiver}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
332 *
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
333 * @param caller the caller or context type used to perform access checks
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
334 * @return the link-time resolved method (might be abstract) or {@code 0} if it can not be
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
335 * linked
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
336 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
337 native HotSpotResolvedJavaMethodImpl resolveMethod(HotSpotResolvedObjectTypeImpl exactReceiver, HotSpotResolvedJavaMethodImpl method, HotSpotResolvedObjectTypeImpl caller);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
338
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
339 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
340 * Gets the static initializer of {@code type}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
341 *
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
342 * @return 0 if {@code type} has no static initializer
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
343 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
344 native HotSpotResolvedJavaMethodImpl getClassInitializer(HotSpotResolvedObjectTypeImpl type);
9985
e6bd1004082a added HotSpotResolvedObjectType.getMethods() to get all methods of a class including those (such as <clinit>) not normally exposed by Java reflection
Doug Simon <doug.simon@oracle.com>
parents: 9669
diff changeset
345
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
346 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
347 * Determines if {@code type} or any of its currently loaded subclasses overrides
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
348 * {@code Object.finalize()}.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
349 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
350 native boolean hasFinalizableSubclass(HotSpotResolvedObjectTypeImpl type);
9126
bc26f978b0ce HotSpotResolvedObjectType: implement hasFinalizeSubclass() correctly
Bernhard Urban <bernhard.urban@jku.at>
parents: 9108
diff changeset
351
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
352 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
353 * Gets the method corresponding to {@code holder} and slot number {@code slot} (i.e.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
354 * {@link Method#slot} or {@link Constructor#slot}).
6950
41938af2b3d8 modifications to support non-perm-gen changes in HotSpot
Doug Simon <doug.simon@oracle.com>
parents: 6588
diff changeset
355 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
356 native HotSpotResolvedJavaMethodImpl getResolvedJavaMethodAtSlot(Class<?> holder, int slot);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
357
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
358 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
359 * Gets the maximum absolute offset of a PC relative call to {@code address} from any position
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
360 * in the code cache.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
361 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
362 * @param address an address that may be called from any code in the code cache
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
363 * @return -1 if {@code address == 0}
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
364 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
365 native long getMaxCallTargetOffset(long address);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
366
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
367 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
368 * Gets a textual disassembly of {@code codeBlob}.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
369 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
370 * @return a non-zero length string containing a disassembly of {@code codeBlob} or null if
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
371 * {@code codeBlob} could not be disassembled for some reason
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
372 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
373 // The HotSpot disassembler seems not to be thread safe so it's better to synchronize its usage
22643
456800cd1a17 Ensure that not_entrant InstalledCode can still be invalidated
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22636
diff changeset
374 synchronized native String disassembleCodeBlob(InstalledCode installedCode);
7784
016e23829147 added HotSpot implementation of disassembling APIs
Doug Simon <doug.simon@oracle.com>
parents: 7530
diff changeset
375
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
376 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
377 * Gets a stack trace element for {@code method} at bytecode index {@code bci}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
378 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
379 native StackTraceElement getStackTraceElement(HotSpotResolvedJavaMethodImpl method, int bci);
5238
cce31bc56c00 made HotSpotResolvedMethodImpl.toStackTraceElement() call into native code to get an object containing source file info
Doug Simon <doug.simon@oracle.com>
parents: 5129
diff changeset
380
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
381 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
382 * Executes some {@code installedCode} with arguments {@code args}.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
383 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
384 * @return the result of executing {@code installedCode}
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
385 * @throws InvalidInstalledCodeException if {@code installedCode} has been invalidated
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
386 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
387 native Object executeInstalledCode(Object[] args, InstalledCode installedCode) throws InvalidInstalledCodeException;
4993
897b7d18bebc added RiCompiledMethod.execute and the required VM infrastructure
Lukas Stadler <lukas.stadler@jku.at>
parents: 4635
diff changeset
388
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
389 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
390 * Gets the line number table for {@code method}. The line number table is encoded as (bci,
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
391 * source line number) pairs.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
392 *
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
393 * @return the line number table for {@code method} or null if it doesn't have one
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
394 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
395 native long[] getLineNumberTable(HotSpotResolvedJavaMethodImpl method);
7307
dc3e86fd3be1 Introduce cutomization capability for canonicalizer.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7225
diff changeset
396
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
397 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
398 * Gets the number of entries in the local variable table for {@code method}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
399 *
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
400 * @return the number of entries in the local variable table for {@code method}
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
401 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
402 native int getLocalVariableTableLength(HotSpotResolvedJavaMethodImpl method);
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
403
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
404 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
405 * Gets the address of the first entry in the local variable table for {@code method}.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
406 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
407 * Each entry is a native object described by these fields:
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
408 *
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
409 * <ul>
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
410 * <li>{@link HotSpotVMConfig#localVariableTableElementSize}</li>
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
411 * <li>{@link HotSpotVMConfig#localVariableTableElementLengthOffset}</li>
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
412 * <li>{@link HotSpotVMConfig#localVariableTableElementNameCpIndexOffset}</li>
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
413 * <li>{@link HotSpotVMConfig#localVariableTableElementDescriptorCpIndexOffset}</li>
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
414 * <li>{@link HotSpotVMConfig#localVariableTableElementSignatureCpIndexOffset}
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
415 * <li>{@link HotSpotVMConfig#localVariableTableElementSlotOffset}
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
416 * <li>{@link HotSpotVMConfig#localVariableTableElementStartBciOffset}
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
417 * </ul>
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
418 *
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
419 * @return 0 if {@code method} does not have a local variable table
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
420 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
421 native long getLocalVariableTableStart(HotSpotResolvedJavaMethodImpl method);
13306
dfb780080923 moved most CompilerToVM.getLocalVariableTable to Java
twisti
parents: 13305
diff changeset
422
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
423 /**
21413
15a46a918fc1 removed unnecessary HotSpotCodeCache.MarkId enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21119
diff changeset
424 * Reads an object pointer within a VM data structure. That is, any {@link HotSpotVMField} whose
15a46a918fc1 removed unnecessary HotSpotCodeCache.MarkId enum (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21119
diff changeset
425 * {@link HotSpotVMField#type() type} is {@code "oop"} (e.g.,
20176
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
426 * {@code ArrayKlass::_component_mirror}, {@code Klass::_java_mirror},
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
427 * {@code JavaThread::_threadObj}).
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
428 *
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
429 * Note that {@link Unsafe#getObject(Object, long)} cannot be used for this since it does a
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
430 * {@code narrowOop} read if the VM is using compressed oops whereas oops within VM data
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
431 * structures are (currently) always uncompressed.
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
432 *
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
433 * @param address address of an oop field within a VM data structure
03b4fa99eff8 rename CompilerToVM.readUnsafeOop to readUncompressedOop and only use it for reading oops in VM data structures since Unsafe.getObject() can be used for other cases
Doug Simon <doug.simon@oracle.com>
parents: 19782
diff changeset
434 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
435 native Object readUncompressedOop(long address);
18719
6484e5c068c7 Generalize object reading in HotSpotMemoryAccessProvider.
Roland Schatz <roland.schatz@oracle.com>
parents: 18195
diff changeset
436
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
437 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
438 * Determines if {@code method} should not be inlined or compiled.
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
439 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
440 native void doNotInlineOrCompile(HotSpotResolvedJavaMethodImpl method);
12532
9b1cc2628961 Extend the CompilerToVM interface to explicitly avoid compilation and inlining of methods
Matthias Grimmer <grimmer@ssw.jku.at>
parents: 11852
diff changeset
441
8611
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8349
diff changeset
442 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
443 * Invalidates the profiling information for {@code method} and (re)initializes it such that
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
444 * profiling restarts upon its next invocation.
8611
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8349
diff changeset
445 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
446 native void reprofile(HotSpotResolvedJavaMethodImpl method);
8945
7ef66078d837 add basic invokedynamic support
Andreas Woess <andreas.woess@jku.at>
parents: 8614
diff changeset
447
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
448 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
449 * Invalidates {@code installedCode} such that {@link InvalidInstalledCodeException} will be
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
450 * raised the next time {@code installedCode} is executed.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
451 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
452 native void invalidateInstalledCode(InstalledCode installedCode);
11520
7cca436d600b Add isLinked method to ResolvedJavaType
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 10715
diff changeset
453
11852
d7964e96b0b0 move benchmark counters into separate class and make them correct for multithreaded applications
Lukas Stadler <lukas.stadler@jku.at>
parents: 11520
diff changeset
454 /**
21558
d563baeca9df changed uses of Graal terminology to JVMCI (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21556
diff changeset
455 * Collects the current values of all JVMCI benchmark counters, summed up over all threads.
11852
d7964e96b0b0 move benchmark counters into separate class and make them correct for multithreaded applications
Lukas Stadler <lukas.stadler@jku.at>
parents: 11520
diff changeset
456 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
457 native long[] collectCounters();
13630
b1838411e896 Use compile ids assigned by hotspot
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13483
diff changeset
458
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
459 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
460 * Determines if {@code metaspaceMethodData} is mature.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
461 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
462 native boolean isMature(long metaspaceMethodData);
13769
af344056124f Only use mature method datas
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13669
diff changeset
463
13630
b1838411e896 Use compile ids assigned by hotspot
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13483
diff changeset
464 /**
b1838411e896 Use compile ids assigned by hotspot
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13483
diff changeset
465 * Generate a unique id to identify the result of the compile.
b1838411e896 Use compile ids assigned by hotspot
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13483
diff changeset
466 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
467 native int allocateCompileId(HotSpotResolvedJavaMethodImpl method, int entryBCI);
14107
800057208a2c enable C1 + Graal tiered
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14105
diff changeset
468
800057208a2c enable C1 + Graal tiered
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14105
diff changeset
469 /**
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
470 * Determines if {@code method} has OSR compiled code identified by {@code entryBCI} for
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
471 * compilation level {@code level}.
14107
800057208a2c enable C1 + Graal tiered
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14105
diff changeset
472 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
473 native boolean hasCompiledCodeForOSR(HotSpotResolvedJavaMethodImpl method, int entryBCI, int level);
15063
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
474
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
475 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
476 * Gets the value of {@code metaspaceSymbol} as a String.
15968
42eaa579e134 more improvements to runtime initialization:
Doug Simon <doug.simon@oracle.com>
parents: 15843
diff changeset
477 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
478 native String getSymbol(long metaspaceSymbol);
15968
42eaa579e134 more improvements to runtime initialization:
Doug Simon <doug.simon@oracle.com>
parents: 15843
diff changeset
479
42eaa579e134 more improvements to runtime initialization:
Doug Simon <doug.simon@oracle.com>
parents: 15843
diff changeset
480 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
481 * Looks for the next Java stack frame matching an entry in {@code methods}.
15063
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
482 *
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
483 * @param frame the starting point of the search, where {@code null} refers to the topmost frame
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
484 * @param methods the methods to look for, where {@code null} means that any frame is returned
15063
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
485 * @return the frame, or {@code null} if the end of the stack was reached during the search
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
486 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
487 native HotSpotStackFrameReference getNextStackFrame(HotSpotStackFrameReference frame, ResolvedJavaMethod[] methods, int initialSkip);
15063
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
488
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
489 /**
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
490 * Materializes all virtual objects within {@code stackFrame} updates its locals.
15063
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
491 *
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
492 * @param invalidate if {@code true}, the compiled method for the stack frame will be
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
493 * invalidated.
36e1a11a72b3 new StackIntrospection interface to allow access to stack contents
Lukas Stadler <lukas.stadler@oracle.com>
parents: 15059
diff changeset
494 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
495 native void materializeVirtualObjects(HotSpotStackFrameReference stackFrame, boolean invalidate);
15205
affef8631cf4 Add eager resolving for indy call sites
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 15193
diff changeset
496
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
497 /**
22455
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
498 * Gets the v-table index for interface method {@code method} in the receiver {@code type} or
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
499 * {@link HotSpotVMConfig#invalidVtableIndex} if {@code method} is not in {@code type}'s
7ad03bf3d4a9 renames related to using metaspace wrappers instead of raw metaspace values
Doug Simon <doug.simon@oracle.com>
parents: 22454
diff changeset
500 * v-table.
22583
c9f8eec77163 CompilerToVm.getVtableIndexForInterfaceMethod must not allow non-interface methods (JDK-8136659)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 22582
diff changeset
501 *
c9f8eec77163 CompilerToVm.getVtableIndexForInterfaceMethod must not allow non-interface methods (JDK-8136659)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 22582
diff changeset
502 * @throws InternalError if {@code type} is an interface or {@code method} is not held by an
22584
f94fd2b4f794 CompilerToVM.getVtableIndexForInterfaceMethod check if receiver class is initialized (JDK-8136655)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 22583
diff changeset
503 * interface or class represented by {@code type} is not initialized
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
504 */
22583
c9f8eec77163 CompilerToVm.getVtableIndexForInterfaceMethod must not allow non-interface methods (JDK-8136659)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 22582
diff changeset
505 native int getVtableIndexForInterfaceMethod(HotSpotResolvedObjectTypeImpl type, HotSpotResolvedJavaMethodImpl method);
16243
fb77eab05bd3 Respect the VM's wish to record non-safepoint debug info
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 16184
diff changeset
506
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
507 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
508 * Determines if debug info should also be emitted at non-safepoint locations.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
509 */
22597
99b7154e88c7 Avoid public native methods in CompilerToVM class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22584
diff changeset
510
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
511 native boolean shouldDebugNonSafepoints();
16405
9bfc4247262f send log output to native tty
Lukas Stadler <lukas.stadler@oracle.com>
parents: 16243
diff changeset
512
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
513 /**
22650
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
514 * Writes {@code length} bytes from {@code bytes} starting at offset {@code offset} to the
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
515 * HotSpot's log stream.
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
516 *
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
517 * @exception NullPointerException if {@code bytes == null}
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
518 * @exception IndexOutOfBoundsException if copying would cause access of data outside array
939d5da65929 reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 22648
diff changeset
519 * bounds
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
520 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
521 native void writeDebugOutput(byte[] bytes, int offset, int length);
21119
294ed4ce1fa0 PrintStreamOption: also forward flushes to the VM
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 20176
diff changeset
522
22420
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
523 /**
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
524 * Flush HotSpot's log stream.
e3d9e0f9b50c cleaned up and added more javadoc to CompilerToVM (JDK-8133194)
Doug Simon <doug.simon@oracle.com>
parents: 22415
diff changeset
525 */
22636
1ec4129907b3 made CompilerToVM package-private
Doug Simon <doug.simon@oracle.com>
parents: 22635
diff changeset
526 native void flushDebugOutput();
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
527
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
528 /**
22647
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
529 * Read a HotSpot Method* value from the memory location described by {@code base} plus
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
530 * {@code displacement} and return the {@link HotSpotResolvedJavaMethodImpl} wrapping it. This
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
531 * method does no checking that the memory location actually contains a valid pointer and may
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
532 * crash the VM if an invalid location is provided. If the {@code base} is null then
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
533 * {@code displacement} is used by itself. If {@code base} is a
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
534 * {@link HotSpotResolvedJavaMethodImpl}, {@link HotSpotConstantPool} or
22617
e8f298580f99 Correct javadoc for CompilerToVM
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22611
diff changeset
535 * {@link HotSpotResolvedObjectTypeImpl} then the metaspace pointer is fetched from that object
22644
cefe66df3455 Update CompilerToVM javadoc
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22643
diff changeset
536 * and added to {@code displacement}. Any other non-null object type causes an
cefe66df3455 Update CompilerToVM javadoc
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22643
diff changeset
537 * {@link IllegalArgumentException} to be thrown.
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
538 *
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
539 * @param base an object to read from or null
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
540 * @param displacement
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
541 * @return null or the resolved method for this location
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
542 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
543 native HotSpotResolvedJavaMethodImpl getResolvedJavaMethod(Object base, long displacement);
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
544
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
545 /**
22647
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
546 * Read a HotSpot ConstantPool* value from the memory location described by {@code base} plus
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
547 * {@code displacement} and return the {@link HotSpotConstantPool} wrapping it. This method does
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
548 * no checking that the memory location actually contains a valid pointer and may crash the VM
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
549 * if an invalid location is provided. If the {@code base} is null then {@code displacement} is
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
550 * used by itself. If {@code base} is a {@link HotSpotResolvedJavaMethodImpl},
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
551 * {@link HotSpotConstantPool} or {@link HotSpotResolvedObjectTypeImpl} then the metaspace
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
552 * pointer is fetched from that object and added to {@code displacement}. Any other non-null
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
553 * object type causes an {@link IllegalArgumentException} to be thrown.
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
554 *
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
555 * @param base an object to read from or null
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
556 * @param displacement
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
557 * @return null or the resolved method for this location
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
558 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
559 native HotSpotConstantPool getConstantPool(Object base, long displacement);
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
560
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
561 /**
22647
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
562 * Read a HotSpot Klass* value from the memory location described by {@code base} plus
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
563 * {@code displacement} and return the {@link HotSpotResolvedObjectTypeImpl} wrapping it. This
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
564 * method does no checking that the memory location actually contains a valid pointer and may
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
565 * crash the VM if an invalid location is provided. If the {@code base} is null then
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
566 * {@code displacement} is used by itself. If {@code base} is a
a2af5a344c65 Expand javadoc for getResolvedJavaMethod
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22644
diff changeset
567 * {@link HotSpotResolvedJavaMethodImpl}, {@link HotSpotConstantPool} or
22617
e8f298580f99 Correct javadoc for CompilerToVM
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22611
diff changeset
568 * {@link HotSpotResolvedObjectTypeImpl} then the metaspace pointer is fetched from that object
22644
cefe66df3455 Update CompilerToVM javadoc
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22643
diff changeset
569 * and added to {@code displacement}. Any other non-null object type causes an
cefe66df3455 Update CompilerToVM javadoc
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22643
diff changeset
570 * {@link IllegalArgumentException} to be thrown.
22454
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
571 *
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
572 * @param base an object to read from or null
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
573 * @param displacement
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
574 * @param compressed true if the location contains a compressed Klass*
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
575 * @return null or the resolved method for this location
76af33d4d504 Make jvmci redefinition safe
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22420
diff changeset
576 */
22547
10a9e989850e made CompilertoVM a final concrete class and removed CompilerToVMImpl (GRAAL-1255)
Doug Simon <doug.simon@oracle.com>
parents: 22531
diff changeset
577 native HotSpotResolvedObjectTypeImpl getResolvedJavaType(Object base, long displacement, boolean compressed);
22573
be44a5efeaff HotSpotMethodData must handle profile data when TypeProfileLevel is non-zero
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22547
diff changeset
578
be44a5efeaff HotSpotMethodData must handle profile data when TypeProfileLevel is non-zero
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22547
diff changeset
579 /**
22686
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
580 * Return the size of the HotSpot ProfileData* pointed at by {@code position}. If
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
581 * {@code position} is outside the space of the MethodData then an
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
582 * {@link IllegalArgumentException} is thrown. A {@code position} inside the MethodData but that
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
583 * isn't pointing at a valid ProfileData will crash the VM.
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
584 *
22573
be44a5efeaff HotSpotMethodData must handle profile data when TypeProfileLevel is non-zero
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22547
diff changeset
585 * @param metaspaceMethodData
be44a5efeaff HotSpotMethodData must handle profile data when TypeProfileLevel is non-zero
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22547
diff changeset
586 * @param position
22686
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
587 * @return the size of the ProfileData item pointed at by {@code position}
2408f05d0ae7 Update javadoc for methodDataProfileDataSize
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22672
diff changeset
588 * @throws IllegalArgumentException if an out of range position is given
22573
be44a5efeaff HotSpotMethodData must handle profile data when TypeProfileLevel is non-zero
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22547
diff changeset
589 */
be44a5efeaff HotSpotMethodData must handle profile data when TypeProfileLevel is non-zero
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22547
diff changeset
590 native int methodDataProfileDataSize(long metaspaceMethodData, int position);
22782
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
591
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
592 /**
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
593 * Return the amount of native stack required for the interpreter frames represented by
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
594 * {@code frame}. This is used when emitting the stack banging code to ensure that there is
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
595 * enough space for the frames during deoptimization.
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
596 *
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
597 * @param frame
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
598 * @return the number of bytes required for deoptimization of this frame state
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
599 */
bf8a5a6861b1 Add CompilerToVM.interpreterFrameSize to support stack banging for deopt
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22769
diff changeset
600 native int interpreterFrameSize(BytecodeFrame frame);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
601 }