mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8262377: Parallel class resolution loses constant pool error
Co-authored-by: Vladimir Ivanov <vlivanov@openjdk.org> Co-authored-by: Coleen Phillimore <coleenp@openjdk.org> Co-authored-by: Ioi Lam <iklam@openjdk.org> Reviewed-by: dholmes, iklam, hseigel, kvn
This commit is contained in:
parent
b482733f94
commit
57f16f9fe5
14 changed files with 361 additions and 109 deletions
|
@ -499,6 +499,7 @@ class java_lang_Throwable: AllStatic {
|
|||
static int _detailMessage_offset;
|
||||
static int _stackTrace_offset;
|
||||
static int _depth_offset;
|
||||
static int _cause_offset;
|
||||
static int _static_unassigned_stacktrace_offset;
|
||||
|
||||
// StackTrace (programmatic access, new since 1.4)
|
||||
|
@ -516,6 +517,7 @@ class java_lang_Throwable: AllStatic {
|
|||
static int get_detailMessage_offset() { CHECK_INIT(_detailMessage_offset); }
|
||||
// Message
|
||||
static oop message(oop throwable);
|
||||
static oop cause(oop throwable);
|
||||
static void set_message(oop throwable, oop value);
|
||||
static Symbol* detail_message(oop throwable);
|
||||
static void print_stack_element(outputStream *st, Method* method, int bci);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue