index next >

src/share/vm/trace/trace.xml

Print this page
rev 8024 : imported patch event1
* * *
imported patch event2

*** 1,8 **** <?xml version="1.0" encoding="utf-8"?> <!-- ! Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. --- 1,8 ---- <?xml version="1.0" encoding="utf-8"?> <!-- ! Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation.
*** 372,381 **** --- 372,395 ---- <event id="GCPhasePauseLevel3" path="vm/gc/phases/pause_level_3" label="GC Phase Pause Level 3"> <value type="UINT" field="gcId" label="GC ID" relation="GC_ID"/> <value type="UTF8" field="name" label="Name" /> </event> + <event id="CollectForAllocation" path="vm/gc/detailed/collect_for_allocation" label="Collect For Allocation" + has_thread="true" has_stacktrace="true" is_instant="true"> + <value type="UINT" field="gcId" label="GC ID" relation="GC_ID" /> + <value type="BYTES64" field="size" label="Allocation Size" /> + <value type="UINT" field="gcAttempt" label="GC Attempt" /> + </event> + + <event id="AllocationRequiringGC" path="vm/gc/detailed/allocation_requiring_gc" label="Allocation Requiring GC" + has_thread="true" has_stacktrace="true" is_instant="true"> + <value type="UINT" field="gcId" label="Predicted GC ID" relation="GC_ID" /> + <value type="BYTES64" field="size" label="Allocation Size" /> + <value type="UINT" field="gcAttempt" label="GC Attempt" /> + </event> + <!-- Compiler events --> <event id="Compilation" path="vm/compiler/compilation" label="Compilation" has_thread="true" is_requestable="false" is_constant="false"> <value type="METHOD" field="method" label="Java Method"/>
index next >