Skip to content

Commit 57bb0e6

Browse files
committedFeb 17, 2021
complete impl for frames hidden from JVMTI while in VTMT
1 parent 1241a7b commit 57bb0e6

File tree

7 files changed

+74
-7
lines changed

7 files changed

+74
-7
lines changed
 

‎src/hotspot/share/classfile/classFileParser.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,7 @@ class AnnotationCollector : public ResourceObj{
10881088
_method_ForceInline,
10891089
_method_DontInline,
10901090
_method_ChangesCurrentThread,
1091+
_method_JvmtiMountTransition,
10911092
_method_InjectedProfile,
10921093
_method_LambdaForm_Compiled,
10931094
_method_Hidden,
@@ -2114,6 +2115,11 @@ AnnotationCollector::annotation_index(const ClassLoaderData* loader_data,
21142115
if (!privileged) break; // only allow in privileged code
21152116
return _method_ChangesCurrentThread;
21162117
}
2118+
case VM_SYMBOL_ENUM_NAME(jdk_internal_vm_annotation_JvmtiMountTransition_signature): {
2119+
if (_location != _in_method) break; // only allow for methods
2120+
if (!privileged) break; // only allow in privileged code
2121+
return _method_JvmtiMountTransition;
2122+
}
21172123
case VM_SYMBOL_ENUM_NAME(java_lang_invoke_InjectedProfile_signature): {
21182124
if (_location != _in_method) break; // only allow for methods
21192125
if (!privileged) break; // only allow in privileged code
@@ -2192,6 +2198,8 @@ void MethodAnnotationCollector::apply_to(const methodHandle& m) {
21922198
m->set_dont_inline(true);
21932199
if (has_annotation(_method_ChangesCurrentThread))
21942200
m->set_changes_current_thread(true);
2201+
if (has_annotation(_method_JvmtiMountTransition))
2202+
m->set_jvmti_mount_transition(true);
21952203
if (has_annotation(_method_InjectedProfile))
21962204
m->set_has_injected_profile(true);
21972205
if (has_annotation(_method_LambdaForm_Compiled) && m->intrinsic_id() == vmIntrinsics::_none)

‎src/hotspot/share/classfile/vmSymbols.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@
317317
template(jdk_internal_vm_annotation_Stable_signature, "Ljdk/internal/vm/annotation/Stable;") \
318318
\
319319
template(jdk_internal_vm_annotation_ChangesCurrentThread_signature, "Ljdk/internal/vm/annotation/ChangesCurrentThread;") \
320+
template(jdk_internal_vm_annotation_JvmtiMountTransition_signature, "Ljdk/internal/vm/annotation/JvmtiMountTransition;") \
320321
\
321322
/* Support for JSR 292 & invokedynamic (JDK 1.7 and above) */ \
322323
template(java_lang_invoke_CallSite, "java/lang/invoke/CallSite") \

‎src/hotspot/share/oops/method.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class Method : public Metadata {
9494
_reserved_stack_access = 1 << 7,
9595
_scoped = 1 << 8,
9696
_changes_current_thread = 1 << 9,
97+
_jvmti_mount_transition = 1 << 10,
9798
};
9899
mutable u2 _flags;
99100

@@ -891,6 +892,13 @@ class Method : public Metadata {
891892
_flags = x ? (_flags | _changes_current_thread) : (_flags & ~_changes_current_thread);
892893
}
893894

895+
bool jvmti_mount_transition() {
896+
return (_flags & _jvmti_mount_transition) != 0;
897+
}
898+
void set_jvmti_mount_transition(bool x) {
899+
_flags = x ? (_flags | _jvmti_mount_transition) : (_flags & ~_jvmti_mount_transition);
900+
}
901+
894902
bool is_hidden() const {
895903
return (_flags & _hidden) != 0;
896904
}

‎src/hotspot/share/prims/jvmtiEnvBase.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -612,9 +612,10 @@ JvmtiEnvBase::get_field_descriptor(Klass* k, jfieldID field, fieldDescriptor* fd
612612

613613
javaVFrame*
614614
JvmtiEnvBase::skip_hidden_frames(javaVFrame* jvf) {
615-
// find the top-most jvf with an annotated method
615+
// find jvf with a method annotated with @JvmtiMountTransition
616616
for ( ; jvf != NULL; jvf = jvf->java_sender()) {
617-
if (jvf->method()->changes_current_thread()) {
617+
if (jvf->method()->jvmti_mount_transition()) {
618+
jvf = jvf->java_sender(); // skip annotated method
618619
break;
619620
}
620621
}

‎src/hotspot/share/prims/jvmtiExport.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -1812,12 +1812,12 @@ void JvmtiExport::post_method_entry(JavaThread *thread, Method* method, frame cu
18121812
// for any thread that actually wants method entry, interp_only_mode is set
18131813
return;
18141814
}
1815+
if (mh->jvmti_mount_transition() || thread->is_in_VTMT()) {
1816+
return; // no events should be posted if thread is in a VTMT transition
1817+
}
18151818

18161819
state->incr_cur_stack_depth();
18171820

1818-
if (thread->is_in_VTMT()) {
1819-
return; // no events should be posted if thread is in a VTMT transition
1820-
}
18211821
if (state->is_enabled(JVMTI_EVENT_METHOD_ENTRY)) {
18221822
JvmtiEnvThreadStateIterator it(state);
18231823
for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
@@ -1849,8 +1849,7 @@ void JvmtiExport::post_method_exit(JavaThread* thread, Method* method, frame cur
18491849
// for any thread that actually wants method exit, interp_only_mode is set
18501850
return;
18511851
}
1852-
if (thread->is_in_VTMT()) {
1853-
state->decr_cur_stack_depth();
1852+
if (mh->jvmti_mount_transition() || thread->is_in_VTMT()) {
18541853
return; // no events should be posted if thread is in a VTMT transition
18551854
}
18561855

‎src/java.base/share/classes/java/lang/VirtualThread.java

+10
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
import jdk.internal.misc.Unsafe;
5252
import jdk.internal.vm.ThreadDumper;
5353
import jdk.internal.vm.annotation.ChangesCurrentThread;
54+
import jdk.internal.vm.annotation.JvmtiMountTransition;
5455
import sun.nio.ch.Interruptible;
5556
import sun.security.action.GetPropertyAction;
5657
import static java.util.concurrent.TimeUnit.*;
@@ -920,10 +921,19 @@ private boolean getAndSetParkPermit(boolean newValue) {
920921
// -- JVM TI support --
921922

922923
private static volatile boolean notifyJvmtiEvents; // set by VM
924+
925+
@JvmtiMountTransition
923926
private native void notifyJvmtiMountBegin(boolean firstMount);
927+
928+
@JvmtiMountTransition
924929
private native void notifyJvmtiMountEnd(boolean firstMount);
930+
931+
@JvmtiMountTransition
925932
private native void notifyJvmtiUnmountBegin();
933+
934+
@JvmtiMountTransition
926935
private native void notifyJvmtiUnmountEnd();
936+
927937
private native void notifyJvmtiTerminated();
928938
private static native void registerNatives();
929939
static {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation. Oracle designates this
8+
* particular file as subject to the "Classpath" exception as provided
9+
* by Oracle in the LICENSE file that accompanied this code.
10+
*
11+
* This code is distributed in the hope that it will be useful, but WITHOUT
12+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14+
* version 2 for more details (a copy is included in the LICENSE file that
15+
* accompanied this code).
16+
*
17+
* You should have received a copy of the GNU General Public License version
18+
* 2 along with this work; if not, write to the Free Software Foundation,
19+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20+
*
21+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22+
* or visit www.oracle.com if you need additional information or have any
23+
* questions.
24+
*/
25+
26+
package jdk.internal.vm.annotation;
27+
28+
import java.lang.annotation.*;
29+
30+
/**
31+
* A method is annotated as "jvmti mount transition" if it starts
32+
* or ends virtual thread mount transition (VTMT).
33+
*
34+
* @implNote
35+
* This annotation is only used for VirtualThread methods.
36+
*/
37+
@Target({ElementType.METHOD})
38+
@Retention(RetentionPolicy.RUNTIME)
39+
public @interface JvmtiMountTransition {
40+
}

0 commit comments

Comments
 (0)
Please sign in to comment.