Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
1,119 additions
and 451 deletions.
- +1 −1 src/hotspot/share/c1/c1_Compiler.cpp
- +4 −0 src/hotspot/share/c1/c1_LIRGenerator.cpp
- +1 −1 src/hotspot/share/c1/c1_LIRGenerator.hpp
- +10 −8 src/hotspot/share/classfile/javaClasses.cpp
- +10 −3 src/hotspot/share/classfile/javaClasses.hpp
- +10 −1 src/hotspot/share/classfile/javaClasses.inline.hpp
- +2 −1 src/hotspot/share/classfile/vmSymbols.hpp
- +10 −1 src/hotspot/share/jfr/jfr.cpp
- +2 −0 src/hotspot/share/jfr/jfr.hpp
- +71 −46 src/hotspot/share/jfr/jni/jfrJavaSupport.cpp
- +17 −6 src/hotspot/share/jfr/jni/jfrJavaSupport.hpp
- +3 −3 src/hotspot/share/jfr/leakprofiler/checkpoint/eventEmitter.cpp
- +5 −5 src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleCheckpoint.cpp
- +2 −3 src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleCheckpoint.hpp
- +31 −19 src/hotspot/share/jfr/leakprofiler/sampling/objectSample.hpp
- +36 −12 src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.cpp
- +3 −3 src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.hpp
- +3 −0 src/hotspot/share/jfr/metadata/metadata.xml
- +5 −6 src/hotspot/share/jfr/periodic/jfrThreadCPULoadEvent.cpp
- +14 −12 src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.cpp
- +4 −4 src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.cpp
- +5 −3 src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.hpp
- +11 −3 src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadGroup.cpp
- +25 −13 src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadState.cpp
- +4 −4 src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadState.hpp
- +26 −18 src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.cpp
- +4 −2 src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.hpp
- +12 −14 src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeManager.cpp
- +4 −3 src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeManager.hpp
- +44 −0 src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrOopTraceId.hpp
- +83 −0 src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrOopTraceId.inline.hpp
- +14 −5 src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.cpp
- +1 −0 src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.hpp
- +3 −1 src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdEpoch.cpp
- +10 −1 src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdEpoch.hpp
- +11 −1 src/hotspot/share/jfr/recorder/jfrRecorder.cpp
- +1 −0 src/hotspot/share/jfr/recorder/jfrRecorder.hpp
- +1 −1 src/hotspot/share/jfr/recorder/service/jfrEvent.hpp
- +163 −84 src/hotspot/share/jfr/recorder/stacktrace/jfrStackTrace.cpp
- +5 −4 src/hotspot/share/jfr/recorder/stacktrace/jfrStackTrace.hpp
- +14 −12 src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.cpp
- +4 −4 src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.hpp
- +1 −1 src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp
- +3 −1 src/hotspot/share/jfr/support/jfrEpochSynchronization.hpp
- +4 −1 src/hotspot/share/jfr/support/jfrIntrinsics.hpp
- +4 −2 src/hotspot/share/jfr/support/jfrThreadId.hpp
- +112 −34 src/hotspot/share/jfr/support/jfrThreadLocal.cpp
- +18 −11 src/hotspot/share/jfr/support/jfrThreadLocal.hpp
- +131 −0 src/hotspot/share/jfr/support/jfrVirtualThread.cpp
- +47 −0 src/hotspot/share/jfr/support/jfrVirtualThread.hpp
- +4 −1 src/hotspot/share/jfr/utilities/jfrTypes.hpp
- +22 −34 src/hotspot/share/jfr/writers/jfrJavaEventWriter.cpp
- +2 −2 src/hotspot/share/opto/c2compiler.cpp
- +7 −3 src/hotspot/share/opto/library_call.cpp
- +9 −4 src/hotspot/share/prims/jvm.cpp
- +48 −43 src/hotspot/share/runtime/continuation.cpp
- +12 −1 src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedThread.java
- +2 −1 src/jdk.jfr/share/classes/jdk/jfr/internal/JVM.java
- +2 −2 src/jdk.jfr/share/classes/jdk/jfr/internal/tool/PrettyWriter.java
- +2 −2 test/jdk/jdk/jfr/jvm/TestGetStackTraceId.java
Oops, something went wrong.