83
83
#include " runtime/javaThread.inline.hpp"
84
84
#include " runtime/mutexLocker.hpp"
85
85
#include " runtime/orderAccess.hpp"
86
+ #include " runtime/os.inline.hpp"
86
87
#include " runtime/reflectionUtils.hpp"
87
88
#include " runtime/threads.hpp"
88
89
#include " services/classLoadingService.hpp"
@@ -3786,10 +3787,19 @@ const char* InstanceKlass::internal_name() const {
3786
3787
void InstanceKlass::print_class_load_logging (ClassLoaderData* loader_data,
3787
3788
const ModuleEntry* module_entry,
3788
3789
const ClassFileStream* cfs) const {
3790
+
3789
3791
if (ClassListWriter::is_enabled ()) {
3790
3792
ClassListWriter::write (this , cfs);
3791
3793
}
3792
3794
3795
+ print_class_load_helper (loader_data, module_entry, cfs);
3796
+ print_class_load_cause_logging ();
3797
+ }
3798
+
3799
+ void InstanceKlass::print_class_load_helper (ClassLoaderData* loader_data,
3800
+ const ModuleEntry* module_entry,
3801
+ const ClassFileStream* cfs) const {
3802
+
3793
3803
if (!log_is_enabled (Info, class , load)) {
3794
3804
return ;
3795
3805
}
@@ -3847,15 +3857,15 @@ void InstanceKlass::print_class_load_logging(ClassLoaderData* loader_data,
3847
3857
3848
3858
// Class hierarchy info
3849
3859
debug_stream.print (" klass: " PTR_FORMAT " super: " PTR_FORMAT,
3850
- p2i (this ), p2i (superklass ()));
3860
+ p2i (this ), p2i (superklass ()));
3851
3861
3852
3862
// Interfaces
3853
3863
if (local_interfaces () != nullptr && local_interfaces ()->length () > 0 ) {
3854
3864
debug_stream.print (" interfaces:" );
3855
3865
int length = local_interfaces ()->length ();
3856
3866
for (int i = 0 ; i < length; i++) {
3857
3867
debug_stream.print (" " PTR_FORMAT,
3858
- p2i (InstanceKlass::cast (local_interfaces ()->at (i))));
3868
+ p2i (InstanceKlass::cast (local_interfaces ()->at (i))));
3859
3869
}
3860
3870
}
3861
3871
@@ -3867,15 +3877,75 @@ void InstanceKlass::print_class_load_logging(ClassLoaderData* loader_data,
3867
3877
// Classfile checksum
3868
3878
if (cfs) {
3869
3879
debug_stream.print (" bytes: %d checksum: %08x" ,
3870
- cfs->length (),
3871
- ClassLoader::crc32 (0 , (const char *)cfs->buffer (),
3872
- cfs->length ()));
3880
+ cfs->length (),
3881
+ ClassLoader::crc32 (0 , (const char *)cfs->buffer (),
3882
+ cfs->length ()));
3873
3883
}
3874
3884
3875
3885
msg.debug (" %s" , debug_stream.as_string ());
3876
3886
}
3877
3887
}
3878
3888
3889
+ void InstanceKlass::print_class_load_cause_logging () const {
3890
+ bool log_cause_native = log_is_enabled (Info, class , load, cause, native);
3891
+ if (log_cause_native || log_is_enabled (Info, class , load, cause)) {
3892
+ JavaThread* current = JavaThread::current ();
3893
+ ResourceMark rm (current);
3894
+ const char * name = external_name ();
3895
+
3896
+ if (LogClassLoadingCauseFor == nullptr ||
3897
+ (strcmp (" *" , LogClassLoadingCauseFor) != 0 &&
3898
+ strstr (name, LogClassLoadingCauseFor) == nullptr )) {
3899
+ return ;
3900
+ }
3901
+
3902
+ // Log Java stack first
3903
+ {
3904
+ LogMessage (class , load, cause) msg;
3905
+ NonInterleavingLogStream info_stream{LogLevelType::Info, msg};
3906
+
3907
+ info_stream.print_cr (" Java stack when loading %s:" , name);
3908
+ current->print_stack_on (&info_stream);
3909
+ }
3910
+
3911
+ // Log native stack second
3912
+ if (log_cause_native) {
3913
+ // Log to string first so that lines can be indented
3914
+ stringStream stack_stream;
3915
+ char buf[O_BUFLEN];
3916
+ address lastpc = nullptr ;
3917
+ if (os::platform_print_native_stack (&stack_stream, nullptr , buf, O_BUFLEN, lastpc)) {
3918
+ // We have printed the native stack in platform-specific code,
3919
+ // so nothing else to do in this case.
3920
+ } else {
3921
+ frame f = os::current_frame ();
3922
+ VMError::print_native_stack (&stack_stream, f, current, true /* print_source_info */ ,
3923
+ -1 /* max stack_stream */ , buf, O_BUFLEN);
3924
+ }
3925
+
3926
+ LogMessage (class , load, cause, native) msg;
3927
+ NonInterleavingLogStream info_stream{LogLevelType::Info, msg};
3928
+ info_stream.print_cr (" Native stack when loading %s:" , name);
3929
+
3930
+ // Print each native stack line to the log
3931
+ int size = (int ) stack_stream.size ();
3932
+ char * stack = stack_stream.as_string ();
3933
+ char * stack_end = stack + size;
3934
+ char * line_start = stack;
3935
+ for (char * p = stack; p < stack_end; p++) {
3936
+ if (*p == ' \n ' ) {
3937
+ *p = ' \0 ' ;
3938
+ info_stream.print_cr (" \t %s" , line_start);
3939
+ line_start = p + 1 ;
3940
+ }
3941
+ }
3942
+ if (line_start < stack_end) {
3943
+ info_stream.print_cr (" \t %s" , line_start);
3944
+ }
3945
+ }
3946
+ }
3947
+ }
3948
+
3879
3949
// Verification
3880
3950
3881
3951
class VerifyFieldClosure : public BasicOopIterateClosure {
1 commit comments
openjdk-notifier[bot] commentedon Jul 8, 2023
Review
Issues