| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 HEAP_TESTER_H_ | 5 #ifndef HEAP_HEAP_TESTER_H_ |
| 6 #define HEAP_TESTER_H_ | 6 #define HEAP_HEAP_TESTER_H_ |
| 7 | 7 |
| 8 #include "src/handles.h" | 8 #include "src/handles.h" |
| 9 #include "src/heap/spaces.h" | 9 #include "src/heap/spaces.h" |
| 10 | 10 |
| 11 // Tests that should have access to private methods of {v8::internal::Heap}. | 11 // Tests that should have access to private methods of {v8::internal::Heap}. |
| 12 // Those tests need to be defined using HEAP_TEST(Name) { ... }. | 12 // Those tests need to be defined using HEAP_TEST(Name) { ... }. |
| 13 #define HEAP_TEST_METHODS(V) \ | 13 #define HEAP_TEST_METHODS(V) \ |
| 14 V(CompactionSpaceDivideMultiplePages) \ | 14 V(CompactionSpaceDivideMultiplePages) \ |
| 15 V(CompactionSpaceDivideSinglePage) \ | 15 V(CompactionSpaceDivideSinglePage) \ |
| 16 V(GCFlags) \ | 16 V(GCFlags) \ |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 intptr_t* capacity, intptr_t* size); | 72 intptr_t* capacity, intptr_t* size); |
| 73 static void TestCompactionSpaceDivide(int num_additional_objects, | 73 static void TestCompactionSpaceDivide(int num_additional_objects, |
| 74 int object_size, | 74 int object_size, |
| 75 int num_compaction_spaces, | 75 int num_compaction_spaces, |
| 76 int additional_capacity_in_bytes); | 76 int additional_capacity_in_bytes); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace internal | 79 } // namespace internal |
| 80 } // namespace v8 | 80 } // namespace v8 |
| 81 | 81 |
| 82 #endif // HEAP_TESTER_H_ | 82 #endif // HEAP_HEAP_TESTER_H_ |
| OLD | NEW |