mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8143911: Reintegrate JEP 259: Stack-Walking API
Co-authored-by: Brent Christian <brent.christian@oracle.com> Co-authored-by: Daniel Fuchs <daniel.fuchs@oracle.com> Co-authored-by: Hamlin Li <huaming.li@oracle.com> Reviewed-by: coleenp, dfuchs, bchristi, psandoz, sspitsyn
This commit is contained in:
parent
7171a533ff
commit
2b732b223e
14 changed files with 1080 additions and 58 deletions
|
@ -311,6 +311,22 @@
|
|||
/* Support for JVMCI */ \
|
||||
JVMCI_VM_SYMBOLS_DO(template, do_alias) \
|
||||
\
|
||||
template(java_lang_StackWalker, "java/lang/StackWalker") \
|
||||
template(java_lang_StackFrameInfo, "java/lang/StackFrameInfo") \
|
||||
template(java_lang_LiveStackFrameInfo, "java/lang/LiveStackFrameInfo") \
|
||||
template(java_lang_StackStreamFactory_AbstractStackWalker, "java/lang/StackStreamFactory$AbstractStackWalker") \
|
||||
template(doStackWalk_name, "doStackWalk") \
|
||||
template(doStackWalk_signature, "(JIIII)Ljava/lang/Object;") \
|
||||
template(asPrimitive_name, "asPrimitive") \
|
||||
template(asPrimitive_int_signature, "(I)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_long_signature, "(J)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_short_signature, "(S)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_byte_signature, "(B)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_char_signature, "(C)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_float_signature, "(F)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_double_signature, "(D)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
template(asPrimitive_boolean_signature, "(Z)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
|
||||
\
|
||||
/* common method and field names */ \
|
||||
template(object_initializer_name, "<init>") \
|
||||
template(class_initializer_name, "<clinit>") \
|
||||
|
@ -411,6 +427,18 @@
|
|||
template(append_name, "append") \
|
||||
template(klass_name, "klass") \
|
||||
template(array_klass_name, "array_klass") \
|
||||
template(declaringClass_name, "declaringClass") \
|
||||
template(memberName_name, "memberName") \
|
||||
template(mid_name, "mid") \
|
||||
template(cpref_name, "cpref") \
|
||||
template(version_name, "version") \
|
||||
template(bci_name, "bci") \
|
||||
template(methodName_name, "methodName") \
|
||||
template(fileName_name, "fileName") \
|
||||
template(lineNumber_name, "lineNumber") \
|
||||
template(monitors_name, "monitors") \
|
||||
template(locals_name, "locals") \
|
||||
template(operands_name, "operands") \
|
||||
template(oop_size_name, "oop_size") \
|
||||
template(static_oop_field_count_name, "static_oop_field_count") \
|
||||
template(protection_domain_name, "protection_domain") \
|
||||
|
@ -515,6 +543,7 @@
|
|||
template(class_array_signature, "[Ljava/lang/Class;") \
|
||||
template(classloader_signature, "Ljava/lang/ClassLoader;") \
|
||||
template(object_signature, "Ljava/lang/Object;") \
|
||||
template(object_array_signature, "[Ljava/lang/Object;") \
|
||||
template(class_signature, "Ljava/lang/Class;") \
|
||||
template(string_signature, "Ljava/lang/String;") \
|
||||
template(reference_signature, "Ljava/lang/ref/Reference;") \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue