-
Notifications
You must be signed in to change notification settings - Fork 748
/
Copy pathj9shr.tdf
3010 lines (2391 loc) · 366 KB
/
j9shr.tdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//*******************************************************************************
// Copyright IBM Corp. and others 2006
//
// This program and the accompanying materials are made available under
// the terms of the Eclipse Public License 2.0 which accompanies this
// distribution and is available at https://www.eclipse.org/legal/epl-2.0/
// or the Apache License, Version 2.0 which accompanies this distribution and
// is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// This Source Code may also be made available under the following
// Secondary Licenses when the conditions for such availability set
// forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
// General Public License, version 2 with the GNU Classpath
// Exception [1] and GNU General Public License, version 2 with the
// OpenJDK Assembly Exception [2].
//
// [1] https://www.gnu.org/software/classpath/license.html
// [2] https://openjdk.org/legal/assembly-exception.html
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
//******************************************************************************
Executable=j9shr
Submodules=j9vmutil,j9util,pool,avl,simplepool
DATFileName=J9TraceFormat.dat
TraceEvent=Trc_SHR_VMInitStages_Event1 Overhead=1 Level=1 Test Template="Trace engine initialized for module j9shr"
TraceEntry=Trc_SHR_CM_LinkListImpl_link_Entry Obsolete Noenv Overhead=1 Level=6 Template="CM LinkedListImpl::link: Adding link 0x%p to link 0x%p"
TraceExit=Trc_SHR_CM_LinkListImpl_link_Exit1 Obsolete Noenv Overhead=1 Level=6 Template="CM LinkedListImpl::link: Created new link 0x%p"
TraceExit=Trc_SHR_CM_LinkListImpl_link_Exit2 Obsolete Noenv Overhead=1 Level=6 Template="CM LinkedListImpl::link: Added new link 0x%p to link 0x%p"
TraceEntry=Trc_SHR_CM_newInstance_Entry Noenv Overhead=1 Level=1 Template="CM newInstance: Creating new instance of SH_CacheMap. vm=0x%p."
TraceExit=Trc_SHR_CM_newInstance_Exit Noenv Overhead=1 Level=1 Template="CM newInstance: Created new instance of SH_CacheMap"
TraceEntry=Trc_SHR_CM_initialize_Entry Obsolete Noenv Overhead=1 Level=1 Template="CM init begin"
TraceExit=Trc_SHR_CM_initialize_Exit Noenv Overhead=1 Level=1 Template="CM init end"
TraceEntry=Trc_SHR_CM_cleanup_Entry Overhead=1 Level=1 Template="CM cleanup begin"
TraceExit=Trc_SHR_CM_cleanup_Exit Overhead=1 Level=1 Template="CM cleanup end"
TraceEntry=Trc_SHR_CM_startup_Entry Overhead=1 Level=1 Template="CM startup for cache %s with size %d begin"
TraceExit=Trc_SHR_CM_startup_ExitOK Overhead=1 Level=1 Template="CM startup successful"
TraceExit=Trc_SHR_CM_startup_Exit1 Overhead=1 Level=1 Template="CM startup: CompositeCache startup failed"
TraceExit=Trc_SHR_CM_startup_Exit2 Obsolete Overhead=1 Level=1 Template="CM startup: ClasspathManager startup failed"
TraceExit=Trc_SHR_CM_startup_Exit3 Obsolete Overhead=1 Level=1 Template="CM startup: ROMClassManager startup failed"
TraceExit=Trc_SHR_CM_startup_Exit4 Overhead=1 Level=1 Template="CM startup: Failed to create cache as ROMImageSegment"
TraceExit=Trc_SHR_CM_startup_Exit5 Overhead=1 Level=1 Template="CM startup: Cannot create refreshMutex monitor"
TraceExit=Trc_SHR_CM_startup_Exit6 Overhead=1 Level=1 Template="CM startup: Failed to read cache"
TraceExit=Trc_SHR_CM_startup_Exit7 Overhead=1 Level=1 Template="CM startup: Failed to get cache mutex"
TraceEntry=Trc_SHR_CM_createAsROMImageSegment_Entry Noenv Overhead=1 Level=1 Template="CM createAsROMImageSegment: Creating ROM image segment"
TraceExit=Trc_SHR_CM_createAsROMImageSegment_Exit Noenv Overhead=1 Level=1 Template="CM createAsROMImageSegment: Done creating ROM image segment"
TraceEntry=Trc_SHR_CM_writeOrphanToCache_Entry Obsolete Overhead=1 Level=3 Template="CM writeOrphanToCache: trying write orphaned romclass %.*s, originally at address 0x%p"
TraceExit=Trc_SHR_CM_writeOrphanToCache_ExitNull Obsolete Overhead=1 Level=3 Template="CM writeOrphanToCache: cache is full - failing add - returning NULL"
TraceExit=Trc_SHR_CM_writeOrphanToCache_Exit Obsolete Overhead=1 Level=3 Template="CM writeOrphanToCache: romclass %.*s added successfully at address 0x%p"
TraceEntry=Trc_SHR_CM_writeROMClassToCache_Entry Overhead=1 Level=3 Template="CM writeROMClassToCache: trying write romclass %.*s - romclass exists? = %d"
TraceEvent=Trc_SHR_CM_writeROMClassToCache_ActuallyAdding Overhead=1 Level=4 Template="CM writeROMClassToCache: actually adding %.*s with classpath entry %.*s (index %d in cpw 0x%p)"
TraceEvent=Trc_SHR_CM_writeROMClassToCache_SettingTimestamp Overhead=1 Level=4 Template="CM writeROMClassToCache: setting initial timestamp of %.*s to %lld"
TraceEvent=Trc_SHR_CM_writeROMClassToCache_CopyingIntoCache Overhead=1 Level=4 Template="CM writeROMClassToCache: copying ROMClass into cache at address 0x%p"
TraceEvent=Trc_SHR_CM_writeROMClassToCache_UpdatingSegment Overhead=1 Level=4 Template="CM writeROMClassToCache: updating ROMClassSegment allocation pointer to 0x%p"
TraceExit=Trc_SHR_CM_writeROMClassToCache_ExitNull Overhead=1 Level=3 Template="CM writeROMClassToCache: cache is full - failing add - returning NULL"
TraceExit=Trc_SHR_CM_writeROMClassToCache_Exit Overhead=1 Level=3 Template="CM writeROMClassToCache: class %.*s added successfully at address 0x%p"
TraceEntry=Trc_SHR_CM_addROMClassToCache_Entry Overhead=1 Level=1 Template="CM addROMClassToCache: trying add class %.*s at classpath entry %.*s"
TraceExit=Trc_SHR_CM_addROMClassToCache_ExitSuccess Overhead=1 Level=1 Template="CM addROMClassToCache: class %.*s added successfully at address 0x%p"
TraceExit=Trc_SHR_CM_addROMClassToCache_ExitNoClasspath Overhead=1 Level=1 Template="CM addROMClassToCache: exiting with NULL classpath - returning 0x%p"
TraceEvent=Trc_SHR_CM_addROMClassToCache_FoundDuplicate Overhead=1 Level=4 Template="CM addROMClassToCache: found duplicate class %.*s in cache"
TraceEvent=Trc_SHR_CM_addROMClassToCache_FoundOrphanROMClass Overhead=1 Level=4 Template="CM addROMClassToCache: found orphan ROMClass %.*s in cache at address 0x%p"
TraceEvent=Trc_SHR_CM_addROMClassToCache_IsROMClassInCache Overhead=1 Level=4 Template="CM addROMClassToCache: is romclass being added already in cache? = %d"
TraceExit=Trc_SHR_CM_addROMClassToCache_ExitNull1 Overhead=1 Level=1 Template="CM addROMClassToCache: entry point checks failed - returning NULL"
TraceException=Trc_SHR_CM_addROMClassToCache_Exception1 Overhead=1 Level=1 Template="CM addROMClassToCache exception: orphan found but local ROMClass passed to addROMClassToCache"
TraceExit=Trc_SHR_CM_addROMClassToCache_ExitNull2 Overhead=1 Level=1 Template="CM addROMClassToCache: cpw 0x%p has unexpectedly become stale - failing add - returning NULL"
TraceEntry=Trc_SHR_CM_updateClasspathInfo_Entry Overhead=1 Level=2 Template="CM updateClasspathInfo: called for classpath id %d at index %d"
TraceExit=Trc_SHR_CM_updateClasspathInfo_Exit Overhead=1 Level=2 Template="CM updateClasspathInfo: returning ClasspathWrapper in cache at address 0x%p"
TraceExit=Trc_SHR_CM_updateClasspathInfo_ExitNull1 Overhead=1 Level=2 Template="CM updateClasspathInfo: entry point checks failed - returning NULL"
TraceExit=Trc_SHR_CM_updateClasspathInfo_ExitNull2 Overhead=1 Level=2 Template="CM updateClasspathInfo: CPM update failed - returning NULL"
TraceEntry=Trc_SHR_CM_addClasspathToCache_Entry Overhead=1 Level=1 Template="CM addClasspathToCache: adding classpath (id %d) to cache"
TraceExit=Trc_SHR_CM_addClasspathToCache_Exit Overhead=1 Level=1 Template="CM addClasspathToCache: classpath (id %d) added to cache at address 0x%p"
TraceExit=Trc_SHR_CM_addClasspathToCache_Exit_Null Overhead=1 Level=1 Template="CM addClasspathToCache: cache is full - failing add - returning NULL"
TraceEntry=Trc_SHR_CM_access_EntryObsolete Obsolete Overhead=1 Level=1 Template="CM access: for class %s with classpath id %d"
TraceEvent=Trc_SHR_CM_access_Event_WaitingWriteHashObsolete Obsolete Overhead=1 Level=4 Template="CM access: waiting for another JVM to load class - waited %d times"
TraceEvent=Trc_SHR_CM_access_Event_AfterWriteHashObsolete Obsolete Overhead=1 Level=4 Template="CM access: finished waiting for other JVM to load class - known = 0x%p - foundAtIndex = %d"
TraceEvent=Trc_SHR_CM_access_Event_PeekForWriteHashObsolete Obsolete Overhead=1 Level=4 Template="CM access: peeking to see if we should use writeHash. Answer = %d."
TraceExit=Trc_SHR_CM_access_Exit_FoundObsolete Obsolete Overhead=1 Level=1 Template="CM access: class %s found at address 0x%p with classpath index %d"
TraceExit=Trc_SHR_CM_access_Exit_NotFoundObsolete Obsolete Overhead=1 Level=1 Template="CM access: class %s not found"
TraceExit=Trc_SHR_CM_access_Exit_NullObsolete Obsolete Overhead=1 Level=1 Template="CM access: hashtable refresh failed - returning NULL"
TraceEntry=Trc_SHR_CM_add_EntryObsolete Obsolete Overhead=1 Level=1 Template="CM add: adding class %.*s with classpath id %d at index %d"
TraceEvent=Trc_SHR_CM_add_Event_ResettingWriteHashObsolete Obsolete Overhead=1 Level=4 Template="CM add: resetting write hash field in cache"
TraceExit=Trc_SHR_CM_add_Exit_CorruptObsolete Obsolete Overhead=1 Level=1 Template="CM add: cache is corrupt, so returning NULL"
TraceExit=Trc_SHR_CM_add_Exit_DenyUpdatesObsolete Obsolete Overhead=1 Level=1 Template="CM add: denyUpdates=true, so returning NULL"
TraceExit=Trc_SHR_CM_add_Exit_StoredObsolete Obsolete Overhead=1 Level=1 Template="CM add: class %.*s added to cache at address 0x%p"
TraceExit=Trc_SHR_CM_add_Exit1Obsolete Obsolete Overhead=1 Level=1 Template="CM add: updateClasspathInfo for class %.*s failed - returning NULL"
TraceEntry=Trc_SHR_CM_markStale_Entry Overhead=1 Level=1 Template="CM markStale: trying stale mark for classpath entry %.*s (hasWriteMutex=%d)"
TraceExit=Trc_SHR_CM_markStale_Exit Overhead=1 Level=1 Template="CM markStale: Exiting stale mark for classes loaded from %.*s. Returning %d."
TraceEvent=Trc_SHR_CM_markStale_Event_AlreadyMarked Overhead=1 Level=1 Template="CM markStale: %.*s already marked stale by another thread"
TraceEvent=Trc_SHR_CM_markStale_Event_DoingMark Overhead=1 Level=1 Template="CM markStale: doing stale mark for %.*s at timestamp %d"
TraceException=Trc_SHR_CM_markStale_Exception1 Overhead=1 Level=1 Template="CM markStale exception: entry point checks failed"
TraceException=Trc_SHR_CM_markStale_Exception2 Overhead=1 Level=1 Template="CM markStale exception: multiple markStale attempts on %.*s have failed"
TraceEntry=Trc_SHR_CM_createPathString_Entry Overhead=1 Level=4 Template="CM createPathString: calling with classpath entry %.*s and className %.*s"
TraceExit=Trc_SHR_CM_createPathString_Exit Overhead=1 Level=4 Template="CM createPathString: successfully created string %s"
TraceException=Trc_SHR_CM_createPathString_Exception1 Overhead=1 Level=4 Template="CM createPathString exception: could not allocate memory for string buffer"
TraceEntry=Trc_SHR_CM_markItemStale_Entry Overhead=1 Level=1 Template="CM markItemStale: marking stale cache item at address 0x%p"
TraceExit=Trc_SHR_CM_markItemStale_Exit Overhead=1 Level=1 Template="CM markItemStale: done marking stale cache item at address 0x%p"
TraceEntry=Trc_SHR_CM_destroy_Entry Overhead=1 Level=1 Template="CM destroy: Entering destroy"
TraceExit=Trc_SHR_CM_destroy_Exit Overhead=1 Level=1 Template="CM destroy: Done destroying cache"
TraceEntry=Trc_SHR_CM_reportFullCache_Entry Obsolete Overhead=1 Level=1 Template="CM reportFullCache: Reporting full cache"
TraceExit=Trc_SHR_CM_reportFullCache_Exit Obsolete Overhead=1 Level=1 Template="CM reportFullCache: Done reporting full cache"
TraceEntry=Trc_SHR_CM_reportCorruptCache_Entry Overhead=1 Level=1 Template="CM reportCorruptCache: Reporting corrupt cache"
TraceExit=Trc_SHR_CM_reportCorruptCache_Exit Overhead=1 Level=1 Template="CM reportCorruptCache: Done reporting corrupt cache"
TraceEntry=Trc_SHR_CM_readCache_Entry Overhead=1 Level=6 Template="CM readCache: reading cache - expecting %d new updates"
TraceExit=Trc_SHR_CM_readCache_Exit Overhead=1 Level=6 Template="CM readCache: done reading cache - expected %d, got %d"
TraceEvent=Trc_SHR_CM_readCache_Event_NotMatched Overhead=1 Level=6 Template="CM readCache: POSSIBLE ERROR expected/got mismatch: expected %d, got %d"
TraceExit=Trc_SHR_CM_readCache_Exit1 Overhead=1 Level=6 Template="CM readCache: read corrupt data for item 0x%p. Returning -1."
TraceExit=Trc_SHR_CM_readCache_Exit2 Overhead=1 Level=6 Template="CM readCache: call to storeNew failed. Returning -1."
TraceEntry=Trc_SHR_CM_refreshHashtables_Entry Overhead=1 Level=4 Template="CM refreshHashtables: refreshing hashtables."
TraceExit=Trc_SHR_CM_refreshHashtables_Exit Overhead=1 Level=4 Template="CM refreshHashtables: read %d new items into hashtables"
TraceEntry=Trc_SHR_CM_isStale_Entry NoEnv Overhead=1 Level=6 Template="CM isStale: testing item 0x%p for stale"
TraceExit=Trc_SHR_CM_isStale_ExitStale NoEnv Overhead=1 Level=6 Template="CM isStale: returning STALE for item 0x%p"
TraceExit=Trc_SHR_CM_isStale_ExitNotStale NoEnv Overhead=1 Level=6 Template="CM isStale: returning NOT STALE for item 0x%p"
TraceExit=Trc_SHR_CM_isStale_ExitNoItem NoEnv Overhead=1 Level=6 Template="CM isStale: returning -1 as item is NULL"
TraceException=Trc_SHR_CM_checkForCrash_Exception Overhead=1 Level=4 Template="CM checkForCrash: Crash/abnormal termination detected. Refreshing hashtables."
TraceEntry=Trc_SHR_RMI_RcLinkedListImpl_newInstance_Entry Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::newInstance: Creating new RcLinkedListImpl for key %.*s and item 0x%p"
TraceExit=Trc_SHR_RMI_RcLinkedListImpl_newInstance_Exit Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::newInstance: Done creating new RcLinkedListImpl at address 0x%p"
TraceEntry=Trc_SHR_RMI_RcLinkedListImpl_initialize_Entry Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::initialize: Initializing RcLinkedListImpl"
TraceExit=Trc_SHR_RMI_RcLinkedListImpl_initialize_Exit Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::initialize: Done initializing RcLinkedListImpl"
TraceEntry=Trc_SHR_RMI_RcLinkedListImpl_createLink_Entry Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::createLink: Creating RcLinkedListImpl link for key %.*s and item 0x%p"
TraceExit=Trc_SHR_RMI_RcLinkedListImpl_createLink_Exit1 Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::createLink: pool_newElement failed. Returning NULL"
TraceExit=Trc_SHR_RMI_RcLinkedListImpl_createLink_Exit2 Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::createLink: Returning new link at 0x%p"
TraceEntry=Trc_SHR_RMI_localHashTableCreate_Entry Overhead=1 Level=1 Template="RMI localHashTableCreate: Creating new hashtable with %d initial entries"
TraceExit=Trc_SHR_RMI_localHashTableCreate_Exit Overhead=1 Level=1 Template="RMI localHashTableCreate: Created hashtable at address 0x%p"
TraceEntry=Trc_SHR_RMI_rcHashFn_Entry Noenv Overhead=1 Level=6 Template="RMI rcHashFn: Creating hashcode for item 0x%p"
TraceExit=Trc_SHR_RMI_rcHashFn_Exit Noenv Overhead=1 Level=6 Template="RMI rcHashFn: Returning hashcode %d"
TraceEntry=Trc_SHR_RMI_rcHashEqualFn_Entry Noenv Overhead=1 Level=6 Template="RMI rcHashEqualFn: Comparing 0x%p with 0x%p"
TraceExit=Trc_SHR_RMI_rcHashEqualFn_Exit1 Noenv Overhead=1 Level=6 Template="RMI rcHashEqualFn: One key is null. Exiting with false."
TraceExit=Trc_SHR_RMI_rcHashEqualFn_Exit2 Noenv Overhead=1 Level=6 Template="RMI rcHashEqualFn: Key lengths don't match. Exiting with false."
TraceExit=Trc_SHR_RMI_rcHashEqualFn_Exit3 Noenv Overhead=1 Level=6 Template="RMI rcHashEqualFn: Called compareUTF8. Result=%d"
TraceEntry=Trc_SHR_RMI_rcTableAdd_Entry Overhead=1 Level=6 Template="RMI rcTableAdd: Entering add with key %.*s for item 0x%p"
TraceException=Trc_SHR_RMI_rcTableAdd_Exception1 Overhead=1 Level=6 Template="RMI rcTableAdd: hashTableAdd failed"
TraceExit=Trc_SHR_RMI_rcTableAdd_Exit1 Overhead=1 Level=6 Template="RMI rcTableAdd: createLink failed. Returning NULL."
TraceExit=Trc_SHR_RMI_rcTableAdd_Exit3 Overhead=1 Level=6 Template="RMI rcTableAdd: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_RMI_rcTableAdd_Exit4 Overhead=1 Level=6 Template="RMI rcTableAdd: Succeeded in adding item. Returning 0x%p."
TraceEntry=Trc_SHR_RMI_rcTableLookup_Entry Overhead=1 Level=4 Template="RMI rcTableLookup: Entering lookup with name %.*s"
TraceEvent=Trc_SHR_RMI_rcTableLookup_HashtableFind Overhead=1 Level=4 Template="RMI rcTableLookup: Done hashTableFind. Result=0x%p"
TraceExit=Trc_SHR_RMI_rcTableLookup_Exit1 Overhead=1 Level=4 Template="RMI rcTableLookup: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_RMI_rcTableLookup_Exit2 Overhead=1 Level=4 Template="RMI rcTableLookup: Exiting lookup with result 0x%p"
TraceEntry=Trc_SHR_RMI_rcTableUpdate_Entry Overhead=1 Level=4 Template="RMI rcTableUpdate: Entering update with key %.*s for item 0x%p"
TraceExit=Trc_SHR_RMI_rcTableUpdate_Exit1 Overhead=1 Level=4 Template="RMI rcTableUpdate: rcTableAdd failed. Returning NULL."
TraceExit=Trc_SHR_RMI_rcTableUpdate_Exit2 Overhead=1 Level=4 Template="RMI rcTableUpdate: Exiting update with result 0x%p"
TraceEntry=Trc_SHR_RMI_newInstance_EntryObsolete Noenv Obsolete Overhead=1 level=1 Template="RMI newInstance: Creating new ROMClassManager. vm=0x%p. cache=0x%p. cpm=0x%p. tsm=0x%p."
TraceExit=Trc_SHR_RMI_newInstance_Exit Noenv Overhead=1 Level=1 Template="RMI newInstance: Created ROMClassManager at address 0x%p"
TraceEntry=Trc_SHR_RMI_initialize_Entry Noenv Overhead=1 Level=1 Template="RMI initialize: Initializing ROMClassManager"
TraceExit=Trc_SHR_RMI_initialize_Exit Noenv Overhead=1 Level=1 Template="RMI initialize: Done initializing ROMClassManager"
// These tracepoints are not used, but are added to keep the following tpnids consistent with 2.3
TraceEntry=Trc_SHR_RMI_startup_Entry Overhead=1 Level=1 Template="RMI startup: Starting up ROMClassManager"
TraceExit=Trc_SHR_RMI_startup_Exit1 Overhead=1 Level=1 Template="RMI startup: Failed to create linkedListImplPool. Returning -1."
TraceExit=Trc_SHR_RMI_startup_Exit2 Overhead=1 Level=1 Template="RMI startup: Failed to create hashtable. Returning -1."
TraceExit=Trc_SHR_RMI_startup_Exit3 Overhead=1 Level=1 Template="RMI startup: Failed to create hashtable mutex. Returning -1."
TraceExit=Trc_SHR_RMI_startup_Exit4 Overhead=1 Level=1 Template="RMI startup: ROMClassManager started successfully"
TraceEntry=Trc_SHR_RMI_cleanup_Entry Overhead=1 Level=1 Template="RMI cleanup: Cleaning up ROMClassManager"
TraceExit=Trc_SHR_RMI_cleanup_Exit Overhead=1 Level=1 Template="RMI cleanup: Done cleaning up ROMClassManager"
TraceEntry=Trc_SHR_RMI_locateROMClass_Entry Overhead=1 Level=3 Template="RMI locateROMClass: Locate request for ROMClass %.*s from helper ID %d with cpeIndex %d"
TraceExit=Trc_SHR_RMI_locateROMClass_ExitNotFound1 Overhead=1 Level=3 Template="RMI locateROMClass: ROMClass not found in hashtable. Exiting with NULL."
TraceEvent=Trc_SHR_RMI_locateROMClass_TestItem Overhead=1 Level=4 Template="RMI locateROMClass: ROMClass(s) found in hashtable. Testing item 0x%p..."
TraceEvent=Trc_SHR_RMI_locateROMClass_ExceptionMultipleOrphanObsolete Obsolete Overhead=1 Level=4 Template="RMI locateROMClass: ERROR: Found more than one orphan ROMClass for %.*s"
TraceEvent=Trc_SHR_RMI_locateROMClass_FoundOrphanObsolete Obsolete Overhead=1 Level=4 Template="RMI locateROMClass: Found an orphan ROMClass at 0x%p"
TraceExit=Trc_SHR_RMI_locateROMClass_ExitTimestampMismatch Overhead=1 Level=3 Template="RMI locateROMClass: Classpath entry timestamps mismatch: compared %lld to %lld"
TraceEvent=Trc_SHR_RMI_locateROMClass_ElimatedWalkNext Overhead=1 Level=4 Template="RMI locateROMClass: Classpath entries did not match. Match failed. Try next."
TraceEvent=Trc_SHR_RMI_locateROMClass_FoundCacheClasspath Overhead=1 Level=4 Template="RMI locateROMClass: Classpath from ROMClass is same pointer as compareTo. Result=0x%p. FoundAtIndex=%d. StaleCPEI=0x%p."
TraceEvent=Trc_SHR_RMI_locateROMClass_ValidateClasspath Overhead=1 Level=4 Template="RMI locateROMClass: Potential ROMClass match found. Validate classpaths."
TraceEvent=Trc_SHR_RMI_locateROMClass_ValidateSucceeded Overhead=1 Level=4 Template="RMI locateROMClass: Classpath validation succeeded. Result=0x%p. FoundAtIndex=%d. StaleCPEI=0x%p."
TraceExit=Trc_SHR_RMI_locateROMClass_ExitRcTimestampChanged Overhead=1 Level=3 Template="RMI locateROMClass: ROMClass timestamp has changed. Returning NULL."
TraceExit=Trc_SHR_RMI_locateROMClass_ExitFoundShadowClass Overhead=1 Level=3 Template="RMI locateROMClass: Found shadow class in the classpath. Returning NULL."
TraceExit=Trc_SHR_RMI_locateROMClass_ExitSuccessObsolete Obsolete Overhead=1 Level=1 Template="RMI locateROMClass: Locate succeeded. Returning 0x%p. FoundAtIndex=%d. StaleCPEI=0x%p. FoundOrphan=0x%p."
TraceExit=Trc_SHR_RMI_locateROMClass_ExitFoundOrphanObsolete Obsolete Overhead=1 Level=1 Template="RMI locateROMClass: Returning orphan at 0x%p."
TraceExit=Trc_SHR_RMI_locateROMClass_ExitNotFound2 Overhead=1 Level=3 Template="RMI locateROMClass: Locate failed. Returning NULL. FoundAtIndex=%d. StaleCPEI=0x%p."
TraceExit=Trc_SHR_RMI_locateROMClass_ExitTValidateFoundStale Overhead=1 Level=3 Template="RMI locateROMClass: Validate found stale classpath entry. Failing find."
TraceEntry=Trc_SHR_RMI_checkTimestamp_Entry Overhead=1 Level=6 Template="RMI checkTimestamp: Checking timestamp for path %.*s"
TraceExit=Trc_SHR_RMI_checkTimestamp_ExitTrue Overhead=1 Level=6 Template="RMI checkTimestamp: Returning true"
TraceExit=Trc_SHR_RMI_checkTimestamp_ExitFalse Overhead=1 Level=6 Template="RMI checkTimestamp: Returning false"
// These tracepoints are not used, but are added to keep the following tpnids consistent with 2.3
TraceEntry=Trc_SHR_RMI_reset_Entry Overhead=1 Level=1 Template="RMI reset: Resetting ROMClassManager"
TraceExit=Trc_SHR_RMI_reset_Exit Overhead=1 Level=1 Template="RMI reset: Done resetting ROMClassManager"
TraceEntry=Trc_SHR_RMI_storeNew_Entry Overhead=1 Level=6 Template="RMI storeNew: storeNew called for item at address 0x%p"
TraceEvent=Trc_SHR_RMI_storeNew_Event1 Overhead=1 Level=6 Template="RMI storeNew: storing orphan %.*s in local hashtable (address 0x%p)"
TraceEvent=Trc_SHR_RMI_storeNew_Event2 Overhead=1 Level=6 Template="RMI storeNew: storing romclass %.*s in local hashtable (address 0x%p)"
TraceExit=Trc_SHR_RMI_storeNew_ExitTrue Overhead=1 Level=6 Template="RMI storeNew: storeNew returning true"
TraceExit=Trc_SHR_RMI_storeNew_ExitFalse Overhead=1 Level=6 Template="RMI storeNew: storeNew returning false"
TraceException=Trc_SHR_RMI_storeNew_Exception1 Overhead=1 Level=6 Template="RMI storeNew exception: cannot allocate memory for string buffer"
TraceEntry=Trc_SHR_RMI_compareROMClasses_Entry Overhead=1 Level=3 Template="RMI compareROMClasses: comparing ROMClasses at addresses 0x%p and 0x%p"
TraceExit=Trc_SHR_RMI_compareROMClasses_ExitNotSame1 Overhead=1 Level=3 Template="RMI compareROMClasses: ROMClasses are the same size, but have different bytes"
TraceExit=Trc_SHR_RMI_compareROMClasses_ExitNotSame2 Overhead=1 Level=3 Template="RMI compareROMClasses: ROMClass comparison failed"
TraceExit=Trc_SHR_RMI_compareROMClasses_ExitSame Overhead=1 Level=3 Template="RMI compareROMClasses: ROMClass comparison succeeded"
TraceEntry=Trc_SHR_RMI_prepareForCompare_Entry Overhead=1 Level=3 Template="RMI prepareForCompare: Copying and fixing up ROMClass at address 0x%p"
TraceExit=Trc_SHR_RMI_prepareForCompare_ExitNull Overhead=1 Level=3 Template="RMI prepareForCompare: ERROR: could not allocate memory for buffer"
TraceExit=Trc_SHR_RMI_prepareForCompare_Exit Overhead=1 Level=3 Template="RMI findExisting: created temporary ROMClass at address 0x%p with fixed return bytecodes for comparison"
TraceEntry=Trc_SHR_RMI_compareForSafeMode_Entry Overhead=1 Level=3 Template="RMI compareForSafeMode: Comparing local ROMClass 0x%p with cache ROMClass 0x%p"
TraceExit=Trc_SHR_RMI_compareForSafeMode_ExitAlloc Overhead=1 Level=3 Template="RMI compareForSafeMode: Temporary buffer allocation failed"
TraceExit=Trc_SHR_RMI_compareForSafeMode_Exit Overhead=1 Level=3 Template="RMI compareForSafeMode: Done comparing ROMClasses. Returning %d."
TraceEntry=Trc_SHR_RMI_findExisting_EntryObsolete Obsolete Overhead=1 Level=3 Template="RMI findExisting: looking for existing ROMClass with name: %.*s. Compare with RC at 0x%p. Is in cache? %d"
TraceExit=Trc_SHR_RMI_findExisting_ExitNotFound Overhead=1 Level=3 Template="RMI findExisting: did not find any ROMClass with name: %.*s"
TraceEvent=Trc_SHR_RMI_findExisting_FoundOrphan Overhead=1 Level=4 Template="RMI findExisting: found an orphan at address 0x%p"
TraceEvent=Trc_SHR_RMI_findExisting_FoundROMClass Overhead=1 Level=4 Template="RMI findExisting: found a non-orphan ROMClass at address 0x%p"
TraceExit=Trc_SHR_RMI_findExisting_ExitOK Overhead=1 Level=3 Template="RMI findExisting: exiting with returnVal = 0x%p"
TraceEntry=Trc_SHR_RMI_reuniteOrphan_Entry Overhead=1 Level=3 Template="RMI reuniteOrphan: trying reuniteOrphan for romclass %.*s"
TraceEvent=Trc_SHR_RMI_reuniteOrphan_Event1 Overhead=1 Level=4 Template="RMI reuniteOrphan: reuniting orphaned romclass %.*s (at address 0x%p) with item 0x%p"
TraceExit=Trc_SHR_RMI_reuniteOrphan_ExitTrue Overhead=1 Level=3 Template="RMI reuniteOrphan: reuniteOrphan returning true"
TraceExit=Trc_SHR_RMI_reuniteOrphan_ExitFalse Overhead=1 Level=3 Template="RMI reuniteOrphan: reuniteOrphan returning false"
TraceEntry=Trc_SHR_RMI_redeemStale_Entry Overhead=1 Level=3 Template="RMI redeemStale: trying redeemStale for %.*s from ClasspathWrapper 0x%p and cpeIndex %d"
TraceExit=Trc_SHR_RMI_redeemStale_ExitFound Overhead=1 Level=3 Template="RMI redeemStale: found stale ROMClass to redeem. Returning ROMClassWrapper 0x%p"
TraceExit=Trc_SHR_RMI_redeemStale_ExitNull Overhead=1 Level=3 Template="RMI redeemStale: No redeemable ROMClasses found. Returning NULL."
// Not used - added to keep tpnids consistent with 2.3
TraceEntry=Trc_SHR_CMI_CpLinkedListImpl_newInstance_Entry Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::newInstance: Creating new CpLinkedListImpl for cpeIndex %d and item 0x%p"
TraceExit=Trc_SHR_CMI_CpLinkedListImpl_newInstance_Exit Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::newInstance: Done creating new CpLinkedListImpl at address 0x%p"
TraceEntry=Trc_SHR_CMI_CpLinkedListImpl_initialize_Entry Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::initialize: Initializing CpLinkedListImpl"
TraceExit=Trc_SHR_CMI_CpLinkedListImpl_initialize_Exit Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::initialize: Done initializing CpLinkedListImpl"
TraceEntry=Trc_SHR_CMI_CpLinkedListImpl_link_Entry Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::link: Linking CpLinkedListImpl for list 0x%p with cpeIndex %d and item 0x%p. Tag as last item=%d."
TraceExit=Trc_SHR_CMI_CpLinkedListImpl_link_Exit1 Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::link: pool_newElement failed. Returning NULL"
TraceExit=Trc_SHR_CMI_CpLinkedListImpl_link_Exit2 Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::link: Returning new link at 0x%p"
TraceEntry=Trc_SHR_CMI_CpLinkedListImpl_forCacheItem_Entry Overhead=1 Level=3 Template="CMI CpLinkedListImpl::forCacheItem: Search in list for cpEntry at index %d in classpathItem 0x%p"
TraceEvent=Trc_SHR_CMI_CpLinkedListImpl_forCacheItem_DoTest Overhead=1 Level=4 Template="CMI CpLinkedListImpl::forCacheItem: Testing link 0x%p, which has index %d and staleFromIndex %d"
TraceExit=Trc_SHR_CMI_CpLinkedListImpl_forCacheItem_Exit1 Overhead=1 Level=3 Template="CMI CpLinkedListImpl::forCacheItem: Classpath match found. Returning link 0x%p."
TraceExit=Trc_SHR_CMI_CpLinkedListImpl_forCacheItem_Exit2 Overhead=1 Level=3 Template="CMI CpLinkedListImpl::forCacheItem: Classpath match not found. Returning NULL."
TraceEvent=Trc_SHR_CMI_CpLinkedListImpl_tag Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::tag: Tagging link 0x%p as last entry"
TraceEvent=Trc_SHR_CMI_CpLinkedListImpl_getCPEIndex Noenv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::getCPEIndex: Returning cpeIndex %d for link 0x%p"
TraceEntry=Trc_SHR_CMI_CpLinkedListHdr_newInstance_Entry Noenv Overhead=1 Level=6 Template="CMI CpLinkedListHdr::newInstance: Creating new CpLinkedListHdr for %.*s. isToken=%d. List=0x%p."
TraceExit=Trc_SHR_CMI_CpLinkedListHdr_newInstance_Exit Noenv Overhead=1 Level=6 Template="CMI CpLinkedListHdr::newInstance: Done creating new CpLinkedListHdr at address 0x%p"
TraceEntry=Trc_SHR_CMI_CpLinkedListHdr_initialize_Entry Noenv Overhead=1 Level=6 Template="CMI CpLinkedListHdr::initialize: Initializing CpLinkedListHdr"
TraceExit=Trc_SHR_CMI_CpLinkedListHdr_initialize_Exit Noenv Overhead=1 Level=6 Template="CMI CpLinkedListHdr::initialize: Done initializing CpLinkedListHdr"
TraceEntry=Trc_SHR_CMI_newInstance_Entry Noenv Overhead=1 Level=1 Template="CMI newInstance: Creating new ClasspathManager. vm=0x%p. cache=0x%p. tsm=0x%p."
TraceExit=Trc_SHR_CMI_newInstance_Exit Noenv Overhead=1 Level=1 Template="CMI newInstance: Done creating new ClasspathManager at address 0x%p"
TraceEntry=Trc_SHR_CMI_initialize_Entry Noenv Overhead=1 Level=1 Template="CMI initialize: Initializing ClasspathManager"
TraceExit=Trc_SHR_CMI_initialize_Exit Noenv Overhead=1 Level=1 Template="CMI initialize: Done initializing ClasspathManager"
// Not used, but kept for tpnid consistency with 2.3
TraceEntry=Trc_SHR_CMI_startup_Entry Overhead=1 Level=1 Template="CMI startup: Starting ClasspathManager"
TraceExit=Trc_SHR_CMI_startup_Exit1 Overhead=1 Level=1 Template="CMI startup: Failed to create linkedListImpl pool. Returning -1."
TraceExit=Trc_SHR_CMI_startup_Exit2 Overhead=1 Level=1 Template="CMI startup: Failed to create linkedListHdr pool. Returning -1."
TraceExit=Trc_SHR_CMI_startup_Exit3 Overhead=1 Level=1 Template="CMI startup: Failed to create hashtable. Returning -1."
TraceExit=Trc_SHR_CMI_startup_Exit4 Overhead=1 Level=1 Template="CMI startup: Failed to create cpeTableMutex. Returning -1."
TraceExit=Trc_SHR_CMI_startup_Exit5 Overhead=1 Level=1 Template="CMI startup: Failed to create identifiedMutex. Returning -1."
TraceExit=Trc_SHR_CMI_startup_Exit6 Overhead=1 Level=1 Template="CMI startup: Failed to create identified classpath array. Returning -1."
TraceExit=Trc_SHR_CMI_startup_Exit7 Overhead=1 Level=1 Template="CMI startup: Done starting ClasspathManager."
TraceEntry=Trc_SHR_CMI_cleanup_Entry Overhead=1 Level=1 Template="CMI cleanup: Cleaning up ClasspathManager"
TraceExit=Trc_SHR_CMI_cleanup_Exit Overhead=1 Level=1 Template="CMI cleanup: Done cleaning up ClasspathManager"
TraceEntry=Trc_SHR_CMI_hasTimestampChanged_Entry Overhead=1 Level=6 Template="CMI hasTimestampChanged: Checking timestamp change for item 0x%p. DoTryLockJar=%d."
TraceExit=Trc_SHR_CMI_hasTimestampChanged_ExitLocked Overhead=1 Level=6 Template="CMI hasTimestampChanged: JAR is locked in header 0x%p. Not checking timestamp: Returning false."
TraceEvent=Trc_SHR_CMI_hasTimestampChanged_LockJar Overhead=1 Level=6 Template="CMI hasTimestampChanged: Locking JAR in header 0x%p."
TraceExit=Trc_SHR_CMI_hasTimestampChanged_Exit Overhead=1 Level=6 Template="CMI hasTimestampChanged: Done check - timestamp is %lld. Returning %d."
TraceExit=Trc_SHR_CMI_hasTimestampChanged_ExitDoesNotExist Overhead=1 Level=6 Template="CMI hasTimestampChanged: Info - JAR does not exist. Returning %d."
TraceExit=Trc_SHR_CMI_hasTimestampChanged_ExitFalse Overhead=1 Level=6 Template="CMI hasTimestampChanged: Returning false."
TraceEvent=Trc_SHR_CMI_hasTimestampChanged_NotJar Overhead=1 Level=6 Template="CMI hasTimestampChanged: Not JAR so exiting with false"
TraceEntry=Trc_SHR_CMI_cpeHashTableCreate_EntryObsolete Obsolete Overhead=1 Level=1 Template="CMI cpeHashTableCreate: Creating new hashtable with %d initial entries"
TraceExit=Trc_SHR_CMI_cpeHashTableCreate_ExitObsolete Obsolete Overhead=1 Level=1 Template="CMI cpeHashTableCreate: Created hashtable at address 0x%p"
TraceEntry=Trc_SHR_CMI_cpeHashFn_Entry Noenv Overhead=1 Level=6 Template="CMI cpeHashFn: Creating hashcode for item 0x%p"
TraceExit=Trc_SHR_CMI_cpeHashFn_Exit Noenv Overhead=1 Level=6 Template="CMI cpeHashFn: Returning hashcode %d"
TraceEntry=Trc_SHR_CMI_cpeHashEqualFn_Entry Noenv Overhead=1 Level=6 Template="CMI cpeHashEqualFn: Comparing 0x%p with 0x%p"
TraceExit=Trc_SHR_CMI_cpeHashEqualFn_Exit1 Noenv Overhead=1 Level=6 Template="CMI cpeHashEqualFn: One key is null. Exiting with false."
TraceExit=Trc_SHR_CMI_cpeHashEqualFn_Exit2 Noenv Overhead=1 Level=6 Template="CMI cpeHashEqualFn: Key lengths don't match. Exiting with false."
TraceExit=Trc_SHR_CMI_cpeHashEqualFn_Exit3 Noenv Overhead=1 Level=6 Template="CMI cpeHashEqualFn: isToken values don't match. Exiting with false."
TraceExit=Trc_SHR_CMI_cpeHashEqualFn_Exit4 Noenv Overhead=1 Level=6 Template="CMI cpeHashEqualFn: Called compareUTF8. Result=%d"
TraceEntry=Trc_SHR_CMI_cpeTableAdd_Entry Overhead=1 Level=6 Template="CMI cpeTableAdd: Adding entry %.*s to hashtable at CPEIndex %d. Item=0x%p. isToken=%x. doTag=%d."
TraceExit=Trc_SHR_CMI_cpeTableAdd_Exit1 Overhead=1 Level=6 Template="CMI cpeTableAdd: Cannot allocate memory for linked list item. Returning NULL."
TraceExit=Trc_SHR_CMI_cpeTableAdd_Exit2 Overhead=1 Level=6 Template="CMI cpeTableAdd: Cannot allocate memory for linked list header. Returning NULL."
TraceExit=Trc_SHR_CMI_cpeTableAdd_Exit3 Overhead=1 Level=6 Template="CMI cpeTableAdd: Cannot allocate memory for hash table entry. Returning NULL."
TraceExit=Trc_SHR_CMI_cpeTableAdd_Exit4 Overhead=1 Level=6 Template="CMI cpeTableAdd: Failed to get cpeTableMutex. Tried %d times."
TraceExit=Trc_SHR_CMI_cpeTableAdd_Exit5 Overhead=1 Level=6 Template="CMI cpeTableAdd: Succeeded. Returning new item 0x%p."
TraceEntry=Trc_SHR_CMI_cpeTableLookup_Entry Overhead=1 Level=3 Template="CMI cpeTableLookup: Entering lookup with name %.*s. IsToken=%d."
TraceEvent=Trc_SHR_CMI_cpeTableLookup_HashtableFind Overhead=1 Level=3 Template="CMI cpeTableLookup: Done hashTableFind. Result=0x%p"
TraceExit=Trc_SHR_CMI_cpeTableLookup_Exit1 Overhead=1 Level=3 Template="CMI cpeTableLookup: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_CMI_cpeTableLookup_Exit2 Overhead=1 Level=3 Template="CMI cpeTableLookup: Exiting lookup with result 0x%p"
TraceEntry=Trc_SHR_CMI_cpeTableUpdate_Entry Overhead=1 Level=3 Template="CMI cpeTableUpdate: Entering update with name %.*s. CPEIndex=%d. Item=0x%p. IsToken=%d."
TraceExit=Trc_SHR_CMI_cpeTableUpdate_Exit Overhead=1 Level=3 Template="CMI cpeTableUpdate: Exiting with result 0x%p"
TraceEntry=Trc_SHR_CMI_localUpdate_FindIdentified_Entry Overhead=1 Level=3 Template="CMI localUpdate_FindIdentified: Looking for identified classpath for classpathItem 0x%p"
TraceExit=Trc_SHR_CMI_localUpdate_FindIdentified_Exit Overhead=1 Level=3 Template="CMI localUpdate_FindIdentified: Returning 0x%p"
TraceEntry=Trc_SHR_CMI_local_StoreIdentified_Entry Overhead=1 Level=3 Template="CMI local_StoreIdentified: Storing identified classpath for classpathItem 0x%p and classpathWrapper 0x%p"
TraceExit=Trc_SHR_CMI_local_StoreIdentified_Exit1 Overhead=1 Level=3 Template="CMI local_StoreIdentified: Cannot allocate memory for identified classpath array. Returning -1."
TraceExit=Trc_SHR_CMI_local_StoreIdentified_Exit2 Overhead=1 Level=3 Template="CMI local_StoreIdentified: Store succeeded. Returning 0."
TraceEntry=Trc_SHR_CMI_localUpdate_CheckManually_Entry Overhead=1 Level=3 Template="CMI localUpdate_CheckManually: Checking classpathItem 0x%p manually against known items in cache"
TraceEvent=Trc_SHR_CMI_localUpdate_CheckManually_FoundKnown Overhead=1 Level=4 Template="CMI localUpdate_CheckManually: Found known classpath entry header 0x%p"
TraceExit=Trc_SHR_CMI_localUpdate_CheckManually_Exit Overhead=1 Level=3 Template="CMI localUpdate_CheckManually: Done manual check. Returning ClasspathWrapper 0x%p."
TraceEntry=Trc_SHR_CMI_Update_Entry Overhead=1 Level=2 Template="CMI Update: Looking for ClasspathItem 0x%p with cpeIndex %d"
TraceExit=Trc_SHR_CMI_Update_Exit1 Overhead=1 Level=2 Template="CMI Update: StoreIdentified failed. Returning -1."
TraceExit=Trc_SHR_CMI_Update_Exit2 Overhead=1 Level=2 Template="CMI Update: Returning 0. FoundCP is set to 0x%p."
TraceEntry=Trc_SHR_CMI_localValidate_FindIdentified_Entry Overhead=1 Level=3 Template="CMI localValidate_FindIdentified: Looking for ID for ClasspathWrapper 0x%p"
TraceExit=Trc_SHR_CMI_localValidate_FindIdentified_ExitFound Overhead=1 Level=3 Template="CMI localValidate_FindIdentified: Returning helper ID %d"
TraceExit=Trc_SHR_CMI_localValidate_FindIdentified_ExitNotFound Overhead=1 Level=3 Template="CMI localValidate_FindIdentified: Helper ID not found"
TraceEntry=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_Entry Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Comparing cache classpath 0x%p with 0x%p. ROMClass at index %d."
TraceExit=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_Exit1 Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Comparison failed first check. Returning -1. IndexInCompare=%d."
TraceExit=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_ExitTokenFound Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Compare succeeded for token. Returning 0."
TraceExit=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_ExitTokenNotFound Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Compare failed for token. Returning -1."
TraceEvent=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_DoTryIdentifySet Overhead=1 Level=4 Template="CMI localValidate_CheckAndTimestampManually: Try to identify classpath?=%d. Walk to index %d."
TraceEvent=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_TestEntry Overhead=1 Level=4 Template="CMI localValidate_CheckAndTimestampManually: Testing classpath entry %.*s at index %d"
TraceEvent=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_DoTryIdentify Overhead=1 Level=4 Template="CMI localValidate_CheckAndTimestampManually: Trying to identify classpath. IndexInTestCP=%d."
TraceEvent=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_SkippingEntry Overhead=1 Level=4 Template="CMI localValidate_CheckAndTimestampManually: Failed to identify classpath so skipping entry %d."
TraceExit=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_Exit2 Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Comparison failed - classpath entry does not exist in test classpath. Returning -1."
TraceEvent=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_DetectedStaleCPEI Overhead=1 Level=4 Template="CMI localValidate_CheckAndTimestampManually: Detected stale classpath entry for item 0x%p"
TraceExit=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_Exit3 Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Stale entry has invalidated the FIND. Returning -1."
TraceExit=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_ExitSuccess Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Compare succeeded. Returning %d. AddToIdentified=%d. StaleItem=0x%p."
TraceEvent=Trc_SHR_CMI_localValidate_CheckAndTimestampManually_RegisterFailed Overhead=1 Level=3 Template="CMI localValidate_CheckAndTimestampManually: Registering failed match in identified array"
TraceEntry=Trc_SHR_CMI_validate_EntryObsolete Obsolete Overhead=1 Level=3 Template="CMI validate: Validating found ROMClass wrapper 0x%p against classpath 0x%p with confirmed entries=%d"
TraceExit=Trc_SHR_CMI_validate_ExitSameInCache Overhead=1 Level=3 Template="CMI validate: Classpath in ROMClass and compareTo are same pointer. SHOULD NOT HAPPEN. Returning 1."
TraceExit=Trc_SHR_CMI_validate_ExitNotSameInCache Overhead=1 Level=3 Template="CMI validate: CompareTo is not local. SHOULD NEVER HAPPEN. Returning -1."
TraceExit=Trc_SHR_CMI_validate_ExitNotSamePartition Overhead=1 Level=3 Template="CMI validate: Not valid. Partitions do not match. Returning 0."
TraceExit=Trc_SHR_CMI_validate_ExitStaleItem Overhead=1 Level=3 Template="CMI validate: Detected stale item. Failing FIND. Returning 0."
TraceExit=Trc_SHR_CMI_validate_ExitError Overhead=1 Level=3 Template="CMI validate: StoreIdentified error. Returning -1."
TraceExit=Trc_SHR_CMI_validate_ExitDone Overhead=1 Level=3 Template="CMI validate: Done validation. Returning %d - foundAtIndex=%d."
TraceExit=Trc_SHR_CMI_validate_ExitFailedBefore Overhead=1 Level=3 Template="CMI validate: Exiting as match has failed before"
TraceEntry=Trc_SHR_CMI_setTimestamps_Entry Overhead=1 Level=3 Template="CMI setTimestamps: Entering setTimestamps for ClasspathWrapper 0x%p"
TraceEvent=Trc_SHR_CMI_setTimestamps_NewTimestamp Overhead=1 Level=3 Template="CMI setTimestamps: Setting %.*s to timestamp %lld"
TraceExit=Trc_SHR_CMI_setTimestamps_Exit Overhead=1 Level=3 Template="CMI setTimestamps: Exiting setTimestamps"
TraceEntry=Trc_SHR_CMI_storeNew_Entry Overhead=1 Level=3 Template="CMI storeNew: Entering storeNew for cache item 0x%p"
TraceExit=Trc_SHR_CMI_storeNew_ExitFalse Overhead=1 Level=3 Template="CMI storeNew: cpeTableUpdate failed. Returning false."
TraceExit=Trc_SHR_CMI_storeNew_ExitTrue Overhead=1 Level=3 Template="CMI storeNew: storeNew done. Returning true."
TraceEntry=Trc_SHR_CMI_markClasspathsStale_Entry Overhead=1 Level=1 Template="CMI markClasspathsStale: Marking classpaths containing classpath entry %.*s stale"
TraceEvent=Trc_SHR_CMI_markClasspathsStale_SetStaleFromIndex Overhead=1 Level=1 Template="CMI markClasspathsStale: Setting staleFromIndex to %d for link 0x%p"
TraceExit=Trc_SHR_CMI_markClasspathsStale_Exit Overhead=1 Level=1 Template="CMI markClasspathsStale: Done marking classpaths stale"
TraceEvent=Trc_SHR_CMI_isStale Noenv Overhead=1 Level=6 Template="CMI isStale: Testing ClasspathWrapper 0x%p. Returning %d."
// Not used - kept for tpnid consistency with 2.3
TraceEntry=Trc_SHR_CMI_reset_Entry Overhead=1 Level=1 Template="CMI reset: Resetting ClasspathManager"
TraceExit=Trc_SHR_CMI_reset_Exit Overhead=1 Level=1 Template="CMI reset: Done resetting ClasspathManager"
TraceEntry=Trc_SHR_CMI_touchForClassFiles_Entry Overhead=1 Level=3 Template="CMI touchForClassFiles: Looking for class %.*s in classpath 0x%p. Searching up to index %d."
TraceExit=Trc_SHR_CMI_touchForClassFiles_ExitFalse1 Overhead=1 Level=3 Template="CMI touchForClassFiles: Not going to check (multiple reasons). Returning false."
TraceExit=Trc_SHR_CMI_touchForClassFiles_ExitError Overhead=1 Level=3 Template="CMI touchForClassFiles: Error in createPathString. Returning false."
TraceExit=Trc_SHR_CMI_touchForClassFiles_ExitTrue Overhead=1 Level=3 Template="CMI touchForClassFiles: Found unexpected classfile: %s. Returning true."
TraceExit=Trc_SHR_CMI_touchForClassFiles_ExitFalse2 Overhead=1 Level=3 Template="CMI touchForClassFiles: Not found any unexpected classfiles. Returning false."
TraceEntry=Trc_SHR_CPI_compare_CPEI_Entry Noenv Overhead=1 Level=6 Template="CPI compare CPEI: Entering compare with ClasspathEntryItems 0x%p and 0x%p"
TraceExit=Trc_SHR_CPI_compare_CPEI_ExitSame Noenv Overhead=1 Level=6 Template="CPI compare CPEI: Same pointers. No comparison needed. Returning true."
TraceEvent=Trc_SHR_CPI_compare_CPEI_Paths Noenv Overhead=1 Level=6 Template="CPI compare CPEI: Info - paths of cpeis: %.*s and %.*s"
TraceExit=Trc_SHR_CPI_compare_CPEI_ExitNull Noenv Overhead=1 Level=6 Template="CPI compare CPEI: One cpei is NULL. THIS IS AN ERROR. Returning false."
TraceExit=Trc_SHR_CPI_compare_CPEI_ExitHash Noenv Overhead=1 Level=6 Template="CPI compare CPEI: Hash values don't match: Compared %d with %d. Returning false."
TraceExit=Trc_SHR_CPI_compare_CPEI_ExitProtocol Noenv Overhead=1 Level=6 Template="CPI compare CPEI: Protocols don't match: Compared %d with %d. Returning false."
TraceExit=Trc_SHR_CPI_compare_CPEI_ExitCompare Noenv Overhead=1 Level=6 Template="CPI compare CPEI: CompareUTF8 returned false. Returning false."
TraceExit=Trc_SHR_CPI_compare_CPEI_ExitSuccess Noenv Overhead=1 Level=6 Template="CPI compare CPEI: Comparison succeeded! Returning true."
TraceEntry=Trc_SHR_CPC_ClearIdentified_Entry Noenv Overhead=1 Level=6 Template="CPC clearIdentified: Entering clearIdentified with array 0x%p, length %d, classpath 0x%p"
TraceEvent=Trc_SHR_CPC_ClearIdentified_Killing Noenv Overhead=1 Level=6 Template="CPC clearIdentified: Clearing identified array element %d"
TraceExit=Trc_SHR_CPC_ClearIdentified_Exit Noenv Overhead=1 Level=6 Template="CPC clearIdentified: Done clearing identified array element"
TraceEntry=Trc_SHR_CPC_FreeIdentifiedClasspathArray_Entry Noenv Overhead=1 Level=1 Template="CPC freeIdentifiedClasspathArray: Freeing classpath array 0x%p, length %d"
TraceExit=Trc_SHR_CPC_FreeIdentifiedClasspathArray_Exit Noenv Overhead=1 Level=1 Template="CPC freeIdentifiedClasspathArray: Done freeing classpath array"
TraceEntry=Trc_SHR_CPC_InitializeIdentifiedClasspathArray_Entry Noenv Overhead=1 Level=1 Template="CPC initializeIdentifiedClasspathArray: Creating new array with %d elements"
TraceExit=Trc_SHR_CPC_InitializeIdentifiedClasspathArray_Exit1 Noenv Overhead=1 Level=1 Template="CPC initializeIdentifiedClasspathArray: Elements < 1 so returning NULL"
TraceExit=Trc_SHR_CPC_InitializeIdentifiedClasspathArray_Exit2 Noenv Overhead=1 Level=1 Template="CPC initializeIdentifiedClasspathArray: Failed to allocate memory for array. Returning NULL."
TraceExit=Trc_SHR_CPC_InitializeIdentifiedClasspathArray_Exit3 Noenv Overhead=1 Level=1 Template="CPC initializeIdentifiedClasspathArray: Returning new array 0x%p"
TraceEntry=Trc_SHR_CPC_getIdentifiedClasspath_Entry Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: Entering getIdentified with array 0x%p, length %d, helperID %d, itemsAdded %d"
TraceExit=Trc_SHR_CPC_getIdentifiedClasspath_ExitBadIndex Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: HelperID is greater than array length. Returning NULL."
TraceEvent=Trc_SHR_CPC_getIdentifiedClasspath_ComparePartitions Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: Comparing partitions %s and %.*s"
TraceExit=Trc_SHR_CPC_getIdentifiedClasspath_ExitNotFound Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: Identified classpath not found. Returning NULL."
TraceEvent=Trc_SHR_CPC_getIdentifiedClasspath_Found Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: Found possible array classpath in 0x%p . Validating..."
TraceEvent=Trc_SHR_CPC_getIdentifiedClasspath_Reset Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: Classpath has changed, so has been reset: Classpath entry count=%d but itemsAdded=%d."
TraceExit=Trc_SHR_CPC_getIdentifiedClasspath_NullCpData Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: No CpData for array element. Returning NULL."
TraceExit=Trc_SHR_CPC_getIdentifiedClasspath_ExitSuccess Overhead=1 Level=6 Template="CPC getIdentifiedClasspath: Succeeded. Found classpath. Returning 0x%p."
TraceEntry=Trc_SHR_CPC_getIDForIdentified_Entry Noenv Overhead=1 Level=6 Template="CPC getIDForIdentified: Entering getIDForIdentified with array 0x%p, length %d and classpath 0x%p"
TraceEvent=Trc_SHR_CPC_getIDForIdentified_Compare Obsolete Noenv Overhead=1 Level=6 Template="CPC getIDForIdentified: Comparing array element classpath 0x%p with 0x%p"
TraceExit=Trc_SHR_CPC_getIDForIdentified_ExitFound Noenv Overhead=1 Level=6 Template="CPC getIDForIdentified: Found classpath. Returning %d."
TraceExit=Trc_SHR_CPC_getIDForIdentified_ExitNotFound Noenv Overhead=1 Level=6 Template="CPC getIDForIdentified: Classpath not found. Returning ID_NOT_FOUND."
TraceEntry=Trc_SHR_CPC_setIdentifiedClasspath_Entry Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Entering setIdentified with array 0x%p, length %d, helperID %d, itemsAdded %d, classpath 0x%p"
TraceEvent=Trc_SHR_CPC_setIdentifiedClasspath_GrowingArray Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Growing array to %d elements..."
TraceExit=Trc_SHR_CPC_setIdentifiedClasspath_ExitAlloc Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Failed to allocate new array. Returning NULL."
TraceEvent=Trc_SHR_CPC_setIdentifiedClasspath_Partition Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Info - setting with partition %.*s"
TraceEvent=Trc_SHR_CPC_setIdentifiedClasspath_ExistingPartition Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Found existing partition holder"
TraceEvent=Trc_SHR_CPC_setIdentifiedClasspath_CreatePartitionLink Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Existing partition holder not found. Allocating new one."
TraceEvent=Trc_SHR_CPC_setIdentifiedClasspath_SetupLink Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Setting values in element 0x%p to helperID=%d, cpData=0x%p, entryCount=%d"
TraceExit=Trc_SHR_CPC_setIdentifiedClasspath_ExitDone Overhead=1 Level=6 Template="CPC setIdentifiedClasspath: Succeeded. Returning array length %d and array pointer 0x%p."
TraceEvent=Trc_SHR_CPC_findIdentifiedWithPartition_Partition Overhead=1 Level=6 Template="CPC findIdentifiedWithPartition: Looking for entry with partition %.*s..."
TraceEntry=Trc_SHR_CPC_localMatchCheck_Enter Overhead=1 Level=6 Template="CPC localMatchCheck: Called with callerHelperID=%d, arrayIndex=%d, indexInCacheHelper=%d"
TraceExit=Trc_SHR_CPC_localMatchCheck_Exit Overhead=1 Level=6 Template="CPC localMatchCheck: Exiting with %d"
TraceEvent=Trc_SHR_CC_startCriticalUpdate_Event NoEnv Overhead=1 Level=3 Template="CC startCriticalUpdate: starting critical update - setting crash counter to %d"
TraceEvent=Trc_SHR_CC_endCriticalUpdate_Event NoEnv Overhead=1 Level=3 Template="CC endCriticalUpdate: ending critical update - setting crash counter to %d"
// Crash points
TraceEntry=Trc_SHR_CC_CRASH1_commitUpdate_EntryObsolete Obsolete Overhead=1 Level=3 Template="CC commitUpdate: committing update"
TraceEvent=Trc_SHR_CC_CRASH2_commitUpdate_EnteredCritical Overhead=1 Level=3 Template="CC commitUpdate: entering critical section"
TraceEvent=Trc_SHR_CC_CRASH3_commitUpdate_Event1 Overhead=1 Level=3 Template="CC commitUpdate: updating theca->segmentBytes from %d to %d"
TraceEvent=Trc_SHR_CC_CRASH4_commitUpdate_Event2 Overhead=1 Level=3 Template="CC commitUpdate: theca->updateSRP from %d to %d"
TraceEvent=Trc_SHR_CC_CRASH5_commitUpdate_EndingCritical Overhead=1 Level=3 Template="CC commitUpdate: exiting critical section"
TraceExit=Trc_SHR_CC_CRASH6_commitUpdate_ExitObsolete Obsolete Overhead=1 Level=3 Template="CC commitUpdate: completed update - update count now %d"
// Alloc and Free events
TraceEvent=Trc_SHR_CM_createPathString_AllocateBuffer Overhead=1 Level=4 Template="CM createPathString: allocating string buffer of size %d at address 0x%p"
TraceEvent=Trc_SHR_RMI_RcLinkedListImpl_createLink_PoolNew Obsolete Noenv Overhead=1 Level=6 Template="RMI RcLinkedListImpl::createLink: creating new pool element from pool 0x%p"
TraceEvent=Trc_SHR_RMI_rcTableAdd_HashtableAdd Overhead=1 Level=6 Template="RMI rcTableAdd: hashTableAdd succeeded with rc=0x%p"
TraceEvent=Trc_SHR_RMI_prepareForCompare_AllocateTempBuf Overhead=1 Level=4 Template="RMI prepareForCompare: allocating temporary buffer for ROMClass comparison of size %d"
TraceEvent=Trc_SHR_RMI_findExisting_FreeBuffer Overhead=1 Level=4 Template="RMI findExisting: freeing temporary buffer at address 0x%p"
TraceEvent=Trc_SHR_CMI_touchForClassFiles_FreeBuffer Overhead=1 Level=6 Template="CMI touchForClassFiles: freeing string buffer at address 0x%p"
TraceEvent=Trc_SHR_CMI_CpLinkedListImpl_link_PoolNew NoEnv Overhead=1 Level=6 Template="CMI CpLinkedListImpl::link: creating new pool element from pool 0x%p"
TraceEvent=Trc_SHR_CMI_cpeTableAdd_PoolNewHdr Overhead=1 Level=6 Template="CMI cpeTableAdd: new pool header element for %.*s, CPEIndex %d, item 0x%p, doTag=%d created element at address 0x%p"
TraceEvent=Trc_SHR_CMI_cpeTableAdd_HashtableAdd Overhead=1 Level=6 Template="CMI cpeTableAdd: adding new hashtable item"
TraceEvent=Trc_SHR_INIT_hookStoreSharedClass_allocateClasspathItem Overhead=1 Level=3 Template="INIT hookStoreSharedClass: allocating ClasspathItem of size %d at address 0x%p"
TraceEvent=Trc_SHR_INIT_hookStoreSharedClass_allocateBuf Overhead=1 Level=3 Template="INIT hookStoreSharedClass: allocating string buffer at address 0x%p"
TraceEvent=Trc_SHR_INIT_hookStoreSharedClass_freeBuf Overhead=1 Level=3 Template="INIT hookStoreSharedClass: freeing string buffer at address 0x%p"
TraceEvent=Trc_SHR_INIT_hookFindSharedClass_allocateClasspathItem Overhead=1 Level=3 Template="INIT hookFindSharedClass: allocating ClasspathItem of size %d at address 0x%p"
TraceEvent=Trc_SHR_INIT_hookFindSharedClass_allocateBuf Overhead=1 Level=3 Template="INIT hookFindSharedClass: allocating string buffer at address 0x%p"
TraceEvent=Trc_SHR_INIT_hookFindSharedClass_freeBuf Overhead=1 Level=3 Template="INIT hookFindSharedClass: freeing string buffer at address 0x%p"
// Monitor events
TraceEntry=Trc_SHR_CM_enterLocalMutex_pre Noenv Overhead=1 Level=6 Template="CM enterLocalMutex PRE: Thread 0x%p entering %s from %s"
TraceExit=Trc_SHR_CM_enterLocalMutex_post Noenv Overhead=1 Level=6 Template="CM enterLocalMutex POST: Thread 0x%p entered %s (rc=%d) from %s"
TraceEntry=Trc_SHR_CM_exitLocalMutex_pre Noenv Overhead=1 Level=6 Template="CM exitLocalMutex PRE: Thread 0x%p exiting %s from %s"
TraceExit=Trc_SHR_CM_exitLocalMutex_post Noenv Overhead=1 Level=6 Template="CM exitLocalMutex POST: Thread 0x%p exited %s (rc=%d) from %s"
TraceEntry=Trc_SHR_CC_enterWriteMutex_Enter Noenv Overhead=1 Level=6 Template="CC enterWriteMutex PRE: Thread 0x%p entering writeMutex with lockCache=%d from %s"
TraceExit=Trc_SHR_CC_enterWriteMutex_Exit Noenv Overhead=1 Level=6 Template="CC enterWriteMutex POST: Thread 0x%p entered writeMutex with lockCache=%d from %s. Rc=%d."
TraceEntry=Trc_SHR_CC_exitWriteMutex_Enter Noenv Overhead=1 Level=6 Template="CC exitWriteMutex PRE: Thread 0x%p exiting writeMutex from %s"
TraceExit=Trc_SHR_CC_exitWriteMutex_Exit Noenv Overhead=1 Level=6 Template="CC exitWriteMutex POST: Thread 0x%p exited writeMutex from %s. Rc=%d."
TraceEntry=Trc_SHR_CC_enterReadMutex_Enter Noenv Overhead=1 Level=6 Template="CC enterReadMutex PRE: Thread 0x%p entering readMutex from %s"
TraceEvent=Trc_SHR_CC_enterReadMutex_WaitOnGlobalMutex Noenv Overhead=1 Level=6 Template="CC enterReadMutex: Thread 0x%p from %s detected locked cache, so waiting on global mutex"
TraceEvent=Trc_SHR_CC_enterReadMutex_ReleasingGlobalMutex Noenv Overhead=1 Level=6 Template="CC enterReadMutex: Thread 0x%p from %s got global mutex, so immediately freeing"
TraceExit=Trc_SHR_CC_enterReadMutex_Exit Noenv Overhead=1 Level=6 Template="CC enterReadMutex POST: Thread 0x%p entered readMutex from %s. Rc=%d."
TraceEntry=Trc_SHR_CC_exitReadMutex_Enter Noenv Overhead=1 Level=6 Template="CC exitReadMutex PRE: Thread 0x%p exiting readMutex from %s"
TraceExit=Trc_SHR_CC_exitReadMutex_Exit Noenv Overhead=1 Level=6 Template="CC exitReadMutex POST: Thread 0x%p exited readMutex from %s"
// Performance events
TraceEvent=Trc_SHR_INIT_PERFCNTR Overhead=1 Level=3 Template="INIT PERFCNTR: %d calls to findSharedClass have completed"
// TimestampManager events
TraceEvent=Trc_SHR_TMI_LocalCheckTimestamp_Checking_File Overhead=1 Level=6 Template="TMI localCheckTimestamp: Checking timestamp of FILE %s"
TraceEvent=Trc_SHR_TMI_LocalCheckTimestamp_Checking_Jar Overhead=1 Level=6 Template="TMI localCheckTimestamp: Checking timestamp of JAR/ZIP %s"
// OSCache Tracepoints
TraceEntry=Trc_SHR_OSC_Constructor_Entry NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache Constructor: rootName=%s length=%d create=%d"
TraceExit=Trc_SHR_OSC_Constructor_Exit NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache Constructor: rootName=%s"
TraceEntry=Trc_SHR_OSC_startup_Entry NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache startup: rootName=%s length=%d create=%d"
TraceExit=Trc_SHR_OSC_startup_Exit_Opened NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache startup: rootName=%s opened"
TraceExit=Trc_SHR_OSC_startup_Exit_Created NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache startup: rootName=%s created"
TraceExit=Trc_SHR_OSC_startup_Exit_Failed NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache startup: open/creating rootName=%s failed"
TraceEvent=Trc_SHR_OSC_startup_attempt_Restart NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache startup: retrying to open/create cache rootName=%s"
TraceEntry=Trc_SHR_OSC_createNewCache_Entry Obsolete NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache createNewCache Entered: rootName=%s"
TraceEvent=Trc_SHR_OSC_createNewCache_Event1 Obsolete NoEnv Overhead=1 Level=4 Group=OSCache Template="OSCache createNewCache calling j9shmem_open - shmem name = %s, size = %d"
TraceEvent=Trc_SHR_OSC_createNewCache_Event2 Obsolete NoEnv Overhead=1 Level=4 Group=OSCache Template="OSCache createNewCache a new semaphore was created, for an existing shared memory."
TraceEvent=Trc_SHR_OSC_GlobalLock_getMutex NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache Global Lock: OBTAINING for cache rootName=%s"
TraceEvent=Trc_SHR_OSC_GlobalLock_gotMutex NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache Global Lock: ACQUIRED for cache rootName=%s"
TraceEvent=Trc_SHR_OSC_GlobalLock_released NoEnv Overhead=1 Level=4 Group=OSCache Template="OSCache releasing Global Lock semaphore"
TraceEvent=Trc_SHR_OSC_createNewCache_Event4 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache calling initializer, intialiser=%p len=%d"
TraceEvent=Trc_SHR_OSC_createNewCache_Event5 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache return from initializer"
TraceDebug=Trc_SHR_OSC_createNewCache_Debug1 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache: GENJVMAT: %d, GENLOCK: %d, GENSTATE: %d"
TraceDebug=Trc_SHR_OSC_createNewCache_Debug2 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache: currentgeneration in semaphore = %d"
TraceExit=Trc_SHR_OSC_createNewCache_Exit_recreated Obsolete NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache createNewCache return opened (semaphore recreated)"
TraceExit=Trc_SHR_OSC_createNewCache_Exit_created Obsolete NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache createNewCache return created"
TraceExit=Trc_SHR_OSC_openCache_ExitAttachFailed NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache openCache failed to open shmem"
TraceExit=Trc_SHR_OSC_createNewCache_Exit2 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache failed to recreate semaphore"
TraceExit=Trc_SHR_OSC_openCache_ExitOpExist NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache openCache - cache does not exist and we only want to open existing ones!"
TraceExit=Trc_SHR_OSC_createNewCache_Exit4 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache - unknown error return by j9shmem_open!"
TraceEntry=Trc_SHR_OSC_openCache_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache openCaahe Entered rootName=%s"
TraceEvent=Trc_SHR_OSC_openCache_shmem_open NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache openCache calling shmem_open: name = %s, size = %d"
TraceEvent=Trc_SHR_OSC_openCache_release_cache_activity NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache openCache increment cache activity"
TraceExit=Trc_SHR_OSC_openCache_Exit_Restart1 NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache openCache return Restart - semaphore current generation number incorrect"
TraceExit=Trc_SHR_OSC_openCache_Exit_Restart2 NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache openCache return Restart - shm id is different"
TraceExit=Trc_SHR_OSC_openCache_Exit_Opened NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache openCache return Created rootName=%s"
TraceExit=Trc_SHR_OSC_openCache_Exit1 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache openCache exit - cache generation state incorrect"
TraceExit=Trc_SHR_OSC_openCache_Exit2 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache openCache exit - failed to allocate memory"
TraceExit=Trc_SHR_OSC_openCache_Exit3 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache openCache exit - failed to open shared memory region"
TraceEntry=Trc_SHR_OSC_newInstanceEntry NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache newInstance Entered"
TraceExit=Trc_SHR_OSC_newInstanceExit NoEnv Overhead=1 Level=5 Group=OSCache Template="OSCache newInstance Exit"
TraceEntry=Trc_SHR_OSC_recreateSemaphore_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache recreateSemaphore Entered"
TraceDebug=Trc_SHR_OSC_recreateSemaphore_Debug1 NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache recreateSemaphore: eyecatcher: %s header->size = %d\n"
TraceExit=Trc_SHR_OSC_recreateSemaphore_Exit1 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache recreateSemaphore Exit, failure = eyecatcher is different"
TraceExit=Trc_SHR_OSC_recreateSemaphore_Exit2 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache recreateSemaphore Exit, failure = version is incompatible, version of cache=%d, expected %d"
TraceExit=Trc_SHR_OSC_recreateSemaphore_Exit3 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache recreateSemaphore Exit, failure = modlevel is incompatible, modlevel of cache=%lld, expected %lld"
TraceExit=Trc_SHR_OSC_recreateSemaphore_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache recreateSemaphore Exit normally"
TraceEntry=Trc_SHR_OSC_detachRegion_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache detachRegion Entered"
TraceDebug=Trc_SHR_OSC_detachRegion_Debug NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache detachRegion: theBlock = %p, region beings at %p"
TraceExit=Trc_SHR_OSC_detachRegion_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache detachRegion Exited"
TraceEntry=Trc_SHR_OSC_cleanup_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache cleanup Entered"
TraceExit=Trc_SHR_OSC_cleanup_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache cleanup Exited"
TraceEntry=Trc_SHR_OSC_detach_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache detach Entered"
TraceDebug=Trc_SHR_OSC_detach_Debug NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache detach cache = %s, region = %p.\n"
TraceExit=Trc_SHR_OSC_detach_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache detach Exit - success"
TraceExit=Trc_SHR_OSC_detach_Exit1 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache detach Exit - already detached"
TraceEvent=Trc_SHR_OSC_attach_count_inc NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache increment generation JVM attach count"
TraceEvent=Trc_SHR_OSC_attach_count_dec NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache decrement generation JVM attach count"
TraceEvent=Trc_SHR_OSC_Header_Debug NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache add: cache_header = %p, version = %d, modlevel=%lld, specLengh=%d, path=%s"
TraceEntry=Trc_SHR_OSC_add_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache add Entered"
TraceExit=Trc_SHR_OSC_add_Exit1 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache add Exit, attach failed"
TraceExit=Trc_SHR_OSC_add_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache add Exit - success"
TraceEntry=Trc_SHR_OSC_attach_Entry NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache attach Entered"
TraceExit=Trc_SHR_OSC_attach_Exit1 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache attach attempt to attach after failed initialization"
TraceExit=Trc_SHR_OSC_attach_Exit2 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache attach failed to attach a region"
TraceExit=Trc_SHR_OSC_attach_Exit NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache attach returns success, result = %p"
TraceDebug=Trc_SHR_OSC_attach_Debug1 NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache attach: region beings at %p"
TraceDebug=Trc_SHR_OSC_attach_Debug2 NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache attach: size of header = %d"
TraceEvent=Trc_SHR_OSC_attach_Try_Attach Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache attach Now trying to attach the region"
TraceEntry=Trc_SHR_OSC_destroy_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache destroy Entered"
TraceExit=Trc_SHR_OSC_destroy_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache destroy Exit"
TraceEntry=Trc_SHR_OSC_enterMutex_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache enterMutex Entered cachename = %s"
TraceExit=Trc_SHR_OSC_enterMutex_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache enterMutex Exit cachename = %s"
TraceEntry=Trc_SHR_OSC_exitMutex_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache exitMutex Entered cachename = %s"
TraceExit=Trc_SHR_OSC_exitMutex_Exit NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache exitMutex Exit cachename = %s"
TraceEntry=Trc_SHR_OSC_getAllCacheStatistics_Entry NoEnv Overhead=1 Level=6 Group=OSCache Template="OSCache getAllCacheStatistics Entered"
TraceExit=Trc_SHR_OSC_getAllCacheStatistics_Exit1 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache getAllCacheStatistics Exit, No cache exists"
TraceExit=Trc_SHR_OSC_getAllCacheStatistics_Exit NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache getAllCacheStatistics Exit"
TraceExit=Trc_SHR_OSC_exitMutex_Exit1 NoEnv Overhead=1 Level=3 Group=OSCache Template="OSCache exitMutex failed"
TraceExit=Trc_SHR_OSC_enterMutex_Exit1 NoEnv Overhead=1 Level=3 Group=OSCache Template="OSCache enterMutex failed"
// POST-DCUT ADDITIONS
TraceEntry=Trc_SHR_INIT_hookStoreSharedClass_entry Overhead=1 Level=1 Template="INIT HOOK STORE CLASS: Entering hookStoreSharedClass"
TraceExit=Trc_SHR_INIT_hookStoreSharedClass_exit_Noop Overhead=1 Level=1 Template="INIT HOOK STORE CLASS: Exiting hookStoreSharedClass because store should not happen"
TraceExit=Trc_SHR_INIT_hookStoreSharedClass_exit Overhead=1 Level=1 Template="INIT HOOK STORE CLASS: Exiting hookStoreSharedClass"
TraceEntry=Trc_SHR_INIT_hookFindSharedClass_entry Overhead=1 Level=3 Template="INIT HOOK FIND CLASS: Entering hookFindSharedClass"
TraceExit=Trc_SHR_INIT_hookFindSharedClass_exit_Noop Overhead=1 Level=3 Template="INIT HOOK FIND CLASS: Exiting hookFindSharedClass because find should not happen"
TraceExit=Trc_SHR_INIT_hookFindSharedClass_exit Overhead=1 Level=3 Template="INIT HOOK FIND CLASS: Exiting hookFindSharedClass"
// All the compareWriteHash tracepoints are now redundant as this function has been replaced
TraceEntry=Trc_SHR_CC_compareWriteHash_Enter NoEnv Overhead=1 Level=4 Template="CC compareWriteHash: Entering with hashValue=%d and cacheValue=%d"
TraceEvent=Trc_SHR_CC_compareWriteHash_Updating NoEnv Overhead=1 Level=4 Template="CC compareWriteHash: Updated writeHash field in cache with value %d"
TraceExit=Trc_SHR_CC_compareWriteHash_Exit1 NoEnv Overhead=1 Level=4 Template="CC compareWriteHash: Detected same hashcode for different VM. Returning 1."
TraceExit=Trc_SHR_CC_compareWriteHash_Exit2 NoEnv Overhead=1 Level=4 Template="CC compareWriteHash: Detected same hashcode for same VM. Returning 0."
TraceExit=Trc_SHR_CC_compareWriteHash_Exit3 NoEnv Overhead=1 Level=4 Template="CC compareWriteHash: Done updating writeHash value in cache. Returning 0."
TraceEvent=Trc_SHR_CM_access_Event_IncreasingWriteHashObsolete Obsolete Overhead=1 Level=4 Template="CM access: increasing writeHash value to %d millis"
TraceEntry=Trc_SHR_CC_testAndSetWriteHash_Enter NoEnv Overhead=1 Level=4 Template="CC testAndSetWriteHash: VM %d entering with hashValue=%d, snapshot cacheValue=%x (actual cache value=%x)"
TraceExit=Trc_SHR_CC_testAndSetWriteHash_Exit1 NoEnv Overhead=1 Level=4 Template="CC testAndSetWriteHash: VM %d detected same hashcode entered by VM %d (actual cache value=%x). Returning 1."
TraceExit=Trc_SHR_CC_testAndSetWriteHash_Exit2 NoEnv Overhead=1 Level=4 Template="CC testAndSetWriteHash: VM %d did not detect a reason to wait (actual cache value=%x). Returning 0."
TraceEntry=Trc_SHR_CC_tryResetWriteHash_Entry NoEnv Overhead=1 Level=4 Template="CC tryResetWriteHash: VM %d entering with hashValue=%d, snapshot cacheValue=%x (actual cache value=%x)"
TraceExit=Trc_SHR_CC_tryResetWriteHash_Exit1 NoEnv Overhead=1 Level=4 Template="CC tryResetWriteHash: VM %d writeHash %x matched snapshot cacheValue, so reset writeHash to 0 (actual cache value=%x). Returning 1"
TraceExit=Trc_SHR_CC_tryResetWriteHash_Exit2 NoEnv Overhead=1 Level=4 Template="CC tryResetWriteHash: VM %d not resetting writeHash (actual cache value=%x). Returning 0"
TraceEntry=Trc_SHR_CC_setWriteHash_Entry NoEnv Overhead=1 Level=4 Template="CC setWriteHash: VM %d entering with hashValue=%d, snapshot cacheValue=%x (actual cache value=%x)"
TraceExit=Trc_SHR_CC_setWriteHash_Exit NoEnv Overhead=1 Level=4 Template="CC setWriteHash: VM %d compareAndSwap with oldNum=%x, value=%x, result=%x (actual cache value=%x)"
TraceEntry=Trc_SHR_CMI_testForClasspathReset_Entry Overhead=1 Level=2 Template="CMI testForClasspathReset: Entering..."
TraceExit=Trc_SHR_CMI_testForClasspathReset_ExitReset Overhead=1 Level=2 Template="CMI testForClasspathReset: Exiting having reset classpath. Returning 0"
TraceExit=Trc_SHR_CMI_testForClasspathReset_ExitDoNothing Overhead=1 Level=2 Template="CMI testForClasspathReset: Exiting having done nothing. Returning 1"
TraceEntry=Trc_SHR_CPI_addItem_Entry Noenv Overhead=1 Level=2 Template="CPI addItem: Adding item with path %.*s and protocol %d"
TraceExit=Trc_SHR_CPI_addItem_ExitTooMany Noenv Overhead=1 Level=2 Template="CPI addItem: ERROR - attempt to add too many items"
TraceExit=Trc_SHR_CPI_addItem_ExitError Noenv Overhead=1 Level=2 Template="CPI addItem: ERROR - could not create ClasspathEntryItem"
TraceExit=Trc_SHR_CPI_addItem_Exit Noenv Overhead=1 Level=2 Template="CPI addItem: Returning with itemsAdded=%d"
// Not used - kept for tpnid consistency with 2.3
TraceEntry=Trc_SHR_CPI_isSamePartitionContext_Entry Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Entering to compare ClasspathItems %p and %p"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitNullError Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: ERROR - one of the ClasspathItems is NULL"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitTrue1 Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Returning true as there are no partitions or contexts"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitTrue2 Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Returning true as the comparison succeeded"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitFalse1 Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Returning false as the partition comparison failed"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitFalse2 Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Returning false as one of the partitions is NULL"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitFalse3 Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Returning false as the context comparison failed"
TraceExit=Trc_SHR_CPI_isSamePartitionContext_ExitFalse4 Noenv Overhead=1 Level=6 Template="CPI isSamePartitionContext: Returning false as one of the contexts is NULL"
TraceEntry=Trc_SHR_CPI_compare_Entry Noenv Overhead=1 Level=2 Template="CPI compare: Entering to compare ClasspathItems %p and %p"
TraceExit=Trc_SHR_CPI_compare_ExitNullError Noenv Overhead=1 Level=2 Template="CPI compare: ERROR - one of the ClasspathItems is NULL"
TraceExit=Trc_SHR_CPI_compare_ExitTrue1 Noenv Overhead=1 Level=2 Template="CPI compare: Returning true as ClasspathItems are the same pointer"
TraceExit=Trc_SHR_CPI_compare_ExitTrue2 Noenv Overhead=1 Level=2 Template="CPI compare: Returning true as ClasspathItem comparison succeeded"
TraceExit=Trc_SHR_CPI_compare_ExitFalse1 Noenv Overhead=1 Level=2 Template="CPI compare: Returning false as itemsAdded are not the same"
TraceExit=Trc_SHR_CPI_compare_ExitFalse2 Noenv Overhead=1 Level=2 Template="CPI compare: Returning false as hashcodes don't match"
// Not used - kept for tpnid consistency with 2.3
TraceExit=Trc_SHR_CPI_compare_ExitFalse3 Noenv Overhead=1 Level=2 Template="CPI compare: Returning false as different partitions/contexts"
TraceExit=Trc_SHR_CPI_compare_ExitFalse4 Noenv Overhead=1 Level=2 Template="CPI compare: Returning false as ClasspathEntryItems at index %d do not match"
TraceEntry=Trc_SHR_CPI_find_Entry Noenv Overhead=1 Level=3 Template="CPI find: Looking in ClasspathItem %p with stopAtIndex=%d"
TraceExit=Trc_SHR_CPI_find_ExitFound Noenv Overhead=1 Level=3 Template="CPI find: Found entry at index %d"
TraceExit=Trc_SHR_CPI_find_ExitNotFound Noenv Overhead=1 Level=3 Template="CPI find: Could not find entry in classpath. Returning -1"
TraceEntry=Trc_SHR_CPI_writeToAddress_Entry Noenv Overhead=1 Level=1 Template="CPI writeToAddress: Serializing ClasspathItem to address %p"
TraceExit=Trc_SHR_CPI_writeToAddress_Exit Noenv Overhead=1 Level=1 Template="CPI writeToAddress: Done serializing ClasspathItem"
TraceEntry=Trc_SHR_CPI_itemAt_Entry Noenv Overhead=1 Level=6 Template="CPI itemAt: Requesting item at %d"
TraceExit=Trc_SHR_CPI_itemAt_ExitError Noenv Overhead=1 Level=6 Template="CPI itemAt: ERROR - Requested non-existant item - itemsAdded=%d"
TraceExit=Trc_SHR_CPI_itemAt_NotInitialized Noenv Overhead=1 Level=6 Template="CPI itemAt: ClasspathItem is not initialized yet. Returning null"
TraceExit=Trc_SHR_CPI_itemAt_ExitLocal Noenv Overhead=1 Level=6 Template="CPI itemAt: Returning local entry"
TraceExit=Trc_SHR_CPI_itemAt_ExitInCache Noenv Overhead=1 Level=6 Template="CPI itemAt: Returning entry in cache"
// Not used - kept for tpnid consistency with 2.3
TraceEntry=Trc_SHR_CPI_getPartition_Entry Noenv Overhead=1 Level=6 Template="CPI getPartition: Requesting partition"
TraceExit=Trc_SHR_CPI_getPartition_ExitNull Noenv Overhead=1 Level=6 Template="CPI getPartition: No partitionLen so returning NULL"
TraceExit=Trc_SHR_CPI_getPartition_ExitLocal Noenv Overhead=1 Level=6 Template="CPI getPartition: Returning local partition string"
TraceExit=Trc_SHR_CPI_getPartition_ExitInCache Noenv Overhead=1 Level=6 Template="CPI getPartition: Returning partition string in cache"
TraceEntry=Trc_SHR_CPI_getModContext_Entry Noenv Overhead=1 Level=6 Template="CPI getPartition: Requesting context"
TraceExit=Trc_SHR_CPI_getModContext_ExitNull Noenv Overhead=1 Level=6 Template="CPI getPartition: No contextLen so returning NULL"
TraceExit=Trc_SHR_CPI_getModContext_ExitLocal Noenv Overhead=1 Level=6 Template="CPI getPartition: Returning local context string"
TraceExit=Trc_SHR_CPI_getModContext_ExitInCache Noenv Overhead=1 Level=6 Template="CPI getPartition: Returning context string in cache"
TraceEntry=Trc_SHR_CPI_initialize_EntryObsolete Noenv Obsolete Overhead=1 Level=1 Template="CPI initialize: Initializing ClasspathItem id %d with %d entries, type %d, partition %s, modContext %s"
TraceExit=Trc_SHR_CPI_initialize_Exit Noenv Overhead=1 Level=1 Template="CPI initialize: Done initializing ClasspathItem"
TraceEvent=Trc_SHR_CMI_validate_ExitNotConfirmed Overhead=1 Level=3 Template="CPI validate: ROMClass found at index %d, but exiting with -1 because confirmedCount=%d"
TraceExit=Trc_SHR_CM_writeOrphanToCache_FixReturnFailed Obsolete Overhead=1 Level=1 Template="CM writeOrphanToCache: fixBytecodeReturn function failed. Failing write and returning NULL"
TraceExit=Trc_SHR_CM_writeROMClassToCache_FixReturnFailed Obsolete Overhead=1 Level=1 Template="CM writeROMClassToCache: fixBytecodeReturn function failed. Failing write and returning NULL"
TraceExit=Trc_SHR_RMI_prepareForCompare_ExitFixFailed Obsolete Overhead=1 Level=1 Template="CM prepareForCompare: fixBytecodeReturn function failed. Failing compare and returning NULL"
// POST SR1 ADDITIONS
TraceExit=Trc_SHR_CM_addROMClassToCache_ExitNull3 Overhead=1 Level=1 Template="CM addROMClassToCache: Did not succeed writing ROMClass. Returning NULL"
TraceExit=Trc_SHR_CM_add_ExitFull Obsolete Overhead=1 Level=1 Template="CM add: Exiting due to full cache"
TraceEntry=Trc_SHR_OSC_shmemOpenWrapper_Entry Overhead=1 Level=1 NoEnv Template="shmemOpenWrapper entered, cache name = %s"
TraceExit=Trc_SHR_OSC_shmemOpenWrapper_Exit Overhead=1 Level=1 NoEnv Template="shmemOpenWrapper exiting, return code = %d, specLeng = %d"
TraceEvent=Trc_SHR_OSC_shmemOpenWrapper_Sizes Overhead=1 Level=1 NoEnv Template="shmemOpenWrapper original specLeng = %d, maxSize = %lld, get_limit rc = %d"
TraceEvent=Trc_SHR_OSC_shmemOpenWrapper_Retry Overhead=1 Level=1 NoEnv Template="shmemOpenWrapper original cache size invalid, retrying with maxSize"
TraceExit=Trc_SHR_OSC_createNewCache_Exit5 Obsolete NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache createNewCache - wait for creation semaphore in j9shmem_open timed out"
TraceExit=Trc_SHR_OSC_openCache_Exit4 NoEnv Overhead=1 Level=1 Group=OSCache Template="OSCache openCache exit - wait for creation semaphore in j9shmem_open timed out"
// POST SR2 ADDITIONS
TraceExit=Trc_SHR_RMI_compareROMClasses_ExitIntern Obsolete Overhead=1 Level=3 Template="RMI compareROMClasses: Delegated to compareROMClassInvariants"
TraceException=Trc_SHR_RMI_compareROMClasses_ExitError Obsolete Overhead=1 Level=3 Template="RMI compareROMClasses: ERROR: Did not provide relocation data. Cannot compare"
TraceExit=Trc_SHR_RMI_prepareForCompare_ExitRelocFailed Obsolete Overhead=1 Level=1 Template="RMI prepareForCompare: Relocation of SRPs failed. Failing compare and returning NULL"
TraceEntry=Trc_SHR_RMI_relocateSRP_EntryObsolete Obsolete Overhead=1 Level=3 Template="RMI relocateSRP: Entering with info=%p and offset=%d"
TraceExit=Trc_SHR_RMI_relocateSRP_ExitSuccessObsolete Obsolete Overhead=1 Level=3 Template="RMI relocateSRP: Exiting having successfully relocated SRP"
TraceExit=Trc_SHR_RMI_relocateSRP_ExitOutOfRangeObsolete Obsolete Overhead=1 Level=3 Template="RMI relocateSRP: Failed - SRP out of range. Current SRP=%d. TwizzleResult=%lld";
TraceEntry=Trc_SHR_CM_relocatInvariants_Entry Obsolete Overhead=1 Level=3 Template="CM relocateInvariants: Entering for ROMClass %p and relocData %p"
TraceExit=Trc_SHR_CM_relocatInvariants_ExitRelocFail Obsolete Overhead=1 Level=3 Template="CM relocateInvariants: Exiting with 0 as relocateSRP failed"
TraceExit=Trc_SHR_CM_relocatInvariants_ExitSuccess Obsolete Overhead=1 Level=3 Template="CM relocateInvariants: Succeeded. Exiting with 1"
TraceEntry=Trc_SHR_RMI_compareROMClassWithInvariants_Entry Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Entering with rc1=%p, rc2=%p, rc1RelocData=%p"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit1 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as ROMClass headers do not match "
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit2 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as non-UTF data sizes do not match"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit3 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 memcmp of area between SRPs failed"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit4 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as UTF strings did not match"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit5 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as UTF SRP failed sanity check"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit6 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as resolved location of UTF SRP was invalid"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit7 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as resolved location of non-UTF SRP was invalid"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit8 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as non-UTF SRP canonical values did not match"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit9 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as lengths of end of areas being compared did not match"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit10 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as suspected padding at the end of ROMClass is not NULL"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_Exit11 Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Exiting with 0 as memcmp of end of area after last SRP failed"
TraceExit=Trc_SHR_RMI_compareROMClassWithInvariants_ExitOK Obsolete Overhead=1 Level=3 Template="CM compareROMClassWithInvariants: Successful match. Returning 1"
TraceEntry=Trc_SHR_RMI_compareROMClassHeaders_Entry Obsolete Overhead=1 Level=4 Template="CM compareROMClassHeaders: Entering with rc1=%p, rc2=%p"
TraceExit=Trc_SHR_RMI_compareROMClassHeaders_Exit1 Obsolete Overhead=1 Level=4 Template="CM compareROMClassHeaders: Exiting with 0 as values in the headers do not match"
TraceExit=Trc_SHR_RMI_compareROMClassHeaders_Exit2 Obsolete Overhead=1 Level=4 Template="CM compareROMClassHeaders: Exiting with 0 as mismatch for superclass/outerclass name"
TraceExit=Trc_SHR_RMI_compareROMClassHeaders_Exit3 Obsolete Overhead=1 Level=4 Template="CM compareROMClassHeaders: Exiting with 0 as UTF8 strings in the headers do not match"
TraceExit=Trc_SHR_RMI_compareROMClassHeaders_ExitOK Obsolete Overhead=1 Level=4 Template="CM compareROMClassHeaders: Successful match. Returning 1"
TraceEntry=Trc_SHR_RMI_sortRelocationData_Entry Obsolete Overhead=1 Level=4 Template="CM sortRelocationData: Sorting entries for relocData=%p"
TraceExit=Trc_SHR_RMI_sortRelocationData_Exit Obsolete Overhead=1 Level=4 Template="CM sortRelocationData: Exiting having sorted data entries"
TraceEntry=Trc_SHR_RMI_doSort_Entry Obsolete Overhead=1 Level=4 Template="CM doSort: Quicksort for start=%p at index %d; end=%p at index %d"
TraceExit=Trc_SHR_RMI_doSort_Exit Obsolete Overhead=1 Level=4 Template="CM doSort: Exiting having done quicksort"
TraceEntry=Trc_SHR_RMI_swapListItems_Entry Obsolete Overhead=1 Level=6 Template="CM swapListItems: Swap list items %p and %p"
TraceExit=Trc_SHR_RMI_swapListItems_Exit Obsolete Overhead=1 Level=6 Template="CM swapListItems: Exiting having done swap"
TraceEntry=Trc_SHR_CM_addNewROMImageSegment_Entry Overhead=1 Level=2 Template="CM addNewROMImageSegment: Adding new class segment for base=%p, end=%p"
TraceExit=Trc_SHR_CM_addNewROMImageSegment_Exit Overhead=1 Level=2 Template="CM addNewROMImageSegment: Created new class segment %p"
TraceEntry=Trc_SHR_CM_updateROMSegmentList_Entry Overhead=1 Level=3 Template="CM updateROMSegmentList: Updating class segment list - currentSegment=%p"
TraceExit=Trc_SHR_CM_updateROMSegmentList_Exit Overhead=1 Level=3 Template="CM updateROMSegmentList: Done updating class segment list - currentSegment=%p"
TraceEntry=Trc_SHR_CM_initializeROMSegmentList_Entry Overhead=1 Level=1 Template="CM initializeROMSegmentList: Initializing ROM image segment list"
TraceExit=Trc_SHR_CM_initializeROMSegmentList_Exit Overhead=1 Level=1 Template="CM initializeROMSegmentList: Done initializing ROM image segment list. Returning %d"
// JAVA 6 ADDITIONS
TraceEntry=Trc_SHR_CM_storeROMClassResource_Entry Overhead=1 Level=2 Template="CM storeROMClassResource: romAddress=0x%p, resourceDescriptor=0x%p, forceReplace=%d"
TraceExit=Trc_SHR_CM_storeROMClassResource_Exit1 Overhead=1 Level=2 Template="CM storeROMClassResource: Lock write mutex failed"
TraceExit=Trc_SHR_CM_storeROMClassResource_Exit2 Overhead=1 Level=2 Template="CM storeROMClassResource: Entry point checks failed"
TraceExit=Trc_SHR_CM_storeROMClassResource_Exit3 Overhead=1 Level=2 Template="CM storeROMClassResource: Record for resource already exists"
TraceExit=Trc_SHR_CM_storeROMClassResource_Exit4 Overhead=1 Level=2 Template="CM storeROMClassResource: Resource added successfully 0x%p"
TraceEntry=Trc_SHR_CM_findROMClassResource_Entry Overhead=1 Level=3 Template="CM findROMClassResource: Adding resource 0x%p"
TraceExit=Trc_SHR_CM_findROMClassResource_Exit1 Overhead=1 Level=3 Template="CM findROMClassResource: Entry point checks failed"
TraceExit=Trc_SHR_CM_findROMClassResource_Exit2 Overhead=1 Level=3 Template="CM findROMClassResource: Resource found successfully 0x%p"
TraceEntry=Trc_SHR_RRM_localHashTableCreate_Entry Overhead=1 Level=1 Template="RRM localHashTableCreate: Creating new hashtable with %d initial entries"
TraceExit=Trc_SHR_RRM_localHashTableCreate_Exit Overhead=1 Level=1 Template="RRM localHashTableCreate: Created hashtable at address 0x%p"
TraceEntry=Trc_SHR_RRM_rrmHashFn_Entry Noenv Overhead=1 Level=6 Template="RRM rrmHashFn: Creating hashcode for item 0x%p"
TraceExit=Trc_SHR_RRM_rrmHashFn_Exit Noenv Overhead=1 Level=6 Template="RRM rrmHashFn: Returning hashcode %d"
TraceEntry=Trc_SHR_RRM_rrmHashEqualFn_Entry Noenv Overhead=1 Level=6 Template="RRM rrmHashEqualFn: Comparing 0x%p with 0x%p"
TraceExit=Trc_SHR_RRM_rrmHashEqualFn_Exit1 Noenv Overhead=1 Level=6 Template="RRM rrmHashEqualFn: One key is null. Exiting with false."
TraceExit=Trc_SHR_RRM_rrmHashEqualFn_Exit2 Noenv Overhead=1 Level=6 Template="RRM rrmHashEqualFn: Key lengths don't match. Exiting with false."
TraceExit=Trc_SHR_RRM_rrmHashEqualFn_Exit3 Noenv Overhead=1 Level=6 Template="RRM rrmHashEqualFn: Called compareUTF8. Result=%d"
TraceEntry=Trc_SHR_RRM_rrmTableAdd_Entry Overhead=1 Level=6 Template="RRM rrmTableAdd: Entering add with key %d for item 0x%p"
TraceException=Trc_SHR_RRM_rrmTableAdd_Exception1 Overhead=1 Level=6 Template="RRM rrmTableAdd: hashTableAdd failed"
TraceExit=Trc_SHR_RRM_rrmTableAdd_Exit1 Overhead=1 Level=6 Template="RRM rrmTableAdd: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_RRM_rrmTableAdd_Exit2 Overhead=1 Level=6 Template="RRM rrmTableAdd: Succeeded in adding item. Returning 0x%p."
TraceExit=Trc_SHR_RRM_rrmTableAdd_Exit3 Overhead=1 Level=6 Template="RRM rrmTableAdd: Failed to create new HashTableEntry. Returning NULL."
TraceEvent=Trc_SHR_RRM_rrmTableAdd_HashtableAdd Overhead=1 Level=6 Template="RRM rrmTableAdd: hashTableAdd succeeded with returnVal=0x%p"
TraceEntry=Trc_SHR_RRM_rrmTableLookup_Entry Overhead=1 Level=4 Template="RRM rrmTableLookup: Entering lookup with key %d"
TraceEvent=Trc_SHR_RRM_rrmTableLookup_HashtableFind Overhead=1 Level=4 Template="RRM rrmTableLookup: Done hashTableFind. Result=0x%p"
TraceExit=Trc_SHR_RRM_rrmTableLookup_Exit1 Overhead=1 Level=4 Template="RRM rrmTableLookup: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_RRM_rrmTableLookup_Exit2 Overhead=1 Level=4 Template="RRM rrmTableLookup: Exiting lookup with result 0x%p"
TraceEntry=Trc_SHR_CMMI_newInstance_Entry Noenv Overhead=1 Level=1 Template="CMMI newInstance: Creating new CompiledMethodManager. vm=0x%p. cache=0x%p"
TraceExit=Trc_SHR_CMMI_newInstance_Exit Noenv Overhead=1 Level=1 Template="CMMI newInstance: Created CompiledMethodManager at address 0x%p"
TraceEntry=Trc_SHR_CMMI_initialize_Entry Noenv Overhead=1 Level=1 Template="CMMI initialize: Initializing CompiledMethodManager"
TraceExit=Trc_SHR_CMMI_initialize_Exit Noenv Overhead=1 Level=1 Template="CMMI initialize: Done initializing CompiledMethodManager"
TraceEntry=Trc_SHR_RRM_storeNew_Entry Overhead=1 Level=6 Template="RRM storeNew: storeNew called for item at address 0x%p"
TraceExit=Trc_SHR_RRM_storeNew_ExitTrue Overhead=1 Level=6 Template="RRM storeNew: storeNew returning true"
TraceExit=Trc_SHR_RRM_storeNew_ExitFalse Overhead=1 Level=6 Template="RRM storeNew: storeNew returning false"
TraceEntry=Trc_SHR_RRM_find_Entry Obsolete Overhead=1 Level=3 Template="RRM findResource: Looking for resource for ROMAddress 0x%p"
TraceExit=Trc_SHR_RRM_find_Exit Overhead=1 Level=3 Template="RRM findResource: Returning with returnVal=%d"
TraceEntry=Trc_SHR_SMI_localHashTableCreate_Entry Overhead=1 Level=1 Template="SMI localHashTableCreate: Creating new hashtable with %d initial entries"
TraceExit=Trc_SHR_SMI_localHashTableCreate_Exit Overhead=1 Level=1 Template="SMI localHashTableCreate: Created hashtable at address 0x%p"
TraceEntry=Trc_SHR_SMI_scHashFn_Entry Noenv Overhead=1 Level=6 Template="SMI scHashFn: Creating hashcode for item 0x%p"
TraceExit=Trc_SHR_SMI_scHashFn_Exit Noenv Overhead=1 Level=6 Template="SMI scHashFn: Returning hashcode %u"
TraceEntry=Trc_SHR_SMI_scHashEqualFn_Entry Noenv Overhead=1 Level=6 Template="SMI scHashEqualFn: Comparing 0x%p with 0x%p"
TraceExit=Trc_SHR_SMI_scHashEqualFn_Exit1 Obsolete Noenv Overhead=1 Level=6 Template="SMI scHashEqualFn: One key is null. Exiting with false."
TraceExit=Trc_SHR_SMI_scHashEqualFn_Exit2 Obsolete Noenv Overhead=1 Level=6 Template="SMI scHashEqualFn: Key lengths don't match. Exiting with false."
TraceExit=Trc_SHR_SMI_scHashEqualFn_Exit3 Noenv Overhead=1 Level=6 Template="SMI scHashEqualFn: Called compareUTF8. Result=%d"
TraceEntry=Trc_SHR_SMI_scTableAdd_Entry Overhead=1 Level=6 Template="SMI scTableAdd: Entering add with key %.*s for item 0x%p"
TraceException=Trc_SHR_SMI_scTableAdd_Exception1 Overhead=1 Level=6 Template="SMI scTableAdd: hashTableAdd failed"
TraceExit=Trc_SHR_SMI_scTableAdd_Exit1 Overhead=1 Level=6 Template="SMI scTableAdd: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_SMI_scTableAdd_Exit2 Overhead=1 Level=6 Template="SMI scTableAdd: Succeeded in adding item. Returning 0x%p."
TraceEvent=Trc_SHR_SMI_scTableAdd_HashtableAdd Overhead=1 Level=6 Template="SMI scTableAdd: hashTableAdd succeeded with returnVal=0x%p"
TraceEntry=Trc_SHR_SMI_scTableLookup_Entry Overhead=1 Level=4 Template="SMI scTableLookup: Entering lookup with name %.*s"
TraceEvent=Trc_SHR_SMI_scTableLookup_HashtableFind Overhead=1 Level=4 Template="SMI scTableLookup: Done hashTableFind. Result=0x%p"
TraceExit=Trc_SHR_SMI_scTableLookup_Exit1 Overhead=1 Level=4 Template="SMI scTableLookup: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_SMI_scTableLookup_Exit2 Overhead=1 Level=4 Template="SMI scTableLookup: Exiting lookup with result 0x%p"
TraceEntry=Trc_SHR_SMI_newInstance_Entry Noenv Overhead=1 Level=1 Template="SMI newInstance: Creating new ScopeManager. vm=0x%p. cache=0x%p"
TraceExit=Trc_SHR_SMI_newInstance_Exit Noenv Overhead=1 Level=1 Template="SMI newInstance: Created ScopeManager at address 0x%p"
TraceEntry=Trc_SHR_SMI_initialize_Entry Noenv Overhead=1 Level=1 Template="SMI initialize: Initializing ScopeManager"
TraceExit=Trc_SHR_SMI_initialize_Exit Noenv Overhead=1 Level=1 Template="SMI initialize: Done initializing ScopeManager"
TraceEntry=Trc_SHR_SMI_storeNew_Entry Overhead=1 Level=6 Template="SMI storeNew: storeNew called for item at address 0x%p"
TraceExit=Trc_SHR_SMI_storeNew_ExitTrue Overhead=1 Level=6 Template="SMI storeNew: storeNew returning true"
TraceExit=Trc_SHR_SMI_storeNew_ExitFalse Overhead=1 Level=6 Template="SMI storeNew: storeNew returning false"
TraceEntry=Trc_SHR_SMI_findScopeForUTF_Entry Overhead=1 Level=2 Template="SMI findScopeForUTF: looking for cached scope match for localScope=0x%p"
TraceExit=Trc_SHR_SMI_findScopeForUTF_Exit Overhead=1 Level=2 Template="SMI findScopeForUTF: Returning 0x%p"
TraceEntry=Trc_SHR_SMI_validate_Entry Overhead=1 Level=1 Template="SMI validate: Called validate with partition=0x%p and modContext=0x%p"
TraceExit=Trc_SHR_SMI_validate_Exit1 Overhead=1 Level=1 Template="SMI validate: Exiting as Item is not a Scoped ROMClass"
TraceExit=Trc_SHR_SMI_validate_ExitFailed2 Overhead=1 Level=1 Template="SMI validate: Exiting with 0 - partition found in cache, but partitions do not match"
TraceExit=Trc_SHR_SMI_validate_ExitFailed3 Overhead=1 Level=1 Template="SMI validate: Exiting with 0 - partition not found in cache, but item has a partition"
TraceExit=Trc_SHR_SMI_validate_ExitFailed4 Overhead=1 Level=1 Template="SMI validate: Exiting with 0 - modContext found in cache, but modContexts do not match"
TraceExit=Trc_SHR_SMI_validate_ExitFailed5 Overhead=1 Level=1 Template="SMI validate: Exiting with 0 - modContext not found in cache, but item has a modContext"
TraceExit=Trc_SHR_SMI_validate_ExitOK Overhead=1 Level=1 Template="SMI validate: Exiting with 1 - validation succeeded"
TraceExit=Trc_SHR_CM_updateClasspathInfo_ExitNull4 Overhead=1 Level=2 Template="CM updateClasspathInfo: Exiting with NULL - failed to add new partition scope"
TraceExit=Trc_SHR_CM_updateClasspathInfo_ExitNull5 Overhead=1 Level=2 Template="CM updateClasspathInfo: Exiting with NULL - failed to add new modContext scope"
TraceEntry=Trc_SHR_CM_addScopeToCache_Entry Overhead=1 Level=2 Template="CM addScopeToCache: Adding scope %.*s to cache"
TraceExit=Trc_SHR_CM_addScopeToCache_Exit_Null Overhead=1 Level=2 Template="CM addScopeToCache: Exiting with NULL - cache is probably full"
TraceExit=Trc_SHR_CM_addScopeToCache_Exit Overhead=1 Level=2 Template="CM addScopeToCache: Successfully added scope at address 0x%p"
TraceEntry=Trc_SHR_CM_runEntryPointChecks_Entry Overhead=1 Level=3 Template="CM runEntryPointChecks: Running checks to ensure all is well"
TraceExit=Trc_SHR_CM_runEntryPointChecks_Exit_Failed1 Overhead=1 Level=3 Template="CM runEntryPointChecks: Exiting due to corrupt cache"
TraceExit=Trc_SHR_CM_runEntryPointChecks_Exit_Failed2 Overhead=1 Level=3 Template="CM runEntryPointChecks: Exiting as address provided is not in the cache"
TraceExit=Trc_SHR_CM_runEntryPointChecks_Exit_Failed3 Overhead=1 Level=3 Template="CM runEntryPointChecks: Exiting due to hashtable refresh failure"
TraceExit=Trc_SHR_CM_runEntryPointChecks_Exit_OK Overhead=1 Level=3 Template="CM runEntryPointChecks: Checks succeeded"
TraceEntry=Trc_SHR_CM_addROMClassResourceToCache_Entry Overhead=1 Level=2 Template="CM addROMClassResourceToCache: romAddress=0x%p, resourceDescriptor=0x%p"
TraceExit=Trc_SHR_CM_addROMClassResourceToCache_Exit_Null Overhead=1 Level=2 Template="CM addROMClassResourceToCache: Failed to add resource, returning null"
TraceExit=Trc_SHR_CM_addROMClassResourceToCache_Exit Overhead=1 Level=2 Template="CM addROMClassResourceToCache: Done adding resource. Result = 0x%p"
TraceEntry=Trc_SHR_M_initializeHashTable_Entry Overhead=1 Level=1 Template="M initializeHashTable: Entering for Manager of %s"
TraceExit=Trc_SHR_M_initializeHashTable_Exit Overhead=1 Level=1 Template="M initializeHashTable: Exiting with %d"
TraceEntry=Trc_SHR_M_tearDownHashTable_Entry Overhead=1 Level=1 Template="M tearDownHashTable: Entering for Manager of %s"
TraceExit=Trc_SHR_M_tearDownHashTable_Exit Overhead=1 Level=1 Template="M tearDownHashTable: Exit"
TraceEntry=Trc_SHR_M_startup_Entry Overhead=1 Level=1 Template="M startup: Starting up Manager of %s"
TraceExit=Trc_SHR_M_startup_Exit1 Overhead=1 Level=1 Template="M startup: Failed to create hashtable. Returning -1."
TraceExit=Trc_SHR_M_startup_Exit2 Overhead=1 Level=1 Template="M startup: Failed to create hashtable mutex. Returning -1."
TraceExit=Trc_SHR_M_startup_Exit3 Overhead=1 Level=1 Template="M startup: localPostStartup function failed. Returning -1."
TraceExit=Trc_SHR_M_startup_Exit4 Overhead=1 Level=1 Template="M startup: Manager started successfully"
TraceEntry=Trc_SHR_M_cleanup_Entry Overhead=1 Level=1 Template="M cleanup: Cleaning up Manager of %s"
TraceExit=Trc_SHR_M_cleanup_Exit Overhead=1 Level=1 Template="M cleanup: Done cleaning up Manager"
TraceEntry=Trc_SHR_M_reset_Entry Overhead=1 Level=1 Template="M reset: Resetting Manager of %s"
TraceExit=Trc_SHR_M_reset_Exit Overhead=1 Level=1 Template="M reset: Done resetting Manager. Returning %d"
TraceEntry=Trc_SHR_RMI_localInitializePools_Entry Overhead=1 Level=1 Template="RMI localInitializePools: Initializing ROMClassManager pools"
TraceExit=Trc_SHR_RMI_localInitializePools_ExitFailed Overhead=1 Level=1 Template="RMI localInitializePools: Failed to initialize pool. Returning -1"
TraceExit=Trc_SHR_RMI_localInitializePools_ExitOK Overhead=1 Level=1 Template="RMI localInitializePools: Done initializing pools"
TraceEntry=Trc_SHR_RMI_localTearDownPools_Entry Overhead=1 Level=1 Template="RMI localTearDownPools: Cleaning up ROMClassManager pools"
TraceExit=Trc_SHR_RMI_localTearDownPools_Exit Overhead=1 Level=1 Template="RMI localTearDownPools: Done cleaning up ROMClassManager pools"
TraceEntry=Trc_SHR_CMI_localInitializePools_Entry Overhead=1 Level=1 Template="CMI localInitializePools: Initializing ClasspathManager pools"
TraceExit=Trc_SHR_CMI_localInitializePools_Exit Overhead=1 Level=1 Template="CMI localInitializePools: Done initializing pools. Returning %d"
TraceEntry=Trc_SHR_CMI_localTearDownPools_Entry Overhead=1 Level=1 Template="CMI localTearDownPools: Cleaning up ClasspathManager pools"
TraceExit=Trc_SHR_CMI_localTearDownPools_Exit Overhead=1 Level=1 Template="CMI localTearDownPools: Done cleaning up ClasspathManager pools"
TraceEntry=Trc_SHR_INIT_storeCompiledMethod_entry Overhead=1 Level=2 Template="INIT HOOK STORE AOT: Entering j9shr_storeCompiledMethod"
TraceExit=Trc_SHR_INIT_storeCompiledMethod_exit_Noop Overhead=1 Level=2 Template="INIT HOOK STORE AOT: Exiting j9shr_storeCompiledMethod because store should not happen"
TraceExit=Trc_SHR_INIT_storeCompiledMethod_exit Overhead=1 Level=2 Template="INIT HOOK STORE AOT: Exiting j9shr_storeCompiledMethod with returnVal=0x%p"
TraceEntry=Trc_SHR_INIT_findCompiledMethod_entry Overhead=1 Level=2 Template="INIT HOOK FIND AOT: Entering j9shr_findCompiledMethod"
TraceExit=Trc_SHR_INIT_findCompiledMethod_exit_Noop Overhead=1 Level=2 Template="INIT HOOK FIND AOT: Exiting j9shr_findCompiledMethod because find should not happen"
TraceExit=Trc_SHR_INIT_findCompiledMethod_exit Overhead=1 Level=2 Template="INIT HOOK FIND AOT: Exiting j9shr_findCompiledMethod with returnVal=0x%p"
TraceEntry=Trc_SHR_INIT_storeSharedData_entry Overhead=1 Level=2 Template="INIT HOOK STORE DATA: Entering j9shr_storeSharedData with key=%.*s"
TraceExit=Trc_SHR_INIT_storeSharedData_exit_Noop Overhead=1 Level=2 Template="INIT HOOK STORE DATA: Exiting j9shr_storeSharedData because store should not happen"
TraceExit=Trc_SHR_INIT_storeSharedData_exit Overhead=1 Level=2 Template="INIT HOOK STORE DATA: Exiting j9shr_storeSharedData with returnVal=0x%p"
TraceEntry=Trc_SHR_INIT_findSharedData_entry Overhead=1 Level=2 Template="INIT HOOK FIND DATA: Entering j9shr_findSharedData with key=%.*s"
TraceExit=Trc_SHR_INIT_findSharedData_exit_Noop Overhead=1 Level=2 Template="INIT HOOK FIND DATA: Exiting j9shr_findSharedData because find should not happen"
TraceExit=Trc_SHR_INIT_findSharedData_exit Overhead=1 Level=2 Template="INIT HOOK FIND DATA: Exiting j9shr_findSharedData with returnVal=0x%p"
TraceEntry=Trc_SHR_CM_addByteDataToCache_Entry Overhead=1 Level=2 Template="CM addByteDataToCache: Entering with localBDM=0x%p, tokenKey=0x%p, data=0x%p"
TraceExit=Trc_SHR_CM_addByteDataToCache_Exit_Null Overhead=1 Level=2 Template="CM addByteDataToCache: Returning NULL as cache is likely full"
TraceExit=Trc_SHR_CM_addByteDataToCache_Exit Overhead=1 Level=2 Template="CM addByteDataToCache: Returning pointer to newly added data 0x%p"
TraceEntry=Trc_SHR_CM_storeSharedData_Entry Overhead=1 Level=2 Template="CM storeSharedData: Entering with key=%.*s, data=0x%p"
TraceEvent=Trc_SHR_CM_storeSharedData_FoundExisting Overhead=1 Level=1 Template="CM storeSharedData: The exact same data already exists for this key"
TraceException=Trc_SHR_CM_storeSharedData_NoSCM Overhead=1 Level=1 Template="CM storeSharedData: Cannot access ScopeManager"
TraceException=Trc_SHR_CM_storeSharedData_NoMem Overhead=1 Level=1 Template="CM storeSharedData: Cannot allocate memory for string buffer"
TraceEvent=Trc_SHR_CM_storeSharedData_CannotAddScope Overhead=1 Level=1 Template="CM storeSharedData: Cannot add new Scope to the cache"
TraceExit=Trc_SHR_CM_storeSharedData_Exit1 Overhead=1 Level=2 Template="CM storeSharedData: Returning NULL as failed to enter write mutex"
TraceExit=Trc_SHR_CM_storeSharedData_Exit2 Overhead=1 Level=2 Template="CM storeSharedData: Returning NULL as entry point checks failed"
TraceExit=Trc_SHR_CM_storeSharedData_Exit3 Overhead=1 Level=2 Template="CM storeSharedData: Returning pointer to cached data 0x%p"
TraceEntry=Trc_SHR_CM_findSharedData_Entry Overhead=1 Level=2 Template="CM findSharedData: Entering with key=%.*s"
TraceExit=Trc_SHR_CM_findSharedData_Exit1 Overhead=1 Level=2 Template="CM findSharedData: Returning NULL as entry point checks failed"
TraceExit=Trc_SHR_CM_findSharedData_Exit2 Overhead=1 Level=2 Template="CM findSharedData: Returning %zd cached data elements(s)"
TraceEntry=Trc_SHR_BDMI_localHashTableCreate_Entry Overhead=1 Level=1 Template="BDMI localHashTableCreate: Creating new hashtable with %d initial entries"
TraceExit=Trc_SHR_BDMI_localHashTableCreate_Exit Overhead=1 Level=1 Template="BDMI localHashTableCreate: Created hashtable at address 0x%p"
TraceEntry=Trc_SHR_BDMI_bdHashFn_Entry Noenv Overhead=1 Level=6 Template="BDMI bdHashFn: Creating hashcode for item 0x%p"
TraceExit=Trc_SHR_BDMI_bdHashFn_Exit Noenv Overhead=1 Level=6 Template="BDMI bdHashFn: Returning hashcode %d"
TraceEntry=Trc_SHR_BDMI_bdHashEqualFn_Entry Noenv Overhead=1 Level=6 Template="BDMI scHashEqualFn: Comparing 0x%p with 0x%p"
TraceExit=Trc_SHR_BDMI_bdHashEqualFn_Exit1 Noenv Overhead=1 Level=6 Template="BDMI scHashEqualFn: One key is null. Exiting with false."
TraceExit=Trc_SHR_BDMI_bdHashEqualFn_Exit2 Noenv Overhead=1 Level=6 Template="BDMI scHashEqualFn: Key lengths don't match. Exiting with false."
TraceExit=Trc_SHR_BDMI_bdHashEqualFn_Exit3 Noenv Overhead=1 Level=6 Template="BDMI scHashEqualFn: Called compareUTF8. Result=%d"
TraceEntry=Trc_SHR_BDMI_bdTableAdd_Entry Overhead=1 Level=6 Template="BDMI bdTableAdd: Entering add with key %.*s for item 0x%p"
TraceException=Trc_SHR_BDMI_bdTableAdd_Exception1 Overhead=1 Level=6 Template="BDMI bdTableAdd: hashTableAdd failed"
TraceExit=Trc_SHR_BDMI_bdTableAdd_Exit1 Overhead=1 Level=6 Template="BDMI bdTableAdd: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_BDMI_bdTableAdd_Exit2 Overhead=1 Level=6 Template="BDMI bdTableAdd: Succeeded in adding item. Returning 0x%p."
TraceEvent=Trc_SHR_BDMI_bdTableAdd_HashtableAdd Overhead=1 Level=6 Template="BDMI bdTableAdd: hashTableAdd succeeded with returnVal=0x%p"
TraceEntry=Trc_SHR_BDMI_bdTableLookup_Entry Overhead=1 Level=4 Template="BDMI bdTableLookup: Entering lookup with name %.*s"
TraceEvent=Trc_SHR_BDMI_bdTableLookup_HashtableFind Overhead=1 Level=4 Template="BDMI bdTableLookup: Done hashTableFind. Result=0x%p"
TraceExit=Trc_SHR_BDMI_bdTableLookup_Exit1 Overhead=1 Level=4 Template="BDMI bdTableLookup: failed to get local mutex. Tried %d times. Returning NULL."
TraceExit=Trc_SHR_BDMI_bdTableLookup_Exit2 Overhead=1 Level=4 Template="BDMI bdTableLookup: Exiting lookup with result 0x%p"
TraceEntry=Trc_SHR_BDMI_newInstance_Entry Noenv Overhead=1 Level=1 Template="BDMI newInstance: Creating new ByteDataManager. vm=0x%p. cache=0x%p"
TraceExit=Trc_SHR_BDMI_newInstance_Exit Noenv Overhead=1 Level=1 Template="BDMI newInstance: Created ByteDataManager at address 0x%p"
TraceEntry=Trc_SHR_BDMI_initialize_Entry Noenv Overhead=1 Level=1 Template="BDMI initialize: Initializing ByteDataManager"
TraceExit=Trc_SHR_BDMI_initialize_Exit Noenv Overhead=1 Level=1 Template="BDMI initialize: Done initializing ByteDataManager"
TraceEntry=Trc_SHR_BDMI_storeNew_Entry Overhead=1 Level=6 Template="BDMI storeNew: storeNew called for item at address 0x%p"
TraceExit=Trc_SHR_BDMI_storeNew_ExitTrue Overhead=1 Level=6 Template="BDMI storeNew: storeNew returning true"
TraceExit=Trc_SHR_BDMI_storeNew_ExitFalse Overhead=1 Level=6 Template="BDMI storeNew: storeNew returning false"
TraceEntry=Trc_SHR_CMI_localPostStartup_Entry Overhead=1 Level=1 Template="CMI localPostStartup: Starting ClasspathManager"
TraceExit=Trc_SHR_CMI_localPostStartup_Exit1 Overhead=1 Level=1 Template="CMI localPostStartup: Failed to create identifiedMutex. Returning -1."
TraceExit=Trc_SHR_CMI_localPostStartup_Exit2 Overhead=1 Level=1 Template="CMI localPostStartup: Done starting ClasspathManager."
TraceEntry=Trc_SHR_CMI_localPostCleanup_Entry Overhead=1 Level=1 Template="CMI localPostCleanup: Cleaning up ClasspathManager"
TraceExit=Trc_SHR_CMI_localPostCleanup_Exit Overhead=1 Level=1 Template="CMI localPostCleanup: Done cleaning up ClasspathManager"
TraceEntry=Trc_SHR_CM_existsCachedCodeForROMMethod_Entry Overhead=1 Level=6 Template="CMMI existsCachedCodeForROMMethod: Entering for ROMMethod %p"
TraceExit=Trc_SHR_CM_existsCachedCodeForROMMethod_Exit1 Overhead=1 Level=6 Template="CMMI existsCachedCodeForROMMethod: Exiting with %d"
TraceExit=Trc_SHR_CM_existsCachedCodeForROMMethod_Exit2 Overhead=1 Level=6 Template="CMMI existsCachedCodeForROMMethod: Exiting with 0 as CMM is not started"
TraceEntry=Trc_SHR_OSC_Mmap_Constructor_Entry NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::SH_OSCachemmap: Entering cache name = %s, cache size = %zu, numSems = %zd, create flags = 0x%zx, verbose flags = 0x%zx"
TraceExit=Trc_SHR_OSC_Mmap_Constructor_Exit NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::SH_OSCachemmap: Exiting"
TraceEntry=Trc_SHR_OSC_Mmap_initialize_Entry NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::initialize: Entering portLibray = %p, memForConstructor = %p"
TraceExit=Trc_SHR_OSC_Mmap_initialize_Exit NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::initialize: Exiting"
TraceEntry=Trc_SHR_OSC_Mmap_finalise_Entry NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::finalise: Entering"
TraceExit=Trc_SHR_OSC_Mmap_finalise_Exit NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::finalise: Exiting"
TraceEntry=Trc_SHR_OSC_Mmap_startup_Entry NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Entering cache name = %s, control dir = %s, cache size = %zu, numSems = %zd, create flags = 0x%zx, verbose flags = 0x%zx, openFlags = 0x%x"
TraceExit=Trc_SHR_OSC_Mmap_startup_nommap NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Exiting, mmap write or msync not supported, mmap capabilities = 0x%x"
TraceExit=Trc_SHR_OSC_Mmap_startup_nofilelocking NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Exiting, file locking not support, J9PORT_CAPABILITY_MASK = 0x%x"
TraceEvent=Trc_SHR_OSC_Mmap_startup_failed_mutex_init NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Failed to initialize mutex %zu"
TraceEvent=Trc_SHR_OSC_Mmap_startup_initialized_mutexes NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Succeeded initializing mutexes"
TraceExit=Trc_SHR_OSC_Mmap_startup_badfileopen NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: j9file_open failed for cache path name = %s"
TraceEvent=Trc_SHR_OSC_Mmap_startup_goodfileopen NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: j9file_open successful for cache path name = %s, file handle %d"
TraceExit=Trc_SHR_OSC_Mmap_startup_badAcquireHeaderWriteLock NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Acquire header write lock failed"
TraceEvent=Trc_SHR_OSC_Mmap_startup_goodAcquireHeaderWriteLock NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Successfully acquired header write lock"
TraceEvent=Trc_SHR_OSC_Mmap_startup_fileOpened NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: File length > 0, file opened"
TraceEvent=Trc_SHR_OSC_Mmap_startup_deleteFlagSet NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Cache delete flag set, will close"
TraceEvent=Trc_SHR_OSC_Mmap_startup_fileCreated NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: File is wrong length - file created"
TraceEvent=Trc_SHR_OSC_Mmap_startup_goodCreateCacheHeader NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Successfully created cache header"
TraceEvent=Trc_SHR_OSC_Mmap_startup_goodSetCacheLength NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Successfully set cache length to %zu"
TraceEvent=Trc_SHR_OSC_Mmap_startup_badAttach NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Failed to attach to cache"
TraceExit=Trc_SHR_OSC_Mmap_startup_badSetCacheLength NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Failed to set cache length to %zu"
TraceEvent=Trc_SHR_OSC_Mmap_startup_goodInitializeDataHeader NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Successfully initialized cache data header"
TraceExit=Trc_SHR_OSC_Mmap_startup_badInitializeDataHeader NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Failed to initialize cache data header"
TraceEvent=Trc_SHR_OSC_Mmap_startup_badCreateCacheHeader NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Failed to create cache header"
TraceEvent=Trc_SHR_OSC_Mmap_startup_badReleaseHeaderWriteLock NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Failed to release header write lock"
TraceEvent=Trc_SHR_OSC_Mmap_startup_goodReleaseHeaderWriteLock NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Successfully released header write lock"
TraceEvent=Trc_SHR_OSC_Mmap_startup_closingFileHandle NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Closing file handle %d due to cache creation or errors"
TraceExit=Trc_SHR_OSC_Mmap_startup_Exit NoEnv Overhead=1 Level=1 Template="SH_OSCachemmap::startup: Successful exit"