Skip to content

8356968: JFR: Compilation event should be enabled for all compilations by default #25247

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions src/jdk.jfr/share/conf/jfr/default.jfc
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@

<event name="jdk.Compilation">
<setting name="enabled" control="compiler-enabled">true</setting>
<setting name="threshold" control="compiler-compilation-threshold">1000 ms</setting>
<setting name="threshold">0 ms</setting>
</event>

<event name="jdk.CompilerPhase">
Expand Down Expand Up @@ -1031,18 +1031,6 @@
<test name="compiler" operator="equal" value="all"/>
</condition>

<condition name="compiler-compilation-threshold" true="1000 ms">
<test name="compiler" operator="equal" value="normal"/>
</condition>

<condition name="compiler-compilation-threshold" true="100 ms">
<test name="compiler" operator="equal" value="detailed"/>
</condition>

<condition name="compiler-compilation-threshold" true="0 ms">
<test name="compiler" operator="equal" value="all"/>
</condition>

<condition name="compiler-phase-threshold" true="60 s">
<test name="compiler" operator="equal" value="normal"/>
</condition>
Expand Down