Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Issue 2571813002: [wasm] TrapIf and TrapUnless TurboFan operators implemented on ia32. (Closed)

Created:
4 years ago by ahaas
Modified:
4 years ago
Reviewers:
titzer
CC:
v8-reviews_googlegroups.com, v8-x87-ports_googlegroups.com
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[wasm] TrapIf and TrapUnless TurboFan operators implemented on ia32. Original commit message: [wasm] Introduce the TrapIf and TrapUnless operators to generate trap code. Some instructions in WebAssembly trap for some inputs, which means that the execution is terminated and (at least at the moment) a JavaScript exception is thrown. Examples for traps are out-of-bounds memory accesses, or integer divisions by zero. Without the TrapIf and TrapUnless operators trap check in WebAssembly introduces 5 TurboFan nodes (branch, if_true, if_false, trap-reason constant, trap-position constant), in addition to the trap condition itself. Additionally, each WebAssembly function has four TurboFan nodes (merge, effect_phi, 2 phis) whose number of inputs is linear to the number of trap checks in the function. Especially for functions with high numbers of trap checks we observe a significant slowdown in compilation time, down to 0.22 MiB/s in the sqlite benchmark instead of the average of 3 MiB/s in other benchmarks. By introducing a TrapIf common operator only a single node is necessary per trap check, in addition to the trap condition. Also the nodes which are shared between trap checks (merge, effect_phi, 2 phis) would disappear. First measurements suggest a speedup of 30-50% on average. This CL only implements TrapIf and TrapUnless on x64. The implementation is also hidden behind the --wasm-trap-if flag. Please take a special look at how the source position is transfered from the instruction selector to the code generator, and at the context that is used for the runtime call. R=titzer@chromium.org Review-Url: https://codereview.chromium.org/2571813002 Cr-Commit-Position: refs/heads/master@{#41735} Committed: https://chromium.googlesource.com/v8/v8/+/f435d6222fa194c96c6be2e2d8a753016437931a

Patch Set 1 #

Patch Set 2 : Rebase #

Patch Set 3 : ud2 should not be between the function call and the recorded reference map #

Patch Set 4 : Rebase #

Total comments: 2

Patch Set 5 : Move TrapReasonToFunctionId from wasm-opcodes to wasm-compiler #

Unified diffs Side-by-side diffs Delta from patch set Stats (+139 lines, -105 lines) Patch
M src/compiler/ia32/code-generator-ia32.cc View 1 2 3 3 chunks +102 lines, -77 lines 0 comments Download
M src/compiler/ia32/instruction-selector-ia32.cc View 1 2 3 3 chunks +21 lines, -6 lines 0 comments Download
M src/compiler/wasm-compiler.cc View 1 2 3 4 3 chunks +15 lines, -8 lines 0 comments Download
M src/wasm/wasm-opcodes.h View 1 2 3 4 2 chunks +1 line, -1 line 0 comments Download
M src/wasm/wasm-opcodes.cc View 1 2 3 4 1 chunk +0 lines, -13 lines 0 comments Download

Messages

Total messages: 29 (23 generated)
ahaas
4 years ago (2016-12-13 15:49:32 UTC) #1
ahaas
On 2016/12/13 at 15:49:32, ahaas wrote: > I cleaned up the code in wasm-compiler.cc and ...
4 years ago (2016-12-15 14:05:48 UTC) #15
titzer
lgtm if the header issue is resolved. https://codereview.chromium.org/2571813002/diff/60001/src/wasm/wasm-opcodes.h File src/wasm/wasm-opcodes.h (right): https://codereview.chromium.org/2571813002/diff/60001/src/wasm/wasm-opcodes.h#newcode10 src/wasm/wasm-opcodes.h:10: #include "src/runtime/runtime.h" ...
4 years ago (2016-12-15 14:21:08 UTC) #16
ahaas
https://codereview.chromium.org/2571813002/diff/60001/src/wasm/wasm-opcodes.h File src/wasm/wasm-opcodes.h (right): https://codereview.chromium.org/2571813002/diff/60001/src/wasm/wasm-opcodes.h#newcode10 src/wasm/wasm-opcodes.h:10: #include "src/runtime/runtime.h" On 2016/12/15 at 14:21:08, titzer wrote: > ...
4 years ago (2016-12-15 16:55:51 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2571813002/80001
4 years ago (2016-12-15 17:39:27 UTC) #26
commit-bot: I haz the power
4 years ago (2016-12-15 17:41:11 UTC) #29
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://chromium.googlesource.com/v8/v8/+/f435d6222fa194c96c6be2e2d8a75301643...

Powered by Google App Engine
This is Rietveld 408576698