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

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

Issue 1565183002: [regexp] move regexp parser into own files. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix test compile Created 4 years, 11 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/ast/ast.cc ('k') | src/objects.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/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
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/scavenge-job.h" 30 #include "src/heap/scavenge-job.h"
31 #include "src/heap/scavenger-inl.h" 31 #include "src/heap/scavenger-inl.h"
32 #include "src/heap/store-buffer.h" 32 #include "src/heap/store-buffer.h"
33 #include "src/interpreter/interpreter.h" 33 #include "src/interpreter/interpreter.h"
34 #include "src/profiler/cpu-profiler.h" 34 #include "src/profiler/cpu-profiler.h"
35 #include "src/regexp/jsregexp.h"
35 #include "src/runtime-profiler.h" 36 #include "src/runtime-profiler.h"
36 #include "src/snapshot/natives.h" 37 #include "src/snapshot/natives.h"
37 #include "src/snapshot/serialize.h" 38 #include "src/snapshot/serialize.h"
38 #include "src/snapshot/snapshot.h" 39 #include "src/snapshot/snapshot.h"
39 #include "src/type-feedback-vector.h" 40 #include "src/type-feedback-vector.h"
40 #include "src/utils.h" 41 #include "src/utils.h"
41 #include "src/v8.h" 42 #include "src/v8.h"
42 #include "src/v8threads.h" 43 #include "src/v8threads.h"
43 #include "src/vm-state-inl.h" 44 #include "src/vm-state-inl.h"
44 45
(...skipping 6181 matching lines...) Expand 10 before | Expand all | Expand 10 after
6226 } 6227 }
6227 6228
6228 6229
6229 // static 6230 // static
6230 int Heap::GetStaticVisitorIdForMap(Map* map) { 6231 int Heap::GetStaticVisitorIdForMap(Map* map) {
6231 return StaticVisitorBase::GetVisitorId(map); 6232 return StaticVisitorBase::GetVisitorId(map);
6232 } 6233 }
6233 6234
6234 } // namespace internal 6235 } // namespace internal
6235 } // namespace v8 6236 } // namespace v8
OLDNEW
« no previous file with comments | « src/ast/ast.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698