| 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" |
| 11 #include "src/base/once.h" | 11 #include "src/base/once.h" |
| 12 #include "src/base/utils/random-number-generator.h" | 12 #include "src/base/utils/random-number-generator.h" |
| 13 #include "src/bootstrapper.h" | 13 #include "src/bootstrapper.h" |
| 14 #include "src/codegen.h" | 14 #include "src/codegen.h" |
| 15 #include "src/compilation-cache.h" | 15 #include "src/compilation-cache.h" |
| 16 #include "src/conversions.h" | 16 #include "src/conversions.h" |
| 17 #include "src/debug/debug.h" | 17 #include "src/debug/debug.h" |
| 18 #include "src/deoptimizer.h" | 18 #include "src/deoptimizer.h" |
| 19 #include "src/global-handles.h" | 19 #include "src/global-handles.h" |
| 20 #include "src/heap/array-buffer-tracker.h" | 20 #include "src/heap/array-buffer-tracker-inl.h" |
| 21 #include "src/heap/gc-idle-time-handler.h" | 21 #include "src/heap/gc-idle-time-handler.h" |
| 22 #include "src/heap/gc-tracer.h" | 22 #include "src/heap/gc-tracer.h" |
| 23 #include "src/heap/incremental-marking.h" | 23 #include "src/heap/incremental-marking.h" |
| 24 #include "src/heap/mark-compact-inl.h" | 24 #include "src/heap/mark-compact-inl.h" |
| 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" |
| (...skipping 6422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6453 } | 6453 } |
| 6454 | 6454 |
| 6455 | 6455 |
| 6456 // static | 6456 // static |
| 6457 int Heap::GetStaticVisitorIdForMap(Map* map) { | 6457 int Heap::GetStaticVisitorIdForMap(Map* map) { |
| 6458 return StaticVisitorBase::GetVisitorId(map); | 6458 return StaticVisitorBase::GetVisitorId(map); |
| 6459 } | 6459 } |
| 6460 | 6460 |
| 6461 } // namespace internal | 6461 } // namespace internal |
| 6462 } // namespace v8 | 6462 } // namespace v8 |
| OLD | NEW |