1. 23 Jun, 2017 38 commits
  2. 22 Jun, 2017 2 commits
    • kschimpf's avatar
      Fix use of history timers in background threads. · d4a10807
      kschimpf authored
      HistoryTimer's can't run in the background because they use a timer
      with a simple api of Start() and Stop(). This CL fixes this problem
      by building a base class TimedHistogram that doesn't have a timer.
      
      The class HistoryTimer is modified to use this base class so that
      uses that run on the foreground thread do not need to be modified.
      
      It also adds a new class TimedHistogramScope that defines the timer
      in this class. This allows the corresopnding TimedHistogram class to
      be type safe.
      
      BUG=v8:6361
      
      Review-Url: https://codereview.chromium.org/2929853003
      Cr-Commit-Position: refs/heads/master@{#46150}
      d4a10807
    • Clemens Hammacher's avatar
      [cleanup] extern "C" not needed for V8_Fatal · 696f31ba
      Clemens Hammacher authored
      Why I want to fix this: I got a CL to replace V8_NORETURN by
      [[noreturn]], but clang-format formats this as
        extern "C"[[noreturn]] PRINT_FORMAT...
      (i.e. missing whitespace).
      Also, this is the only extern "C" function in our code base, so if we
      do not need to call it from C, we should just get rid of it.
      
      R=jochen@chromium.org
      BUG=v8:6474
      
      Change-Id: I950bdc505822eb37a107c58e63c82a61907ba515
      Reviewed-on: https://chromium-review.googlesource.com/539341Reviewed-by: 's avatarJochen Eisinger <jochen@chromium.org>
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#46149}
      696f31ba