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

Side by Side Diff: test/cctest/heap/test-mark-compact.cc

Issue 2312853005: Revert of [heap] Switch to 500k pages (Closed)
Patch Set: Created 4 years, 3 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 | « test/cctest/heap/test-heap.cc ('k') | no next file » | 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 // 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 // Array should be in the new space. 90 // Array should be in the new space.
91 CHECK(heap->InSpace(*array, NEW_SPACE)); 91 CHECK(heap->InSpace(*array, NEW_SPACE));
92 heap->CollectAllGarbage(); 92 heap->CollectAllGarbage();
93 heap->CollectAllGarbage(); 93 heap->CollectAllGarbage();
94 CHECK(heap->InSpace(*array, OLD_SPACE)); 94 CHECK(heap->InSpace(*array, OLD_SPACE));
95 } 95 }
96 } 96 }
97 97
98 HEAP_TEST(NoPromotion) { 98 HEAP_TEST(NoPromotion) {
99 // Page promotion allows pages to be moved to old space even in the case of
100 // OOM scenarios.
101 FLAG_page_promotion = false;
102 CcTest::InitializeVM(); 99 CcTest::InitializeVM();
103 Isolate* isolate = CcTest::i_isolate(); 100 Isolate* isolate = CcTest::i_isolate();
104 { 101 {
105 v8::HandleScope sc(CcTest::isolate()); 102 v8::HandleScope sc(CcTest::isolate());
106 Heap* heap = isolate->heap(); 103 Heap* heap = isolate->heap();
107 104
108 heap::SealCurrentObjects(heap); 105 heap::SealCurrentObjects(heap);
109 106
110 int array_length = heap::FixedArrayLenFromSize(kMaxRegularHeapObjectSize); 107 int array_length = heap::FixedArrayLenFromSize(kMaxRegularHeapObjectSize);
111 Handle<FixedArray> array = isolate->factory()->NewFixedArray(array_length); 108 Handle<FixedArray> array = isolate->factory()->NewFixedArray(array_length);
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 475
479 476
480 TEST(RegressJoinThreadsOnIsolateDeinit) { 477 TEST(RegressJoinThreadsOnIsolateDeinit) {
481 intptr_t size_limit = ShortLivingIsolate() * 2; 478 intptr_t size_limit = ShortLivingIsolate() * 2;
482 for (int i = 0; i < 10; i++) { 479 for (int i = 0; i < 10; i++) {
483 CHECK_GT(size_limit, ShortLivingIsolate()); 480 CHECK_GT(size_limit, ShortLivingIsolate());
484 } 481 }
485 } 482 }
486 483
487 #endif // __linux__ and !USE_SIMULATOR 484 #endif // __linux__ and !USE_SIMULATOR
OLDNEW
« no previous file with comments | « test/cctest/heap/test-heap.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698