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

Side by Side Diff: src/heap/heap.cc

Issue 2260483002: Include only stuff you need, part 3: includes in isolate.h. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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 | « src/execution.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/context-slot-cache.h" 9 #include "src/ast/context-slot-cache.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/compiler-dispatcher/optimizing-compile-dispatcher.h"
16 #include "src/conversions.h" 17 #include "src/conversions.h"
17 #include "src/debug/debug.h" 18 #include "src/debug/debug.h"
18 #include "src/deoptimizer.h" 19 #include "src/deoptimizer.h"
19 #include "src/global-handles.h" 20 #include "src/global-handles.h"
20 #include "src/heap/array-buffer-tracker-inl.h" 21 #include "src/heap/array-buffer-tracker-inl.h"
21 #include "src/heap/code-stats.h" 22 #include "src/heap/code-stats.h"
22 #include "src/heap/gc-idle-time-handler.h" 23 #include "src/heap/gc-idle-time-handler.h"
23 #include "src/heap/gc-tracer.h" 24 #include "src/heap/gc-tracer.h"
24 #include "src/heap/incremental-marking.h" 25 #include "src/heap/incremental-marking.h"
25 #include "src/heap/mark-compact-inl.h" 26 #include "src/heap/mark-compact-inl.h"
(...skipping 6468 matching lines...) Expand 10 before | Expand all | Expand 10 after
6494 } 6495 }
6495 6496
6496 6497
6497 // static 6498 // static
6498 int Heap::GetStaticVisitorIdForMap(Map* map) { 6499 int Heap::GetStaticVisitorIdForMap(Map* map) {
6499 return StaticVisitorBase::GetVisitorId(map); 6500 return StaticVisitorBase::GetVisitorId(map);
6500 } 6501 }
6501 6502
6502 } // namespace internal 6503 } // namespace internal
6503 } // namespace v8 6504 } // namespace v8
OLDNEW
« no previous file with comments | « src/execution.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698