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/ast/scopeinfo.h" | 9 #include "src/ast/scopeinfo.h" |
10 #include "src/base/bits.h" | 10 #include "src/base/bits.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "src/heap/mark-compact.h" | 25 #include "src/heap/mark-compact.h" |
26 #include "src/heap/memory-reducer.h" | 26 #include "src/heap/memory-reducer.h" |
27 #include "src/heap/object-stats.h" | 27 #include "src/heap/object-stats.h" |
28 #include "src/heap/objects-visiting-inl.h" | 28 #include "src/heap/objects-visiting-inl.h" |
29 #include "src/heap/objects-visiting.h" | 29 #include "src/heap/objects-visiting.h" |
30 #include "src/heap/remembered-set.h" | 30 #include "src/heap/remembered-set.h" |
31 #include "src/heap/scavenge-job.h" | 31 #include "src/heap/scavenge-job.h" |
32 #include "src/heap/scavenger-inl.h" | 32 #include "src/heap/scavenger-inl.h" |
33 #include "src/heap/store-buffer.h" | 33 #include "src/heap/store-buffer.h" |
34 #include "src/interpreter/interpreter.h" | 34 #include "src/interpreter/interpreter.h" |
35 #include "src/profiler/cpu-profiler.h" | |
36 #include "src/regexp/jsregexp.h" | 35 #include "src/regexp/jsregexp.h" |
37 #include "src/runtime-profiler.h" | 36 #include "src/runtime-profiler.h" |
38 #include "src/snapshot/natives.h" | 37 #include "src/snapshot/natives.h" |
39 #include "src/snapshot/serializer-common.h" | 38 #include "src/snapshot/serializer-common.h" |
40 #include "src/snapshot/snapshot.h" | 39 #include "src/snapshot/snapshot.h" |
41 #include "src/tracing/trace-event.h" | 40 #include "src/tracing/trace-event.h" |
42 #include "src/type-feedback-vector.h" | 41 #include "src/type-feedback-vector.h" |
43 #include "src/utils.h" | 42 #include "src/utils.h" |
44 #include "src/v8.h" | 43 #include "src/v8.h" |
45 #include "src/v8threads.h" | 44 #include "src/v8threads.h" |
(...skipping 6407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6453 } | 6452 } |
6454 | 6453 |
6455 | 6454 |
6456 // static | 6455 // static |
6457 int Heap::GetStaticVisitorIdForMap(Map* map) { | 6456 int Heap::GetStaticVisitorIdForMap(Map* map) { |
6458 return StaticVisitorBase::GetVisitorId(map); | 6457 return StaticVisitorBase::GetVisitorId(map); |
6459 } | 6458 } |
6460 | 6459 |
6461 } // namespace internal | 6460 } // namespace internal |
6462 } // namespace v8 | 6461 } // namespace v8 |
OLD | NEW |