OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 #ifndef V8_SPACES_H_ | 5 #ifndef V8_SPACES_H_ |
6 #define V8_SPACES_H_ | 6 #define V8_SPACES_H_ |
7 | 7 |
8 #include "allocation.h" | 8 #include "src/allocation.h" |
9 #include "hashmap.h" | 9 #include "src/hashmap.h" |
10 #include "list.h" | 10 #include "src/list.h" |
11 #include "log.h" | 11 #include "src/log.h" |
12 #include "platform/mutex.h" | 12 #include "src/platform/mutex.h" |
13 #include "utils.h" | 13 #include "src/utils.h" |
14 | 14 |
15 namespace v8 { | 15 namespace v8 { |
16 namespace internal { | 16 namespace internal { |
17 | 17 |
18 class Isolate; | 18 class Isolate; |
19 | 19 |
20 // ----------------------------------------------------------------------------- | 20 // ----------------------------------------------------------------------------- |
21 // Heap structures: | 21 // Heap structures: |
22 // | 22 // |
23 // A JS heap consists of a young generation, an old generation, and a large | 23 // A JS heap consists of a young generation, an old generation, and a large |
(...skipping 2972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2996 } | 2996 } |
2997 // Must be small, since an iteration is used for lookup. | 2997 // Must be small, since an iteration is used for lookup. |
2998 static const int kMaxComments = 64; | 2998 static const int kMaxComments = 64; |
2999 }; | 2999 }; |
3000 #endif | 3000 #endif |
3001 | 3001 |
3002 | 3002 |
3003 } } // namespace v8::internal | 3003 } } // namespace v8::internal |
3004 | 3004 |
3005 #endif // V8_SPACES_H_ | 3005 #endif // V8_SPACES_H_ |
OLD | NEW |