Commit 339ca5bb authored by Georg Neis's avatar Georg Neis Committed by Commit Bot

[turbofan] Make --concurrent-inlining imply --local-heaps

Bug: v8:7790, v8:10711, chromium:1105815, v8:10315
Change-Id: I94e7db3ce2247f6c59fa51a65f35591850bbd002
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2300543
Commit-Queue: Georg Neis <neis@chromium.org>
Reviewed-by: 's avatarSantiago Aboy Solanes <solanes@chromium.org>
Reviewed-by: 's avatarDominik Inführ <dinfuehr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68882}
parent 12243107
...@@ -954,6 +954,7 @@ DEFINE_BOOL(concurrent_array_buffer_sweeping, true, ...@@ -954,6 +954,7 @@ DEFINE_BOOL(concurrent_array_buffer_sweeping, true,
"concurrently sweep array buffers") "concurrently sweep array buffers")
DEFINE_BOOL(concurrent_allocation, false, "concurrently allocate in old space") DEFINE_BOOL(concurrent_allocation, false, "concurrently allocate in old space")
DEFINE_BOOL(local_heaps, false, "allow heap access from background tasks") DEFINE_BOOL(local_heaps, false, "allow heap access from background tasks")
DEFINE_IMPLICATION(concurrent_inlining, local_heaps)
DEFINE_NEG_NEG_IMPLICATION(array_buffer_extension, local_heaps) DEFINE_NEG_NEG_IMPLICATION(array_buffer_extension, local_heaps)
DEFINE_BOOL(stress_concurrent_allocation, false, DEFINE_BOOL(stress_concurrent_allocation, false,
"start background threads that allocate memory") "start background threads that allocate memory")
......
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