2012-02-07 08:00:36 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2008-08-22 13:33:59 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2011-12-01 12:32:38 +00:00
|
|
|
#ifdef __linux__
|
2014-06-20 08:40:11 +00:00
|
|
|
#include <errno.h>
|
2011-12-01 12:32:38 +00:00
|
|
|
#include <fcntl.h>
|
2014-06-20 08:40:11 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2011-12-01 12:32:38 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
#include <utility>
|
2013-05-02 20:18:42 +00:00
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/v8.h"
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/global-handles.h"
|
2017-01-16 17:21:20 +00:00
|
|
|
#include "src/heap/mark-compact-inl.h"
|
|
|
|
#include "src/heap/mark-compact.h"
|
2017-02-23 11:46:29 +00:00
|
|
|
#include "src/objects-inl.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "test/cctest/cctest.h"
|
2015-12-09 11:25:26 +00:00
|
|
|
#include "test/cctest/heap/heap-tester.h"
|
2016-05-20 13:30:22 +00:00
|
|
|
#include "test/cctest/heap/heap-utils.h"
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2017-08-11 10:04:47 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace heap {
|
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
TEST(Promotion) {
|
2013-09-19 13:30:47 +00:00
|
|
|
CcTest::InitializeVM();
|
2016-05-20 13:30:22 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
{
|
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
|
|
|
Heap* heap = isolate->heap();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SealCurrentObjects(heap);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2016-09-06 12:58:59 +00:00
|
|
|
int array_length = heap::FixedArrayLenFromSize(kMaxRegularHeapObjectSize);
|
2016-05-20 13:30:22 +00:00
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(array_length);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
// Array should be in the new space.
|
|
|
|
CHECK(heap->InSpace(*array, NEW_SPACE));
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK(heap->InSpace(*array, OLD_SPACE));
|
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2015-08-21 12:40:22 +00:00
|
|
|
HEAP_TEST(NoPromotion) {
|
2016-09-07 09:21:12 +00:00
|
|
|
// Page promotion allows pages to be moved to old space even in the case of
|
|
|
|
// OOM scenarios.
|
|
|
|
FLAG_page_promotion = false;
|
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2016-05-20 13:30:22 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
{
|
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
|
|
|
|
heap::SealCurrentObjects(heap);
|
|
|
|
|
2016-09-06 12:58:59 +00:00
|
|
|
int array_length = heap::FixedArrayLenFromSize(kMaxRegularHeapObjectSize);
|
2016-05-20 13:30:22 +00:00
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(array_length);
|
|
|
|
|
|
|
|
heap->set_force_oom(true);
|
|
|
|
// Array should be in the new space.
|
|
|
|
CHECK(heap->InSpace(*array, NEW_SPACE));
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK(heap->InSpace(*array, NEW_SPACE));
|
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2015-08-21 12:40:22 +00:00
|
|
|
HEAP_TEST(MarkCompactCollector) {
|
2013-08-23 11:04:25 +00:00
|
|
|
FLAG_incremental_marking = false;
|
2015-03-06 12:36:16 +00:00
|
|
|
FLAG_retain_maps_for_n_gc = 0;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2015-08-21 12:40:22 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
2014-04-09 12:21:47 +00:00
|
|
|
Factory* factory = isolate->factory();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2015-11-02 14:57:59 +00:00
|
|
|
Handle<JSGlobalObject> global(isolate->context()->global_object());
|
2013-08-23 11:04:25 +00:00
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
// call mark-compact when heap is empty
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// keep allocating garbage in new space until it fails
|
2014-08-26 09:19:24 +00:00
|
|
|
const int arraysize = 100;
|
2014-04-30 12:25:18 +00:00
|
|
|
AllocationResult allocation;
|
2008-08-22 13:33:59 +00:00
|
|
|
do {
|
2014-08-26 09:19:24 +00:00
|
|
|
allocation = heap->AllocateFixedArray(arraysize);
|
2014-04-30 12:25:18 +00:00
|
|
|
} while (!allocation.IsRetry());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2014-08-26 09:19:24 +00:00
|
|
|
heap->AllocateFixedArray(arraysize).ToObjectChecked();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// keep allocating maps until it fails
|
|
|
|
do {
|
2014-04-30 12:25:18 +00:00
|
|
|
allocation = heap->AllocateMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
|
|
|
|
} while (!allocation.IsRetry());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(MAP_SPACE);
|
2014-04-30 12:25:18 +00:00
|
|
|
heap->AllocateMap(JS_OBJECT_TYPE, JSObject::kHeaderSize).ToObjectChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
|
|
|
|
{ HandleScope scope(isolate);
|
|
|
|
// allocate a garbage
|
|
|
|
Handle<String> func_name = factory->InternalizeUtf8String("theFunction");
|
2017-11-08 12:56:08 +00:00
|
|
|
Handle<JSFunction> function = factory->NewFunctionForTest(func_name);
|
2017-10-16 10:55:06 +00:00
|
|
|
JSReceiver::SetProperty(global, func_name, function, LanguageMode::kSloppy)
|
|
|
|
.Check();
|
2014-04-09 12:21:47 +00:00
|
|
|
|
|
|
|
factory->NewJSObject(function);
|
|
|
|
}
|
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-09 12:21:47 +00:00
|
|
|
{ HandleScope scope(isolate);
|
|
|
|
Handle<String> func_name = factory->InternalizeUtf8String("theFunction");
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(global, func_name));
|
2014-04-11 12:47:34 +00:00
|
|
|
Handle<Object> func_value =
|
|
|
|
Object::GetProperty(global, func_name).ToHandleChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
CHECK(func_value->IsJSFunction());
|
|
|
|
Handle<JSFunction> function = Handle<JSFunction>::cast(func_value);
|
|
|
|
Handle<JSObject> obj = factory->NewJSObject(function);
|
|
|
|
|
|
|
|
Handle<String> obj_name = factory->InternalizeUtf8String("theObject");
|
2017-10-16 10:55:06 +00:00
|
|
|
JSReceiver::SetProperty(global, obj_name, obj, LanguageMode::kSloppy)
|
|
|
|
.Check();
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<String> prop_name = factory->InternalizeUtf8String("theSlot");
|
|
|
|
Handle<Smi> twenty_three(Smi::FromInt(23), isolate);
|
2017-10-16 10:55:06 +00:00
|
|
|
JSReceiver::SetProperty(obj, prop_name, twenty_three, LanguageMode::kSloppy)
|
|
|
|
.Check();
|
2014-04-09 12:21:47 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-09 12:21:47 +00:00
|
|
|
{ HandleScope scope(isolate);
|
|
|
|
Handle<String> obj_name = factory->InternalizeUtf8String("theObject");
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(global, obj_name));
|
2014-04-11 12:47:34 +00:00
|
|
|
Handle<Object> object =
|
|
|
|
Object::GetProperty(global, obj_name).ToHandleChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
CHECK(object->IsJSObject());
|
|
|
|
Handle<String> prop_name = factory->InternalizeUtf8String("theSlot");
|
2014-04-11 12:47:34 +00:00
|
|
|
CHECK_EQ(*Object::GetProperty(object, prop_name).ToHandleChecked(),
|
|
|
|
Smi::FromInt(23));
|
2014-04-09 12:21:47 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-19 18:36:47 +00:00
|
|
|
// TODO(1600): compaction of map space is temporary removed from GC.
|
|
|
|
#if 0
|
2013-06-04 10:30:05 +00:00
|
|
|
static Handle<Map> CreateMap(Isolate* isolate) {
|
|
|
|
return isolate->factory()->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
|
2010-01-19 16:34:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(MapCompact) {
|
|
|
|
FLAG_max_map_space_pages = 16;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-06-04 10:30:05 +00:00
|
|
|
Factory* factory = isolate->factory();
|
2010-01-19 16:34:37 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
v8::HandleScope sc;
|
|
|
|
// keep allocating maps while pointers are still encodable and thus
|
|
|
|
// mark compact is permitted.
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<JSObject> root = factory->NewJSObjectFromMap(CreateMap());
|
2010-01-19 16:34:37 +00:00
|
|
|
do {
|
|
|
|
Handle<Map> map = CreateMap();
|
|
|
|
map->set_prototype(*root);
|
2013-06-04 10:30:05 +00:00
|
|
|
root = factory->NewJSObjectFromMap(map);
|
2013-09-19 09:46:15 +00:00
|
|
|
} while (CcTest::heap()->map_space()->MapPointersEncodable());
|
2010-01-19 16:34:37 +00:00
|
|
|
}
|
|
|
|
// Now, as we don't have any handles to just allocated maps, we should
|
|
|
|
// be able to trigger map compaction.
|
|
|
|
// To give an additional chance to fail, try to force compaction which
|
|
|
|
// should be impossible right now.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllGarbage(Heap::kForceCompactionMask);
|
2010-01-19 16:34:37 +00:00
|
|
|
// And now map pointers should be encodable again.
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK(CcTest::heap()->map_space()->MapPointersEncodable());
|
2010-01-19 16:34:37 +00:00
|
|
|
}
|
2011-09-19 18:36:47 +00:00
|
|
|
#endif
|
2010-01-19 16:34:37 +00:00
|
|
|
|
2013-05-15 08:59:28 +00:00
|
|
|
#if defined(__has_feature)
|
|
|
|
#if __has_feature(address_sanitizer)
|
|
|
|
#define V8_WITH_ASAN 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-12-06 12:09:11 +00:00
|
|
|
// Here is a memory use test that uses /proc, and is therefore Linux-only. We
|
|
|
|
// do not care how much memory the simulator uses, since it is only there for
|
2013-05-15 08:59:28 +00:00
|
|
|
// debugging purposes. Testing with ASAN doesn't make sense, either.
|
|
|
|
#if defined(__linux__) && !defined(USE_SIMULATOR) && !defined(V8_WITH_ASAN)
|
2011-12-01 12:32:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
static uintptr_t ReadLong(char* buffer, intptr_t* position, int base) {
|
|
|
|
char* end_address = buffer + *position;
|
|
|
|
uintptr_t result = strtoul(buffer + *position, &end_address, base);
|
|
|
|
CHECK(result != ULONG_MAX || errno != ERANGE);
|
|
|
|
CHECK(end_address > buffer + *position);
|
|
|
|
*position = end_address - buffer;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-02 15:00:12 +00:00
|
|
|
// The memory use computed this way is not entirely accurate and depends on
|
|
|
|
// the way malloc allocates memory. That's why the memory use may seem to
|
|
|
|
// increase even though the sum of the allocated object sizes decreases. It
|
|
|
|
// also means that the memory use depends on the kernel and stdlib.
|
2011-12-01 12:32:38 +00:00
|
|
|
static intptr_t MemoryInUse() {
|
|
|
|
intptr_t memory_use = 0;
|
|
|
|
|
|
|
|
int fd = open("/proc/self/maps", O_RDONLY);
|
|
|
|
if (fd < 0) return -1;
|
|
|
|
|
2016-10-13 15:17:46 +00:00
|
|
|
const int kBufSize = 20000;
|
2011-12-01 12:32:38 +00:00
|
|
|
char buffer[kBufSize];
|
2015-04-28 06:54:08 +00:00
|
|
|
ssize_t length = read(fd, buffer, kBufSize);
|
2011-12-01 12:32:38 +00:00
|
|
|
intptr_t line_start = 0;
|
|
|
|
CHECK_LT(length, kBufSize); // Make the buffer bigger.
|
|
|
|
CHECK_GT(length, 0); // We have to find some data in the file.
|
|
|
|
while (line_start < length) {
|
|
|
|
if (buffer[line_start] == '\n') {
|
|
|
|
line_start++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
intptr_t position = line_start;
|
|
|
|
uintptr_t start = ReadLong(buffer, &position, 16);
|
|
|
|
CHECK_EQ(buffer[position++], '-');
|
|
|
|
uintptr_t end = ReadLong(buffer, &position, 16);
|
|
|
|
CHECK_EQ(buffer[position++], ' ');
|
|
|
|
CHECK(buffer[position] == '-' || buffer[position] == 'r');
|
|
|
|
bool read_permission = (buffer[position++] == 'r');
|
|
|
|
CHECK(buffer[position] == '-' || buffer[position] == 'w');
|
|
|
|
bool write_permission = (buffer[position++] == 'w');
|
|
|
|
CHECK(buffer[position] == '-' || buffer[position] == 'x');
|
|
|
|
bool execute_permission = (buffer[position++] == 'x');
|
2014-11-24 18:05:56 +00:00
|
|
|
CHECK(buffer[position] == 's' || buffer[position] == 'p');
|
2011-12-01 12:32:38 +00:00
|
|
|
bool private_mapping = (buffer[position++] == 'p');
|
|
|
|
CHECK_EQ(buffer[position++], ' ');
|
|
|
|
uintptr_t offset = ReadLong(buffer, &position, 16);
|
|
|
|
USE(offset);
|
|
|
|
CHECK_EQ(buffer[position++], ' ');
|
|
|
|
uintptr_t major = ReadLong(buffer, &position, 16);
|
|
|
|
USE(major);
|
|
|
|
CHECK_EQ(buffer[position++], ':');
|
|
|
|
uintptr_t minor = ReadLong(buffer, &position, 16);
|
|
|
|
USE(minor);
|
|
|
|
CHECK_EQ(buffer[position++], ' ');
|
|
|
|
uintptr_t inode = ReadLong(buffer, &position, 10);
|
|
|
|
while (position < length && buffer[position] != '\n') position++;
|
|
|
|
if ((read_permission || write_permission || execute_permission) &&
|
|
|
|
private_mapping && inode == 0) {
|
|
|
|
memory_use += (end - start);
|
|
|
|
}
|
|
|
|
|
|
|
|
line_start = position;
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return memory_use;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-02 09:04:45 +00:00
|
|
|
intptr_t ShortLivingIsolate() {
|
2015-04-29 09:54:34 +00:00
|
|
|
v8::Isolate::CreateParams create_params;
|
|
|
|
create_params.array_buffer_allocator = CcTest::array_buffer_allocator();
|
|
|
|
v8::Isolate* isolate = v8::Isolate::New(create_params);
|
2013-07-02 09:04:45 +00:00
|
|
|
{ v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::Locker lock(isolate);
|
2013-09-10 06:43:23 +00:00
|
|
|
v8::HandleScope handle_scope(isolate);
|
2013-07-02 09:04:45 +00:00
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate);
|
|
|
|
CHECK(!context.IsEmpty());
|
|
|
|
}
|
|
|
|
isolate->Dispose();
|
|
|
|
return MemoryInUse();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(RegressJoinThreadsOnIsolateDeinit) {
|
2013-07-02 09:59:08 +00:00
|
|
|
intptr_t size_limit = ShortLivingIsolate() * 2;
|
2013-07-02 09:04:45 +00:00
|
|
|
for (int i = 0; i < 10; i++) {
|
2013-07-02 09:59:08 +00:00
|
|
|
CHECK_GT(size_limit, ShortLivingIsolate());
|
2013-07-02 09:04:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-16 17:21:20 +00:00
|
|
|
TEST(Regress5829) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
heap::SealCurrentObjects(heap);
|
|
|
|
i::MarkCompactCollector* collector = heap->mark_compact_collector();
|
|
|
|
i::IncrementalMarking* marking = heap->incremental_marking();
|
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking() || marking->IsStopped());
|
|
|
|
if (marking->IsStopped()) {
|
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
marking->StartBlackAllocationForTesting();
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(10, TENURED);
|
|
|
|
Address old_end = array->address() + array->Size();
|
|
|
|
// Right trim the array without clearing the mark bits.
|
|
|
|
array->set_length(9);
|
|
|
|
heap->CreateFillerObjectAt(old_end - kPointerSize, kPointerSize,
|
|
|
|
ClearRecordedSlots::kNo);
|
2018-01-09 08:56:07 +00:00
|
|
|
heap->old_space()->FreeLinearAllocationArea();
|
2017-03-21 10:02:32 +00:00
|
|
|
Page* page = Page::FromAddress(array->address());
|
2017-08-12 12:17:52 +00:00
|
|
|
IncrementalMarking::MarkingState* marking_state = marking->marking_state();
|
2017-06-21 11:41:12 +00:00
|
|
|
for (auto object_and_size :
|
2017-08-10 16:54:55 +00:00
|
|
|
LiveObjectRange<kGreyObjects>(page, marking_state->bitmap(page))) {
|
2017-06-21 11:41:12 +00:00
|
|
|
CHECK(!object_and_size.first->IsFiller());
|
2017-01-16 17:21:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-06 12:09:11 +00:00
|
|
|
#endif // __linux__ and !USE_SIMULATOR
|
2017-08-11 10:04:47 +00:00
|
|
|
|
|
|
|
} // namespace heap
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|