mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8169389: Use a bitmap to control StackTraceElement::toString format and save footprint
Reviewed-by: dfuchs, mchung
This commit is contained in:
parent
0870c6c734
commit
95b2647798
2 changed files with 6 additions and 6 deletions
|
@ -1293,7 +1293,7 @@ class java_lang_System : AllStatic {
|
|||
class java_lang_StackTraceElement: AllStatic {
|
||||
private:
|
||||
enum {
|
||||
hc_classOrLoaderModuleClassName_offset = 0,
|
||||
hc_declaringClassObject_offset = 0,
|
||||
hc_classLoaderName_offset = 1,
|
||||
hc_moduleName_offset = 2,
|
||||
hc_moduleVersion_offset = 3,
|
||||
|
@ -1303,7 +1303,7 @@ class java_lang_StackTraceElement: AllStatic {
|
|||
hc_lineNumber_offset = 7
|
||||
};
|
||||
|
||||
static int classOrLoaderModuleClassName_offset;
|
||||
static int declaringClassObject_offset;
|
||||
static int classLoaderName_offset;
|
||||
static int moduleName_offset;
|
||||
static int moduleVersion_offset;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue