• gsathya's avatar
    Promises: Make debug calls only when debugging · 9eb320ad
    gsathya authored
    Previously, certain calls to DebugPushPromise and DebugPopPromise
    happened always, without any check to see if we were in a debugging
    environment. This patch adds a conditional check before making these
    debug calls to make sure they aren't called when not needed.
    
    Before the patch, running --prof over the bluebird benchmarks,
    brings up these unprotected debug calls --
    ticks    cpp   total   name
    16    6.7%    2.0%  v8::internal::Runtime_DebugPushPromise(int, v8::internal::Object**, v8::internal::Isolate*)
    7    2.9%    0.9%  v8::internal::Runtime_DebugPopPromise(int, v8::internal::Object**, v8::internal::Isolate*)
    
    This patch removes the above calls and provides a 4% improvement (with
    a 2% variance over 10 runs) in the bluebird benchmark.
    
    Review-Url: https://codereview.chromium.org/1985293002
    Cr-Commit-Position: refs/heads/master@{#36451}
    9eb320ad
Name
Last commit
Last update
..
OWNERS Loading commit data...
array-iterator.js Loading commit data...
array.js Loading commit data...
arraybuffer.js Loading commit data...
collection-iterator.js Loading commit data...
collection.js Loading commit data...
harmony-async-await.js Loading commit data...
harmony-atomics.js Loading commit data...
harmony-regexp-exec.js Loading commit data...
harmony-sharedarraybuffer.js Loading commit data...
harmony-simd.js Loading commit data...
harmony-species.js Loading commit data...
harmony-string-padding.js Loading commit data...
harmony-unicode-regexps.js Loading commit data...
i18n.js Loading commit data...
icu-case-mapping.js Loading commit data...
intl-extra.js Loading commit data...
iterator-prototype.js Loading commit data...
json.js Loading commit data...
macros.py Loading commit data...
math.js Loading commit data...
messages.js Loading commit data...
prologue.js Loading commit data...
promise-extra.js Loading commit data...
promise.js Loading commit data...
proxy.js Loading commit data...
regexp.js Loading commit data...
runtime.js Loading commit data...
spread.js Loading commit data...
string-iterator.js Loading commit data...
string.js Loading commit data...
symbol.js Loading commit data...
templates.js Loading commit data...
typedarray.js Loading commit data...
uri.js Loading commit data...
v8natives.js Loading commit data...
weak-collection.js Loading commit data...