Commit db58c780 authored by Clemens Hammacher's avatar Clemens Hammacher Committed by Commit Bot

[Flags] Only enable Liftoff on x86 and x64

So far, v8 only implemented Liftoff on x86 and x64, and enabling it on
other platforms basically did not have any effect. Now we start porting
to arm. Until this is complete, we do not want this to be used in the wild.

R=titzer@chromium.org, hablich@chromium.org, jochen@chromium.org

Bug: chromium:787421
Change-Id: Ie7978dc579cbc9203647ea5395302cda57fc0403
Reviewed-on: https://chromium-review.googlesource.com/c/1331388Reviewed-by: default avatarAntoine Labour <piman@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#608303}
parent 3d38292a
...@@ -464,7 +464,12 @@ const base::Feature kWebAssembly{"WebAssembly", ...@@ -464,7 +464,12 @@ const base::Feature kWebAssembly{"WebAssembly",
// Enable WebAssembly baseline compilation and tier up. // Enable WebAssembly baseline compilation and tier up.
const base::Feature kWebAssemblyBaseline{"WebAssemblyBaseline", const base::Feature kWebAssemblyBaseline{"WebAssemblyBaseline",
base::FEATURE_ENABLED_BY_DEFAULT}; #ifdef ARCH_CPU_X86_FAMILY
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
#endif
};
// Enable WebAssembly threads. // Enable WebAssembly threads.
// https://github.com/WebAssembly/threads // https://github.com/WebAssembly/threads
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment