| 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_HEAP_SPACES_H_ | 5 #ifndef V8_HEAP_SPACES_H_ |
| 6 #define V8_HEAP_SPACES_H_ | 6 #define V8_HEAP_SPACES_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| 11 #include "src/atomic-utils.h" | 11 #include "src/base/atomic-utils.h" |
| 12 #include "src/base/atomicops.h" | 12 #include "src/base/atomicops.h" |
| 13 #include "src/base/bits.h" | 13 #include "src/base/bits.h" |
| 14 #include "src/base/platform/mutex.h" | 14 #include "src/base/platform/mutex.h" |
| 15 #include "src/flags.h" | 15 #include "src/flags.h" |
| 16 #include "src/hashmap.h" | 16 #include "src/hashmap.h" |
| 17 #include "src/list.h" | 17 #include "src/list.h" |
| 18 #include "src/objects.h" | 18 #include "src/objects.h" |
| 19 #include "src/utils.h" | 19 #include "src/utils.h" |
| 20 | 20 |
| 21 namespace v8 { | 21 namespace v8 { |
| (...skipping 3120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3142 count = 0; | 3142 count = 0; |
| 3143 } | 3143 } |
| 3144 // Must be small, since an iteration is used for lookup. | 3144 // Must be small, since an iteration is used for lookup. |
| 3145 static const int kMaxComments = 64; | 3145 static const int kMaxComments = 64; |
| 3146 }; | 3146 }; |
| 3147 #endif | 3147 #endif |
| 3148 } // namespace internal | 3148 } // namespace internal |
| 3149 } // namespace v8 | 3149 } // namespace v8 |
| 3150 | 3150 |
| 3151 #endif // V8_HEAP_SPACES_H_ | 3151 #endif // V8_HEAP_SPACES_H_ |
| OLD | NEW |