File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/debug Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -764,15 +764,15 @@ public boolean isVerifyEnabled() {
764
764
}
765
765
766
766
public boolean isCountEnabled () {
767
- return currentScope != null && currentScope .isCountEnabled ();
767
+ return currentScope != null && currentScope .isCountEnabled () || immutable . unscopedCounters != null ;
768
768
}
769
769
770
770
public boolean isTimeEnabled () {
771
- return currentScope != null && currentScope .isTimeEnabled ();
771
+ return currentScope != null && currentScope .isTimeEnabled () || immutable . unscopedTimers != null ;
772
772
}
773
773
774
774
public boolean isMemUseTrackingEnabled () {
775
- return currentScope != null && currentScope .isMemUseTrackingEnabled ();
775
+ return currentScope != null && currentScope .isMemUseTrackingEnabled () || immutable . unscopedMemUseTrackers != null ;
776
776
}
777
777
778
778
public boolean isDumpEnabledForMethod () {
You can’t perform that action at this time.
0 commit comments