• Camillo Bruni's avatar
    [counters] Fix reentrant timers for V8.Execute · fffcbaea
    Camillo Bruni authored
    This CL fixes a long standing issue where reentering TimedHistograms
    scopes would cause spurious measurements. Only the non-nested scopes
    yielded correct results.
    
    Due to the changed numbers, the V8.Execute histogram is renamed to
    V8.ExecuteMicroSeconds. Note that this histogram is also guarded
    behind the --slow-histograms flag due to the additional overhead.
    
    Unlike before, it does no longer include time for external callbacks
    and only measures self time. The following example illustrates the
    new behaviour:
    
    1. Enter V8:           |--+.......+--| self-time: 4 units (reported)
    2. Exit V8 (callback):    |-+...+-|    self-time: 2 units (ignored)
    3. Re-enter V8:             |---|      self-time: 3 units (reported)
    
    This would result in 2 histogram entries with 4 time units for the first
    V8 slice and 3 units for the nested part. Note that the callback time
    itself is ignored.
    
    This CL attempts to clean up how TimedHistograms work:
    - Histogram: the base class
    - TimedHistograms: used for time-related histograms that are not nested
    - NestedTimeHistograms: Extends TimedHistograms and is used for nested
      histograms
    
    This CL changes Histograms to not measure time themselves. Measurements
    happen in the *HistogramScopes:
    - BaseTimedHistogramScope: Base functionality
    - TimedHistogramScope: For non-nested measurements
    - NestedTimedHistogramScope: For nested measurements
    - PauseNestedTimedHistogramScope: Ignore time during a given scope.
      This is used to pause timers during callbacks.
    
    Additional changes:
    - ExternalCallbackScope now contains a PauseNestedTimedHistogramScope
      and always sets VMState<EXTERNAL>
    
    Bug: v8:11946
    Change-Id: I45e4b7ff77b5948b605dd50539044cb26222fa21
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3001345Reviewed-by: 's avatarOmer Katz <omerkatz@chromium.org>
    Reviewed-by: 's avatarThibaud Michaud <thibaudm@chromium.org>
    Reviewed-by: 's avatarVictor Gomes <victorgomes@chromium.org>
    Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
    Commit-Queue: Camillo Bruni <cbruni@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#76111}
    fffcbaea
Name
Last commit
Last update
.github Loading commit data...
bazel Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.bazelrc Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.flake8 Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.mailmap Loading commit data...
.vpython Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.bazel Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
DEPS Loading commit data...
DIR_METADATA Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
RISCV_OWNERS Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
WORKSPACE Loading commit data...
codereview.settings Loading commit data...