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

Side by Side Diff: BUILD.gn

Issue 2810893002: [heap] Implement simple concurrent marking deque. (Closed)
Patch Set: revert flags Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/heap/concurrent-marking.h » ('j') | src/heap/incremental-marking.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 "src/globals.h", 1545 "src/globals.h",
1546 "src/handles-inl.h", 1546 "src/handles-inl.h",
1547 "src/handles.cc", 1547 "src/handles.cc",
1548 "src/handles.h", 1548 "src/handles.h",
1549 "src/heap-symbols.h", 1549 "src/heap-symbols.h",
1550 "src/heap/array-buffer-tracker-inl.h", 1550 "src/heap/array-buffer-tracker-inl.h",
1551 "src/heap/array-buffer-tracker.cc", 1551 "src/heap/array-buffer-tracker.cc",
1552 "src/heap/array-buffer-tracker.h", 1552 "src/heap/array-buffer-tracker.h",
1553 "src/heap/code-stats.cc", 1553 "src/heap/code-stats.cc",
1554 "src/heap/code-stats.h", 1554 "src/heap/code-stats.h",
1555 "src/heap/concurrent-marking-deque.h",
1555 "src/heap/concurrent-marking.cc", 1556 "src/heap/concurrent-marking.cc",
1556 "src/heap/concurrent-marking.h", 1557 "src/heap/concurrent-marking.h",
1557 "src/heap/embedder-tracing.cc", 1558 "src/heap/embedder-tracing.cc",
1558 "src/heap/embedder-tracing.h", 1559 "src/heap/embedder-tracing.h",
1559 "src/heap/gc-idle-time-handler.cc", 1560 "src/heap/gc-idle-time-handler.cc",
1560 "src/heap/gc-idle-time-handler.h", 1561 "src/heap/gc-idle-time-handler.h",
1561 "src/heap/gc-tracer.cc", 1562 "src/heap/gc-tracer.cc",
1562 "src/heap/gc-tracer.h", 1563 "src/heap/gc-tracer.h",
1563 "src/heap/heap-inl.h", 1564 "src/heap/heap-inl.h",
1564 "src/heap/heap.cc", 1565 "src/heap/heap.cc",
(...skipping 14 matching lines...) Expand all
1579 "src/heap/objects-visiting-inl.h", 1580 "src/heap/objects-visiting-inl.h",
1580 "src/heap/objects-visiting.cc", 1581 "src/heap/objects-visiting.cc",
1581 "src/heap/objects-visiting.h", 1582 "src/heap/objects-visiting.h",
1582 "src/heap/page-parallel-job.h", 1583 "src/heap/page-parallel-job.h",
1583 "src/heap/remembered-set.h", 1584 "src/heap/remembered-set.h",
1584 "src/heap/scavenge-job.cc", 1585 "src/heap/scavenge-job.cc",
1585 "src/heap/scavenge-job.h", 1586 "src/heap/scavenge-job.h",
1586 "src/heap/scavenger-inl.h", 1587 "src/heap/scavenger-inl.h",
1587 "src/heap/scavenger.cc", 1588 "src/heap/scavenger.cc",
1588 "src/heap/scavenger.h", 1589 "src/heap/scavenger.h",
1590 "src/heap/sequential-marking-deque.cc",
1591 "src/heap/sequential-marking-deque.h",
1589 "src/heap/slot-set.h", 1592 "src/heap/slot-set.h",
1590 "src/heap/spaces-inl.h", 1593 "src/heap/spaces-inl.h",
1591 "src/heap/spaces.cc", 1594 "src/heap/spaces.cc",
1592 "src/heap/spaces.h", 1595 "src/heap/spaces.h",
1593 "src/heap/store-buffer.cc", 1596 "src/heap/store-buffer.cc",
1594 "src/heap/store-buffer.h", 1597 "src/heap/store-buffer.h",
1595 "src/ic/access-compiler-data.h", 1598 "src/ic/access-compiler-data.h",
1596 "src/ic/access-compiler.cc", 1599 "src/ic/access-compiler.cc",
1597 "src/ic/access-compiler.h", 1600 "src/ic/access-compiler.h",
1598 "src/ic/call-optimization.cc", 1601 "src/ic/call-optimization.cc",
(...skipping 1610 matching lines...) Expand 10 before | Expand all | Expand 10 after
3209 ] 3212 ]
3210 3213
3211 configs = [ 3214 configs = [
3212 ":external_config", 3215 ":external_config",
3213 ":internal_config_base", 3216 ":internal_config_base",
3214 ] 3217 ]
3215 } 3218 }
3216 3219
3217 v8_fuzzer("wasm_compile_fuzzer") { 3220 v8_fuzzer("wasm_compile_fuzzer") {
3218 } 3221 }
OLDNEW
« no previous file with comments | « no previous file | src/heap/concurrent-marking.h » ('j') | src/heap/incremental-marking.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698