OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project 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 #include "src/heap/heap.h" | 5 #include "src/heap/heap.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/base/once.h" | 10 #include "src/base/once.h" |
11 #include "src/base/utils/random-number-generator.h" | 11 #include "src/base/utils/random-number-generator.h" |
12 #include "src/bootstrapper.h" | 12 #include "src/bootstrapper.h" |
13 #include "src/codegen.h" | 13 #include "src/codegen.h" |
14 #include "src/compilation-cache.h" | 14 #include "src/compilation-cache.h" |
15 #include "src/conversions.h" | 15 #include "src/conversions.h" |
16 #include "src/cpu-profiler.h" | |
17 #include "src/debug/debug.h" | 16 #include "src/debug/debug.h" |
18 #include "src/deoptimizer.h" | 17 #include "src/deoptimizer.h" |
19 #include "src/global-handles.h" | 18 #include "src/global-handles.h" |
20 #include "src/heap/array-buffer-tracker.h" | 19 #include "src/heap/array-buffer-tracker.h" |
21 #include "src/heap/gc-idle-time-handler.h" | 20 #include "src/heap/gc-idle-time-handler.h" |
22 #include "src/heap/gc-tracer.h" | 21 #include "src/heap/gc-tracer.h" |
23 #include "src/heap/incremental-marking.h" | 22 #include "src/heap/incremental-marking.h" |
24 #include "src/heap/mark-compact-inl.h" | 23 #include "src/heap/mark-compact-inl.h" |
25 #include "src/heap/mark-compact.h" | 24 #include "src/heap/mark-compact.h" |
26 #include "src/heap/memory-reducer.h" | 25 #include "src/heap/memory-reducer.h" |
27 #include "src/heap/object-stats.h" | 26 #include "src/heap/object-stats.h" |
28 #include "src/heap/objects-visiting-inl.h" | 27 #include "src/heap/objects-visiting-inl.h" |
29 #include "src/heap/objects-visiting.h" | 28 #include "src/heap/objects-visiting.h" |
30 #include "src/heap/scavenge-job.h" | 29 #include "src/heap/scavenge-job.h" |
31 #include "src/heap/scavenger-inl.h" | 30 #include "src/heap/scavenger-inl.h" |
32 #include "src/heap/store-buffer.h" | 31 #include "src/heap/store-buffer.h" |
33 #include "src/heap-profiler.h" | |
34 #include "src/interpreter/interpreter.h" | 32 #include "src/interpreter/interpreter.h" |
| 33 #include "src/profiler/cpu-profiler.h" |
35 #include "src/runtime-profiler.h" | 34 #include "src/runtime-profiler.h" |
36 #include "src/scopeinfo.h" | 35 #include "src/scopeinfo.h" |
37 #include "src/snapshot/natives.h" | 36 #include "src/snapshot/natives.h" |
38 #include "src/snapshot/serialize.h" | 37 #include "src/snapshot/serialize.h" |
39 #include "src/snapshot/snapshot.h" | 38 #include "src/snapshot/snapshot.h" |
40 #include "src/type-feedback-vector.h" | 39 #include "src/type-feedback-vector.h" |
41 #include "src/utils.h" | 40 #include "src/utils.h" |
42 #include "src/v8.h" | 41 #include "src/v8.h" |
43 #include "src/v8threads.h" | 42 #include "src/v8threads.h" |
44 #include "src/vm-state-inl.h" | 43 #include "src/vm-state-inl.h" |
(...skipping 6088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6133 } | 6132 } |
6134 | 6133 |
6135 | 6134 |
6136 // static | 6135 // static |
6137 int Heap::GetStaticVisitorIdForMap(Map* map) { | 6136 int Heap::GetStaticVisitorIdForMap(Map* map) { |
6138 return StaticVisitorBase::GetVisitorId(map); | 6137 return StaticVisitorBase::GetVisitorId(map); |
6139 } | 6138 } |
6140 | 6139 |
6141 } // namespace internal | 6140 } // namespace internal |
6142 } // namespace v8 | 6141 } // namespace v8 |
OLD | NEW |