Skip to content

Commit 9181678

Browse files
committed
Re-prioritize RCP tracepoints
Currently, the tracepoints for RCP memory allocations and classloading are enabled by default. These are hot paths which means that we incur an overhead when writing out the tracepoints. Additionally, in a large app these tracepoints would dominate the trace output. For these reasons the tracepoint levels should be increased. Signed-off-by: tajila <[email protected]>
1 parent 6b6242e commit 9181678

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

runtime/vm/j9vm.tdf

+4-4
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ TraceEntry=Trc_VM_snapshot_readSnapshotFromFile_Entry NoEnv Overhead=1 Level=1 T
10081008
TraceExit=Trc_VM_snapshot_readSnapshotFromFile_Exit NoEnv Overhead=1 Level=1 Template="readSnapshotFromFile() Snapshot read successful"
10091009
TraceEntry=Trc_VM_snapshot_writeSnapshotToFile_Entry NoEnv Overhead=1 Level=1 Template="writeSnapshotToFile() Snapshot Heap = %p. File being written to = %s"
10101010
TraceExit=Trc_VM_snapshot_writeSnapshotToFile_Exit NoEnv Overhead=1 Level=1 Template="writeSnapshotTofile() Snapshot write successful"
1011-
TraceEntry=Trc_VM_snapshot_subAllocateSnapshotMemory_Entry NoEnv Overhead=1 Level=1 Template="subAllocateMemory() Snapshot Header = %p. Byte amount = %zu."
1012-
TraceExit=Trc_VM_snapshot_subAllocateSnapshotMemory_Exit NoEnv Overhead=1 Level=1 Template="subAllocateMemory() Memory allocated = %p."
1013-
TraceEvent=Trc_VM_snapshot_loadWarmClassFromSnapshot_ClassLoadHookFailed Overhead=1 Level=1 Template="loadWarmClassFromSnapshot() Warm class load hook failed class=%p, %s"
1014-
TraceEvent=Trc_VM_snapshot_loadWarmClassFromSnapshot_ClassInfo Overhead=1 Level=1 Template="loadWarmClassFromSnapshot() LoadClass clazz=%p, %s"
1011+
TraceEntry=Trc_VM_snapshot_subAllocateSnapshotMemory_Entry NoEnv Overhead=1 Level=3 Template="subAllocateMemory() Snapshot Header = %p. Byte amount = %zu."
1012+
TraceExit=Trc_VM_snapshot_subAllocateSnapshotMemory_Exit NoEnv Overhead=1 Level=3 Template="subAllocateMemory() Memory allocated = %p."
1013+
TraceEvent=Trc_VM_snapshot_loadWarmClassFromSnapshot_ClassLoadHookFailed Overhead=1 Level=3 Template="loadWarmClassFromSnapshot() Warm class load hook failed class=%p, %s"
1014+
TraceEvent=Trc_VM_snapshot_loadWarmClassFromSnapshot_ClassInfo Overhead=1 Level=3 Template="loadWarmClassFromSnapshot() LoadClass clazz=%p, %s"

0 commit comments

Comments
 (0)