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

Side by Side Diff: BUILD.gn

Issue 2810893002: [heap] Implement simple concurrent marking deque. (Closed)
Patch Set: rebase 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') | test/cctest/heap/test-mark-compact.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 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1546 "src/globals.h", 1546 "src/globals.h",
1547 "src/handles-inl.h", 1547 "src/handles-inl.h",
1548 "src/handles.cc", 1548 "src/handles.cc",
1549 "src/handles.h", 1549 "src/handles.h",
1550 "src/heap-symbols.h", 1550 "src/heap-symbols.h",
1551 "src/heap/array-buffer-tracker-inl.h", 1551 "src/heap/array-buffer-tracker-inl.h",
1552 "src/heap/array-buffer-tracker.cc", 1552 "src/heap/array-buffer-tracker.cc",
1553 "src/heap/array-buffer-tracker.h", 1553 "src/heap/array-buffer-tracker.h",
1554 "src/heap/code-stats.cc", 1554 "src/heap/code-stats.cc",
1555 "src/heap/code-stats.h", 1555 "src/heap/code-stats.h",
1556 "src/heap/concurrent-marking-deque.h",
1556 "src/heap/concurrent-marking.cc", 1557 "src/heap/concurrent-marking.cc",
1557 "src/heap/concurrent-marking.h", 1558 "src/heap/concurrent-marking.h",
1558 "src/heap/embedder-tracing.cc", 1559 "src/heap/embedder-tracing.cc",
1559 "src/heap/embedder-tracing.h", 1560 "src/heap/embedder-tracing.h",
1560 "src/heap/gc-idle-time-handler.cc", 1561 "src/heap/gc-idle-time-handler.cc",
1561 "src/heap/gc-idle-time-handler.h", 1562 "src/heap/gc-idle-time-handler.h",
1562 "src/heap/gc-tracer.cc", 1563 "src/heap/gc-tracer.cc",
1563 "src/heap/gc-tracer.h", 1564 "src/heap/gc-tracer.h",
1564 "src/heap/heap-inl.h", 1565 "src/heap/heap-inl.h",
1565 "src/heap/heap.cc", 1566 "src/heap/heap.cc",
(...skipping 14 matching lines...) Expand all
1580 "src/heap/objects-visiting-inl.h", 1581 "src/heap/objects-visiting-inl.h",
1581 "src/heap/objects-visiting.cc", 1582 "src/heap/objects-visiting.cc",
1582 "src/heap/objects-visiting.h", 1583 "src/heap/objects-visiting.h",
1583 "src/heap/page-parallel-job.h", 1584 "src/heap/page-parallel-job.h",
1584 "src/heap/remembered-set.h", 1585 "src/heap/remembered-set.h",
1585 "src/heap/scavenge-job.cc", 1586 "src/heap/scavenge-job.cc",
1586 "src/heap/scavenge-job.h", 1587 "src/heap/scavenge-job.h",
1587 "src/heap/scavenger-inl.h", 1588 "src/heap/scavenger-inl.h",
1588 "src/heap/scavenger.cc", 1589 "src/heap/scavenger.cc",
1589 "src/heap/scavenger.h", 1590 "src/heap/scavenger.h",
1591 "src/heap/sequential-marking-deque.cc",
1592 "src/heap/sequential-marking-deque.h",
1590 "src/heap/slot-set.h", 1593 "src/heap/slot-set.h",
1591 "src/heap/spaces-inl.h", 1594 "src/heap/spaces-inl.h",
1592 "src/heap/spaces.cc", 1595 "src/heap/spaces.cc",
1593 "src/heap/spaces.h", 1596 "src/heap/spaces.h",
1594 "src/heap/store-buffer.cc", 1597 "src/heap/store-buffer.cc",
1595 "src/heap/store-buffer.h", 1598 "src/heap/store-buffer.h",
1596 "src/ic/access-compiler-data.h", 1599 "src/ic/access-compiler-data.h",
1597 "src/ic/access-compiler.cc", 1600 "src/ic/access-compiler.cc",
1598 "src/ic/access-compiler.h", 1601 "src/ic/access-compiler.h",
1599 "src/ic/call-optimization.cc", 1602 "src/ic/call-optimization.cc",
(...skipping 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after
3213 ] 3216 ]
3214 3217
3215 configs = [ 3218 configs = [
3216 ":external_config", 3219 ":external_config",
3217 ":internal_config_base", 3220 ":internal_config_base",
3218 ] 3221 ]
3219 } 3222 }
3220 3223
3221 v8_fuzzer("wasm_compile_fuzzer") { 3224 v8_fuzzer("wasm_compile_fuzzer") {
3222 } 3225 }
OLDNEW
« no previous file with comments | « no previous file | src/heap/concurrent-marking.h » ('j') | test/cctest/heap/test-mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698