OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // Simulate a full old space to make promotion fail. | 120 // Simulate a full old space to make promotion fail. |
121 SimulateFullSpace(heap->old_pointer_space()); | 121 SimulateFullSpace(heap->old_pointer_space()); |
122 | 122 |
123 // Call mark compact GC, and it should pass. | 123 // Call mark compact GC, and it should pass. |
124 heap->CollectGarbage(OLD_POINTER_SPACE); | 124 heap->CollectGarbage(OLD_POINTER_SPACE); |
125 } | 125 } |
126 | 126 |
127 | 127 |
128 TEST(MarkCompactCollector) { | 128 TEST(MarkCompactCollector) { |
129 FLAG_incremental_marking = false; | 129 FLAG_incremental_marking = false; |
130 FLAG_retain_maps_for_n_gc = 0; | |
131 CcTest::InitializeVM(); | 130 CcTest::InitializeVM(); |
132 Isolate* isolate = CcTest::i_isolate(); | 131 Isolate* isolate = CcTest::i_isolate(); |
133 TestHeap* heap = CcTest::test_heap(); | 132 TestHeap* heap = CcTest::test_heap(); |
134 Factory* factory = isolate->factory(); | 133 Factory* factory = isolate->factory(); |
135 | 134 |
136 v8::HandleScope sc(CcTest::isolate()); | 135 v8::HandleScope sc(CcTest::isolate()); |
137 Handle<GlobalObject> global(isolate->context()->global_object()); | 136 Handle<GlobalObject> global(isolate->context()->global_object()); |
138 | 137 |
139 // call mark-compact when heap is empty | 138 // call mark-compact when heap is empty |
140 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 1"); | 139 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 1"); |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 | 486 |
488 | 487 |
489 TEST(RegressJoinThreadsOnIsolateDeinit) { | 488 TEST(RegressJoinThreadsOnIsolateDeinit) { |
490 intptr_t size_limit = ShortLivingIsolate() * 2; | 489 intptr_t size_limit = ShortLivingIsolate() * 2; |
491 for (int i = 0; i < 10; i++) { | 490 for (int i = 0; i < 10; i++) { |
492 CHECK_GT(size_limit, ShortLivingIsolate()); | 491 CHECK_GT(size_limit, ShortLivingIsolate()); |
493 } | 492 } |
494 } | 493 } |
495 | 494 |
496 #endif // __linux__ and !USE_SIMULATOR | 495 #endif // __linux__ and !USE_SIMULATOR |
OLD | NEW |