Commit e2cf7974 authored by Michael Lippautz's avatar Michael Lippautz Committed by Commit Bot

Revert "[oilpan] Enable incremental marking buildflag"

This reverts commit bd9ac13a.

Reason for revert: Unfortunately there's another V8 CL close which massively affects speedometer. We need to reland to get a clear picture.

Original change's description:
> [oilpan] Enable incremental marking buildflag
> 
> Includes incremental garbage collection infrastructure in regular
> builds. Does not enable incremental marking at runtime!
> 
> This CL may cause throughput regressions and is an attempt
> to collect a broad range of potential performance issues.
> 
> Bug: chromium:757440
> Change-Id: If4d91be2eb325417736a38e27c481ab23ce7a0e9
> Reviewed-on: https://chromium-review.googlesource.com/1041986
> Reviewed-by: Kentaro Hara <haraken@chromium.org>
> Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#555698}

TBR=haraken@chromium.org,keishi@chromium.org,hpayer@chromium.org,mlippautz@chromium.org

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: chromium:757440
Change-Id: I87dd96d9b9cd142503ff22534b8207da27b8c352
Reviewed-on: https://chromium-review.googlesource.com/1047265Reviewed-by: default avatarMichael Lippautz <mlippautz@chromium.org>
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#556450}
parent 03745aac
......@@ -8,14 +8,16 @@ import("//third_party/blink/renderer/platform/platform.gni")
import("//testing/test.gni")
declare_args() {
# Build Blink with incremental marking infrastructure for Oilpan.
# Enables incremental marking in Oilpan.
#
# To turn on incremental marking also use
# --enable-blink-features=HeapIncrementalMarking
enable_blink_heap_incremental_marking = true
# Note: Incremental marking is currently considered experimental and also
# enables 'enable_blink_heap_incremental_marking'. See default value below.
enable_blink_heap_incremental_marking = false
}
declare_args() {
# Enables heap verification.
enable_blink_heap_verification = false
enable_blink_heap_verification = enable_blink_heap_incremental_marking
}
buildflag_header("blink_heap_buildflags") {
......
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