2012-01-26 21:47:57 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2013-03-07 11:12:26 +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.
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2013-12-18 08:09:37 +00:00
|
|
|
#include <utility>
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2017-02-23 11:46:29 +00:00
|
|
|
#include "src/api.h"
|
|
|
|
#include "src/assembler-inl.h"
|
2017-01-17 14:19:58 +00:00
|
|
|
#include "src/code-stubs.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/compilation-cache.h"
|
2017-02-23 11:46:29 +00:00
|
|
|
#include "src/debug/debug.h"
|
2015-05-07 08:37:50 +00:00
|
|
|
#include "src/deoptimizer.h"
|
2016-05-04 09:33:05 +00:00
|
|
|
#include "src/elements.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/execution.h"
|
|
|
|
#include "src/factory.h"
|
2016-02-16 13:28:12 +00:00
|
|
|
#include "src/field-type.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/global-handles.h"
|
2015-08-20 15:47:59 +00:00
|
|
|
#include "src/heap/gc-tracer.h"
|
2017-02-23 11:46:29 +00:00
|
|
|
#include "src/heap/incremental-marking.h"
|
|
|
|
#include "src/heap/mark-compact.h"
|
2015-10-29 13:59:34 +00:00
|
|
|
#include "src/heap/memory-reducer.h"
|
2014-08-22 11:43:39 +00:00
|
|
|
#include "src/ic/ic.h"
|
2017-03-15 11:38:48 +00:00
|
|
|
#include "src/macro-assembler-inl.h"
|
2017-02-23 11:46:29 +00:00
|
|
|
#include "src/objects-inl.h"
|
2016-01-08 09:55:29 +00:00
|
|
|
#include "src/regexp/jsregexp.h"
|
2015-05-07 10:25:36 +00:00
|
|
|
#include "src/snapshot/snapshot.h"
|
2017-02-23 11:46:29 +00:00
|
|
|
#include "src/transitions.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"
|
2015-10-01 13:48:05 +00:00
|
|
|
#include "test/cctest/test-feedback-vector.h"
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
|
2015-08-21 07:09:08 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2017-06-16 10:07:41 +00:00
|
|
|
// We only start allocation-site tracking with the second instantiation.
|
|
|
|
static const int kPretenureCreationCount =
|
|
|
|
AllocationSite::kPretenureMinimumCreated + 1;
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
static void CheckMap(Map* map, int type, int instance_size) {
|
|
|
|
CHECK(map->IsHeapObject());
|
|
|
|
#ifdef DEBUG
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK(CcTest::heap()->Contains(map));
|
2008-08-22 13:33:59 +00:00
|
|
|
#endif
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK_EQ(CcTest::heap()->meta_map(), map->map());
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK_EQ(type, map->instance_type());
|
|
|
|
CHECK_EQ(instance_size, map->instance_size());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(HeapMaps) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:46:15 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
CheckMap(heap->meta_map(), MAP_TYPE, Map::kSize);
|
|
|
|
CheckMap(heap->heap_number_map(), HEAP_NUMBER_TYPE, HeapNumber::kSize);
|
|
|
|
CheckMap(heap->fixed_array_map(), FIXED_ARRAY_TYPE, kVariableSizeSentinel);
|
|
|
|
CheckMap(heap->string_map(), STRING_TYPE, kVariableSizeSentinel);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 09:29:50 +00:00
|
|
|
static void VerifyStoredPrototypeMap(Isolate* isolate,
|
|
|
|
int stored_map_context_index,
|
|
|
|
int stored_ctor_context_index) {
|
|
|
|
Handle<Context> context = isolate->native_context();
|
|
|
|
|
|
|
|
Handle<Map> this_map(Map::cast(context->get(stored_map_context_index)));
|
|
|
|
|
|
|
|
Handle<JSFunction> fun(
|
|
|
|
JSFunction::cast(context->get(stored_ctor_context_index)));
|
|
|
|
Handle<JSObject> proto(JSObject::cast(fun->initial_map()->prototype()));
|
|
|
|
Handle<Map> that_map(proto->map());
|
|
|
|
|
|
|
|
CHECK(proto->HasFastProperties());
|
|
|
|
CHECK_EQ(*this_map, *that_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks that critical maps stored on the context (mostly used for fast-path
|
|
|
|
// checks) are unchanged after initialization.
|
|
|
|
TEST(ContextMaps) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
HandleScope handle_scope(isolate);
|
|
|
|
|
|
|
|
VerifyStoredPrototypeMap(isolate,
|
|
|
|
Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX,
|
|
|
|
Context::STRING_FUNCTION_INDEX);
|
|
|
|
VerifyStoredPrototypeMap(isolate, Context::REGEXP_PROTOTYPE_MAP_INDEX,
|
|
|
|
Context::REGEXP_FUNCTION_INDEX);
|
|
|
|
VerifyStoredPrototypeMap(isolate, Context::PROMISE_PROTOTYPE_MAP_INDEX,
|
|
|
|
Context::PROMISE_FUNCTION_INDEX);
|
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2017-02-02 12:38:51 +00:00
|
|
|
TEST(InitialObjects) {
|
|
|
|
LocalContext env;
|
|
|
|
HandleScope scope(CcTest::i_isolate());
|
|
|
|
Handle<Context> context = v8::Utils::OpenHandle(*env);
|
|
|
|
// Initial ArrayIterator prototype.
|
|
|
|
CHECK_EQ(
|
|
|
|
context->initial_array_iterator_prototype(),
|
|
|
|
*v8::Utils::OpenHandle(*CompileRun("[][Symbol.iterator]().__proto__")));
|
|
|
|
// Initial ArrayIterator prototype map.
|
|
|
|
CHECK_EQ(context->initial_array_iterator_prototype_map(),
|
|
|
|
context->initial_array_iterator_prototype()->map());
|
|
|
|
// Initial Array prototype.
|
|
|
|
CHECK_EQ(context->initial_array_prototype(),
|
|
|
|
*v8::Utils::OpenHandle(*CompileRun("Array.prototype")));
|
|
|
|
// Initial Generator prototype.
|
|
|
|
CHECK_EQ(context->initial_generator_prototype(),
|
|
|
|
*v8::Utils::OpenHandle(
|
|
|
|
*CompileRun("(function*(){}).__proto__.prototype")));
|
|
|
|
// Initial Iterator prototype.
|
|
|
|
CHECK_EQ(context->initial_iterator_prototype(),
|
|
|
|
*v8::Utils::OpenHandle(
|
|
|
|
*CompileRun("[][Symbol.iterator]().__proto__.__proto__")));
|
|
|
|
// Initial Object prototype.
|
|
|
|
CHECK_EQ(context->initial_object_prototype(),
|
|
|
|
*v8::Utils::OpenHandle(*CompileRun("Object.prototype")));
|
|
|
|
}
|
|
|
|
|
2013-02-25 14:46:09 +00:00
|
|
|
static void CheckOddball(Isolate* isolate, Object* obj, const char* string) {
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(obj->IsOddball());
|
2013-09-03 06:59:01 +00:00
|
|
|
Handle<Object> handle(obj, isolate);
|
2015-08-28 09:21:23 +00:00
|
|
|
Object* print_string = *Object::ToString(isolate, handle).ToHandleChecked();
|
2013-01-09 10:30:54 +00:00
|
|
|
CHECK(String::cast(print_string)->IsUtf8EqualTo(CStrVector(string)));
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-25 14:46:09 +00:00
|
|
|
static void CheckSmi(Isolate* isolate, int value, const char* string) {
|
2013-09-03 06:59:01 +00:00
|
|
|
Handle<Object> handle(Smi::FromInt(value), isolate);
|
2015-08-28 09:21:23 +00:00
|
|
|
Object* print_string = *Object::ToString(isolate, handle).ToHandleChecked();
|
2013-01-09 10:30:54 +00:00
|
|
|
CHECK(String::cast(print_string)->IsUtf8EqualTo(CStrVector(string)));
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-25 14:46:09 +00:00
|
|
|
static void CheckNumber(Isolate* isolate, double value, const char* string) {
|
2014-04-16 06:18:37 +00:00
|
|
|
Handle<Object> number = isolate->factory()->NewNumber(value);
|
|
|
|
CHECK(number->IsNumber());
|
|
|
|
Handle<Object> print_string =
|
2015-08-28 09:21:23 +00:00
|
|
|
Object::ToString(isolate, number).ToHandleChecked();
|
2014-04-16 06:18:37 +00:00
|
|
|
CHECK(String::cast(*print_string)->IsUtf8EqualTo(CStrVector(string)));
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 08:12:40 +00:00
|
|
|
void CheckEmbeddedObjectsAreEqual(Handle<Code> lhs, Handle<Code> rhs) {
|
|
|
|
int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT);
|
|
|
|
RelocIterator lhs_it(*lhs, mode_mask);
|
|
|
|
RelocIterator rhs_it(*rhs, mode_mask);
|
|
|
|
while (!lhs_it.done() && !rhs_it.done()) {
|
|
|
|
CHECK(lhs_it.rinfo()->target_object() == rhs_it.rinfo()->target_object());
|
|
|
|
|
|
|
|
lhs_it.next();
|
|
|
|
rhs_it.next();
|
|
|
|
}
|
|
|
|
CHECK(lhs_it.done() == rhs_it.done());
|
|
|
|
}
|
|
|
|
|
|
|
|
HEAP_TEST(TestNewSpaceRefsInCopiedCode) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
HandleScope sc(isolate);
|
|
|
|
|
|
|
|
Handle<Object> value = factory->NewNumber(1.000123);
|
|
|
|
CHECK(heap->InNewSpace(*value));
|
|
|
|
|
|
|
|
i::byte buffer[i::Assembler::kMinimalBufferSize];
|
|
|
|
MacroAssembler masm(isolate, buffer, sizeof(buffer),
|
|
|
|
v8::internal::CodeObjectRequired::kYes);
|
|
|
|
// Add a new-space reference to the code.
|
|
|
|
masm.Push(value);
|
|
|
|
|
|
|
|
CodeDesc desc;
|
2017-05-31 14:00:11 +00:00
|
|
|
masm.GetCode(isolate, &desc);
|
2016-08-04 08:12:40 +00:00
|
|
|
Handle<Code> code = isolate->factory()->NewCode(
|
|
|
|
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
|
|
|
|
|
|
|
|
Code* tmp = nullptr;
|
|
|
|
heap->CopyCode(*code).To(&tmp);
|
|
|
|
Handle<Code> copy(tmp);
|
|
|
|
|
|
|
|
CheckEmbeddedObjectsAreEqual(code, copy);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2016-08-04 08:12:40 +00:00
|
|
|
CheckEmbeddedObjectsAreEqual(code, copy);
|
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-02-25 14:46:09 +00:00
|
|
|
static void CheckFindCodeObject(Isolate* isolate) {
|
2008-08-22 13:33:59 +00:00
|
|
|
// Test FindCodeObject
|
|
|
|
#define __ assm.
|
|
|
|
|
2013-02-25 14:46:09 +00:00
|
|
|
Assembler assm(isolate, NULL, 0);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
__ nop(); // supported on all architectures
|
|
|
|
|
|
|
|
CodeDesc desc;
|
2017-05-31 14:00:11 +00:00
|
|
|
assm.GetCode(isolate, &desc);
|
2014-04-16 11:38:56 +00:00
|
|
|
Handle<Code> code = isolate->factory()->NewCode(
|
|
|
|
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(code->IsCode());
|
|
|
|
|
2014-04-16 11:38:56 +00:00
|
|
|
HeapObject* obj = HeapObject::cast(*code);
|
2008-08-22 13:33:59 +00:00
|
|
|
Address obj_addr = obj->address();
|
|
|
|
|
|
|
|
for (int i = 0; i < obj->Size(); i += kPointerSize) {
|
2013-07-19 09:39:01 +00:00
|
|
|
Object* found = isolate->FindCodeObject(obj_addr + i);
|
2014-04-16 11:38:56 +00:00
|
|
|
CHECK_EQ(*code, found);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-16 11:38:56 +00:00
|
|
|
Handle<Code> copy = isolate->factory()->NewCode(
|
|
|
|
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
|
|
|
|
HeapObject* obj_copy = HeapObject::cast(*copy);
|
2013-07-19 09:39:01 +00:00
|
|
|
Object* not_right = isolate->FindCodeObject(obj_copy->address() +
|
|
|
|
obj_copy->Size() / 2);
|
2014-04-16 11:38:56 +00:00
|
|
|
CHECK(not_right != *code);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-19 15:25:04 +00:00
|
|
|
TEST(HandleNull) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
HandleScope outer_scope(isolate);
|
|
|
|
LocalContext context;
|
2015-08-11 07:48:49 +00:00
|
|
|
Handle<Object> n(static_cast<Object*>(nullptr), isolate);
|
2014-03-19 15:25:04 +00:00
|
|
|
CHECK(!n.is_null());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
TEST(HeapObjects) {
|
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();
|
2013-02-25 14:46:09 +00:00
|
|
|
Heap* heap = isolate->heap();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope sc(isolate);
|
2014-04-16 06:18:37 +00:00
|
|
|
Handle<Object> value = factory->NewNumber(1.000123);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsHeapNumber());
|
|
|
|
CHECK(value->IsNumber());
|
|
|
|
CHECK_EQ(1.000123, value->Number());
|
|
|
|
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumber(1.0);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsSmi());
|
|
|
|
CHECK(value->IsNumber());
|
|
|
|
CHECK_EQ(1.0, value->Number());
|
|
|
|
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumberFromInt(1024);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsSmi());
|
|
|
|
CHECK(value->IsNumber());
|
|
|
|
CHECK_EQ(1024.0, value->Number());
|
|
|
|
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumberFromInt(Smi::kMinValue);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsSmi());
|
|
|
|
CHECK(value->IsNumber());
|
2014-04-16 06:18:37 +00:00
|
|
|
CHECK_EQ(Smi::kMinValue, Handle<Smi>::cast(value)->value());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumberFromInt(Smi::kMaxValue);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsSmi());
|
|
|
|
CHECK(value->IsNumber());
|
2014-04-16 06:18:37 +00:00
|
|
|
CHECK_EQ(Smi::kMaxValue, Handle<Smi>::cast(value)->value());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2015-01-16 07:42:00 +00:00
|
|
|
#if !defined(V8_TARGET_ARCH_64_BIT)
|
2009-10-08 12:36:12 +00:00
|
|
|
// TODO(lrn): We need a NumberFromIntptr function in order to test this.
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumberFromInt(Smi::kMinValue - 1);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsHeapNumber());
|
|
|
|
CHECK(value->IsNumber());
|
|
|
|
CHECK_EQ(static_cast<double>(Smi::kMinValue - 1), value->Number());
|
2009-10-08 12:36:12 +00:00
|
|
|
#endif
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumberFromUint(static_cast<uint32_t>(Smi::kMaxValue) + 1);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(value->IsHeapNumber());
|
|
|
|
CHECK(value->IsNumber());
|
2009-10-08 12:36:12 +00:00
|
|
|
CHECK_EQ(static_cast<double>(static_cast<uint32_t>(Smi::kMaxValue) + 1),
|
|
|
|
value->Number());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-16 06:18:37 +00:00
|
|
|
value = factory->NewNumberFromUint(static_cast<uint32_t>(1) << 31);
|
2013-01-07 15:02:56 +00:00
|
|
|
CHECK(value->IsHeapNumber());
|
|
|
|
CHECK(value->IsNumber());
|
|
|
|
CHECK_EQ(static_cast<double>(static_cast<uint32_t>(1) << 31),
|
|
|
|
value->Number());
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
// nan oddball checks
|
2014-04-16 06:18:37 +00:00
|
|
|
CHECK(factory->nan_value()->IsNumber());
|
|
|
|
CHECK(std::isnan(factory->nan_value()->Number()));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-09-10 12:38:12 +00:00
|
|
|
Handle<String> s = factory->NewStringFromStaticChars("fisk hest ");
|
2010-03-05 09:51:10 +00:00
|
|
|
CHECK(s->IsString());
|
|
|
|
CHECK_EQ(10, s->length());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-09-17 11:34:20 +00:00
|
|
|
Handle<String> object_string = Handle<String>::cast(factory->Object_string());
|
2015-11-02 14:57:59 +00:00
|
|
|
Handle<JSGlobalObject> global(
|
|
|
|
CcTest::i_isolate()->context()->global_object());
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(global, object_string));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Check ToString for oddballs
|
2013-02-25 14:46:09 +00:00
|
|
|
CheckOddball(isolate, heap->true_value(), "true");
|
|
|
|
CheckOddball(isolate, heap->false_value(), "false");
|
|
|
|
CheckOddball(isolate, heap->null_value(), "null");
|
|
|
|
CheckOddball(isolate, heap->undefined_value(), "undefined");
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Check ToString for Smis
|
2013-02-25 14:46:09 +00:00
|
|
|
CheckSmi(isolate, 0, "0");
|
|
|
|
CheckSmi(isolate, 42, "42");
|
|
|
|
CheckSmi(isolate, -42, "-42");
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Check ToString for Numbers
|
2013-02-25 14:46:09 +00:00
|
|
|
CheckNumber(isolate, 1.1, "1.1");
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-02-25 14:46:09 +00:00
|
|
|
CheckFindCodeObject(isolate);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(Tagging) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2009-05-22 14:01:06 +00:00
|
|
|
int request = 24;
|
2010-05-27 12:30:45 +00:00
|
|
|
CHECK_EQ(request, static_cast<int>(OBJECT_POINTER_ALIGN(request)));
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(Smi::FromInt(42)->IsSmi());
|
|
|
|
CHECK(Smi::FromInt(Smi::kMinValue)->IsSmi());
|
|
|
|
CHECK(Smi::FromInt(Smi::kMaxValue)->IsSmi());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(GarbageCollection) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-02-15 09:27:10 +00:00
|
|
|
Factory* factory = isolate->factory();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope sc(isolate);
|
2010-03-05 09:51:10 +00:00
|
|
|
// Check GC.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2015-11-02 14:57:59 +00:00
|
|
|
Handle<JSGlobalObject> global(
|
|
|
|
CcTest::i_isolate()->context()->global_object());
|
2013-02-28 17:03:34 +00:00
|
|
|
Handle<String> name = factory->InternalizeUtf8String("theFunction");
|
|
|
|
Handle<String> prop_name = factory->InternalizeUtf8String("theSlot");
|
|
|
|
Handle<String> prop_namex = factory->InternalizeUtf8String("theSlotx");
|
|
|
|
Handle<String> obj_name = factory->InternalizeUtf8String("theObject");
|
2013-09-17 11:01:43 +00:00
|
|
|
Handle<Smi> twenty_three(Smi::FromInt(23), isolate);
|
|
|
|
Handle<Smi> twenty_four(Smi::FromInt(24), isolate);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2010-03-05 09:51:10 +00:00
|
|
|
// Allocate a function and keep it in global object's property.
|
2014-05-09 16:39:33 +00:00
|
|
|
Handle<JSFunction> function = factory->NewFunction(name);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(global, name, function, SLOPPY).Check();
|
2010-03-05 09:51:10 +00:00
|
|
|
// Allocate an object. Unrooted after leaving the scope.
|
2013-02-15 09:27:10 +00:00
|
|
|
Handle<JSObject> obj = factory->NewJSObject(function);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, prop_name, twenty_three, SLOPPY).Check();
|
|
|
|
JSReceiver::SetProperty(obj, prop_namex, twenty_four, SLOPPY).Check();
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2014-04-11 12:47:34 +00:00
|
|
|
CHECK_EQ(Smi::FromInt(23),
|
|
|
|
*Object::GetProperty(obj, prop_name).ToHandleChecked());
|
|
|
|
CHECK_EQ(Smi::FromInt(24),
|
|
|
|
*Object::GetProperty(obj, prop_namex).ToHandleChecked());
|
2010-03-05 09:51:10 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
// Function should be alive.
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(global, name));
|
2010-03-05 09:51:10 +00:00
|
|
|
// Check function is retained.
|
2014-04-11 12:47:34 +00:00
|
|
|
Handle<Object> func_value =
|
|
|
|
Object::GetProperty(global, name).ToHandleChecked();
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(func_value->IsJSFunction());
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<JSFunction> function = Handle<JSFunction>::cast(func_value);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2010-03-05 09:51:10 +00:00
|
|
|
// Allocate another object, make it reachable from global.
|
2013-02-15 09:27:10 +00:00
|
|
|
Handle<JSObject> obj = factory->NewJSObject(function);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(global, obj_name, obj, SLOPPY).Check();
|
|
|
|
JSReceiver::SetProperty(obj, prop_name, twenty_three, SLOPPY).Check();
|
2010-03-05 09:51:10 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
// After gc, it should survive.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
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> obj =
|
|
|
|
Object::GetProperty(global, obj_name).ToHandleChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
CHECK(obj->IsJSObject());
|
2014-04-11 12:47:34 +00:00
|
|
|
CHECK_EQ(Smi::FromInt(23),
|
|
|
|
*Object::GetProperty(obj, prop_name).ToHandleChecked());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-15 12:06:53 +00:00
|
|
|
static void VerifyStringAllocation(Isolate* isolate, const char* string) {
|
|
|
|
HandleScope scope(isolate);
|
2014-04-17 13:27:02 +00:00
|
|
|
Handle<String> s = isolate->factory()->NewStringFromUtf8(
|
|
|
|
CStrVector(string)).ToHandleChecked();
|
2009-11-11 09:50:06 +00:00
|
|
|
CHECK_EQ(StrLength(string), s->length());
|
2009-03-17 09:33:06 +00:00
|
|
|
for (int index = 0; index < s->length(); index++) {
|
2010-03-05 09:51:10 +00:00
|
|
|
CHECK_EQ(static_cast<uint16_t>(string[index]), s->Get(index));
|
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(String) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-03-15 12:06:53 +00:00
|
|
|
VerifyStringAllocation(isolate, "a");
|
|
|
|
VerifyStringAllocation(isolate, "ab");
|
|
|
|
VerifyStringAllocation(isolate, "abc");
|
|
|
|
VerifyStringAllocation(isolate, "abcd");
|
|
|
|
VerifyStringAllocation(isolate, "fiskerdrengen er paa havet");
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(LocalHandles) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2008-08-22 13:33:59 +00:00
|
|
|
const char* name = "Kasper the spunky";
|
2014-04-17 13:27:02 +00:00
|
|
|
Handle<String> string = factory->NewStringFromAsciiChecked(name);
|
2009-11-11 09:50:06 +00:00
|
|
|
CHECK_EQ(StrLength(name), string->length());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(GlobalHandles) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-02-15 09:27:10 +00:00
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
Handle<Object> h1;
|
|
|
|
Handle<Object> h2;
|
|
|
|
Handle<Object> h3;
|
|
|
|
Handle<Object> h4;
|
|
|
|
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope scope(isolate);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-09-10 12:38:12 +00:00
|
|
|
Handle<Object> i = factory->NewStringFromStaticChars("fisk");
|
2013-02-15 09:27:10 +00:00
|
|
|
Handle<Object> u = factory->NewNumber(1.12344);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
h1 = global_handles->Create(*i);
|
|
|
|
h2 = global_handles->Create(*u);
|
|
|
|
h3 = global_handles->Create(*i);
|
|
|
|
h4 = global_handles->Create(*u);
|
2010-03-05 09:51:10 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// after gc, it should survive
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
CHECK((*h1)->IsString());
|
|
|
|
CHECK((*h2)->IsHeapNumber());
|
|
|
|
CHECK((*h3)->IsString());
|
|
|
|
CHECK((*h4)->IsHeapNumber());
|
|
|
|
|
|
|
|
CHECK_EQ(*h3, *h1);
|
2013-12-18 08:09:37 +00:00
|
|
|
GlobalHandles::Destroy(h1.location());
|
|
|
|
GlobalHandles::Destroy(h3.location());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
CHECK_EQ(*h4, *h2);
|
2013-12-18 08:09:37 +00:00
|
|
|
GlobalHandles::Destroy(h2.location());
|
|
|
|
GlobalHandles::Destroy(h4.location());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool WeakPointerCleared = false;
|
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
static void TestWeakGlobalHandleCallback(
|
2016-05-06 12:29:00 +00:00
|
|
|
const v8::WeakCallbackInfo<void>& data) {
|
2013-12-18 08:09:37 +00:00
|
|
|
std::pair<v8::Persistent<v8::Value>*, int>* p =
|
|
|
|
reinterpret_cast<std::pair<v8::Persistent<v8::Value>*, int>*>(
|
|
|
|
data.GetParameter());
|
|
|
|
if (p->second == 1234) WeakPointerCleared = true;
|
|
|
|
p->first->Reset();
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(WeakGlobalHandlesScavenge) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-02-15 09:27:10 +00:00
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
WeakPointerCleared = false;
|
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
Handle<Object> h1;
|
|
|
|
Handle<Object> h2;
|
|
|
|
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope scope(isolate);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-09-10 12:38:12 +00:00
|
|
|
Handle<Object> i = factory->NewStringFromStaticChars("fisk");
|
2013-02-15 09:27:10 +00:00
|
|
|
Handle<Object> u = factory->NewNumber(1.12344);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
h1 = global_handles->Create(*i);
|
|
|
|
h2 = global_handles->Create(*u);
|
2010-03-05 09:51:10 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&h2, 1234);
|
2016-05-06 12:29:00 +00:00
|
|
|
GlobalHandles::MakeWeak(
|
|
|
|
h2.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&TestWeakGlobalHandleCallback, v8::WeakCallbackType::kParameter);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Scavenge treats weak pointers as normal roots.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
CHECK((*h1)->IsString());
|
|
|
|
CHECK((*h2)->IsHeapNumber());
|
|
|
|
|
|
|
|
CHECK(!WeakPointerCleared);
|
2011-03-18 20:35:07 +00:00
|
|
|
CHECK(!global_handles->IsNearDeath(h2.location()));
|
|
|
|
CHECK(!global_handles->IsNearDeath(h1.location()));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
GlobalHandles::Destroy(h1.location());
|
|
|
|
GlobalHandles::Destroy(h2.location());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 12:14:23 +00:00
|
|
|
TEST(WeakGlobalUnmodifiedApiHandlesScavenge) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
LocalContext context;
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
|
|
|
|
|
|
|
WeakPointerCleared = false;
|
|
|
|
|
|
|
|
Handle<Object> h1;
|
|
|
|
Handle<Object> h2;
|
|
|
|
|
|
|
|
{
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
|
|
|
// Create an Api object that is unmodified.
|
|
|
|
auto function = FunctionTemplate::New(context->GetIsolate())
|
|
|
|
->GetFunction(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
auto i = function->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
Handle<Object> u = factory->NewNumber(1.12344);
|
|
|
|
|
|
|
|
h1 = global_handles->Create(*u);
|
|
|
|
h2 = global_handles->Create(*(reinterpret_cast<internal::Object**>(*i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&h2, 1234);
|
|
|
|
GlobalHandles::MakeWeak(
|
|
|
|
h2.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&TestWeakGlobalHandleCallback, v8::WeakCallbackType::kParameter);
|
|
|
|
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
|
|
|
|
|
|
|
CHECK((*h1)->IsHeapNumber());
|
|
|
|
CHECK(WeakPointerCleared);
|
|
|
|
CHECK(!global_handles->IsNearDeath(h1.location()));
|
|
|
|
|
|
|
|
GlobalHandles::Destroy(h1.location());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(WeakGlobalApiHandleModifiedMapScavenge) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
LocalContext context;
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
|
|
|
|
|
|
|
WeakPointerCleared = false;
|
|
|
|
|
|
|
|
Handle<Object> h1;
|
|
|
|
|
|
|
|
{
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
|
|
|
// Create an API object which does not have the same map as constructor.
|
|
|
|
auto function_template = FunctionTemplate::New(context->GetIsolate());
|
|
|
|
auto instance_t = function_template->InstanceTemplate();
|
|
|
|
instance_t->Set(v8::String::NewFromUtf8(context->GetIsolate(), "a",
|
|
|
|
NewStringType::kNormal)
|
|
|
|
.ToLocalChecked(),
|
|
|
|
v8::Number::New(context->GetIsolate(), 10));
|
|
|
|
auto function =
|
|
|
|
function_template->GetFunction(context.local()).ToLocalChecked();
|
|
|
|
auto i = function->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
|
|
|
|
h1 = global_handles->Create(*(reinterpret_cast<internal::Object**>(*i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&h1, 1234);
|
|
|
|
GlobalHandles::MakeWeak(
|
|
|
|
h1.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&TestWeakGlobalHandleCallback, v8::WeakCallbackType::kParameter);
|
|
|
|
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
|
|
|
|
|
|
|
CHECK(!WeakPointerCleared);
|
|
|
|
CHECK(!global_handles->IsNearDeath(h1.location()));
|
|
|
|
|
|
|
|
GlobalHandles::Destroy(h1.location());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(WeakGlobalApiHandleWithElementsScavenge) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
LocalContext context;
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
|
|
|
|
|
|
|
WeakPointerCleared = false;
|
|
|
|
|
|
|
|
Handle<Object> h1;
|
|
|
|
|
|
|
|
{
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
|
|
|
// Create an API object which has elements.
|
|
|
|
auto function_template = FunctionTemplate::New(context->GetIsolate());
|
|
|
|
auto instance_t = function_template->InstanceTemplate();
|
|
|
|
instance_t->Set(v8::String::NewFromUtf8(context->GetIsolate(), "1",
|
|
|
|
NewStringType::kNormal)
|
|
|
|
.ToLocalChecked(),
|
|
|
|
v8::Number::New(context->GetIsolate(), 10));
|
|
|
|
instance_t->Set(v8::String::NewFromUtf8(context->GetIsolate(), "2",
|
|
|
|
NewStringType::kNormal)
|
|
|
|
.ToLocalChecked(),
|
|
|
|
v8::Number::New(context->GetIsolate(), 10));
|
|
|
|
auto function =
|
|
|
|
function_template->GetFunction(context.local()).ToLocalChecked();
|
|
|
|
auto i = function->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
|
|
|
|
h1 = global_handles->Create(*(reinterpret_cast<internal::Object**>(*i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&h1, 1234);
|
|
|
|
GlobalHandles::MakeWeak(
|
|
|
|
h1.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&TestWeakGlobalHandleCallback, v8::WeakCallbackType::kParameter);
|
|
|
|
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
|
|
|
|
|
|
|
CHECK(!WeakPointerCleared);
|
|
|
|
CHECK(!global_handles->IsNearDeath(h1.location()));
|
|
|
|
|
|
|
|
GlobalHandles::Destroy(h1.location());
|
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
TEST(WeakGlobalHandlesMark) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_incremental_marking = false;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-02-15 09:27:10 +00:00
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
WeakPointerCleared = false;
|
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
Handle<Object> h1;
|
|
|
|
Handle<Object> h2;
|
|
|
|
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope scope(isolate);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-09-10 12:38:12 +00:00
|
|
|
Handle<Object> i = factory->NewStringFromStaticChars("fisk");
|
2013-02-15 09:27:10 +00:00
|
|
|
Handle<Object> u = factory->NewNumber(1.12344);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
h1 = global_handles->Create(*i);
|
|
|
|
h2 = global_handles->Create(*u);
|
2010-03-05 09:51:10 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2012-12-10 15:14:20 +00:00
|
|
|
// Make sure the objects are promoted.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2013-02-15 09:27:10 +00:00
|
|
|
CHECK(!heap->InNewSpace(*h1) && !heap->InNewSpace(*h2));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&h2, 1234);
|
2016-05-06 12:29:00 +00:00
|
|
|
GlobalHandles::MakeWeak(
|
|
|
|
h2.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&TestWeakGlobalHandleCallback, v8::WeakCallbackType::kParameter);
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK(!GlobalHandles::IsNearDeath(h1.location()));
|
|
|
|
CHECK(!GlobalHandles::IsNearDeath(h2.location()));
|
|
|
|
|
2012-12-10 15:14:20 +00:00
|
|
|
// Incremental marking potentially marked handles before they turned weak.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
CHECK((*h1)->IsString());
|
|
|
|
|
|
|
|
CHECK(WeakPointerCleared);
|
|
|
|
CHECK(!GlobalHandles::IsNearDeath(h1.location()));
|
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
GlobalHandles::Destroy(h1.location());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 14:20:38 +00:00
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
TEST(DeleteWeakGlobalHandle) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-02-15 09:27:10 +00:00
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
WeakPointerCleared = false;
|
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
Handle<Object> h;
|
|
|
|
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope scope(isolate);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2014-09-10 12:38:12 +00:00
|
|
|
Handle<Object> i = factory->NewStringFromStaticChars("fisk");
|
2011-03-18 20:35:07 +00:00
|
|
|
h = global_handles->Create(*i);
|
2010-03-05 09:51:10 +00:00
|
|
|
}
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&h, 1234);
|
2016-05-06 12:29:00 +00:00
|
|
|
GlobalHandles::MakeWeak(h.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&TestWeakGlobalHandleCallback,
|
|
|
|
v8::WeakCallbackType::kParameter);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Scanvenge does not recognize weak reference.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
CHECK(!WeakPointerCleared);
|
|
|
|
|
|
|
|
// Mark-compact treats weak reference properly.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
CHECK(WeakPointerCleared);
|
|
|
|
}
|
|
|
|
|
2015-07-24 12:02:41 +00:00
|
|
|
TEST(BytecodeArray) {
|
2017-06-13 09:25:18 +00:00
|
|
|
if (FLAG_never_compact) return;
|
2015-07-24 12:02:41 +00:00
|
|
|
static const uint8_t kRawBytes[] = {0xc3, 0x7e, 0xa5, 0x5a};
|
|
|
|
static const int kRawBytesSize = sizeof(kRawBytes);
|
|
|
|
static const int kFrameSize = 32;
|
2015-08-27 10:32:26 +00:00
|
|
|
static const int kParameterCount = 2;
|
2015-07-24 12:02:41 +00:00
|
|
|
|
2017-05-29 14:43:05 +00:00
|
|
|
FLAG_concurrent_marking = false;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_manual_evacuation_candidates_selection = true;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
2015-07-24 12:02:41 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
2015-08-27 11:11:09 +00:00
|
|
|
Handle<FixedArray> constant_pool = factory->NewFixedArray(5, TENURED);
|
|
|
|
for (int i = 0; i < 5; i++) {
|
2015-08-27 12:13:23 +00:00
|
|
|
Handle<Object> number = factory->NewHeapNumber(i);
|
|
|
|
constant_pool->set(i, *number);
|
2015-08-27 11:11:09 +00:00
|
|
|
}
|
|
|
|
|
2015-07-24 12:02:41 +00:00
|
|
|
// Allocate and initialize BytecodeArray
|
2015-08-27 10:32:26 +00:00
|
|
|
Handle<BytecodeArray> array = factory->NewBytecodeArray(
|
2015-08-27 11:11:09 +00:00
|
|
|
kRawBytesSize, kRawBytes, kFrameSize, kParameterCount, constant_pool);
|
2015-07-24 12:02:41 +00:00
|
|
|
|
|
|
|
CHECK(array->IsBytecodeArray());
|
|
|
|
CHECK_EQ(array->length(), (int)sizeof(kRawBytes));
|
2015-07-24 14:56:26 +00:00
|
|
|
CHECK_EQ(array->frame_size(), kFrameSize);
|
2015-08-27 10:32:26 +00:00
|
|
|
CHECK_EQ(array->parameter_count(), kParameterCount);
|
2015-08-27 11:11:09 +00:00
|
|
|
CHECK_EQ(array->constant_pool(), *constant_pool);
|
2015-07-24 12:02:41 +00:00
|
|
|
CHECK_LE(array->address(), array->GetFirstBytecodeAddress());
|
|
|
|
CHECK_GE(array->address() + array->BytecodeArraySize(),
|
|
|
|
array->GetFirstBytecodeAddress() + array->length());
|
|
|
|
for (int i = 0; i < kRawBytesSize; i++) {
|
|
|
|
CHECK_EQ(array->GetFirstBytecodeAddress()[i], kRawBytes[i]);
|
|
|
|
CHECK_EQ(array->get(i), kRawBytes[i]);
|
|
|
|
}
|
|
|
|
|
2015-08-27 11:11:09 +00:00
|
|
|
FixedArray* old_constant_pool_address = *constant_pool;
|
|
|
|
|
|
|
|
// Perform a full garbage collection and force the constant pool to be on an
|
|
|
|
// evacuation candidate.
|
|
|
|
Page* evac_page = Page::FromAddress(constant_pool->address());
|
2016-11-03 12:12:38 +00:00
|
|
|
heap::ForceEvacuationCandidate(evac_page);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-07-24 12:02:41 +00:00
|
|
|
|
2015-08-27 11:11:09 +00:00
|
|
|
// BytecodeArray should survive.
|
2015-07-24 12:02:41 +00:00
|
|
|
CHECK_EQ(array->length(), kRawBytesSize);
|
|
|
|
CHECK_EQ(array->frame_size(), kFrameSize);
|
|
|
|
for (int i = 0; i < kRawBytesSize; i++) {
|
|
|
|
CHECK_EQ(array->get(i), kRawBytes[i]);
|
|
|
|
CHECK_EQ(array->GetFirstBytecodeAddress()[i], kRawBytes[i]);
|
|
|
|
}
|
2015-08-27 11:11:09 +00:00
|
|
|
|
|
|
|
// Constant pool should have been migrated.
|
|
|
|
CHECK_EQ(array->constant_pool(), *constant_pool);
|
|
|
|
CHECK_NE(array->constant_pool(), old_constant_pool_address);
|
2015-07-24 12:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
static const char* not_so_random_string_table[] = {
|
|
|
|
"abstract",
|
|
|
|
"boolean",
|
|
|
|
"break",
|
|
|
|
"byte",
|
|
|
|
"case",
|
|
|
|
"catch",
|
|
|
|
"char",
|
|
|
|
"class",
|
|
|
|
"const",
|
|
|
|
"continue",
|
|
|
|
"debugger",
|
|
|
|
"default",
|
|
|
|
"delete",
|
|
|
|
"do",
|
|
|
|
"double",
|
|
|
|
"else",
|
|
|
|
"enum",
|
|
|
|
"export",
|
|
|
|
"extends",
|
|
|
|
"false",
|
|
|
|
"final",
|
|
|
|
"finally",
|
|
|
|
"float",
|
|
|
|
"for",
|
|
|
|
"function",
|
|
|
|
"goto",
|
|
|
|
"if",
|
|
|
|
"implements",
|
|
|
|
"import",
|
|
|
|
"in",
|
|
|
|
"instanceof",
|
|
|
|
"int",
|
|
|
|
"interface",
|
|
|
|
"long",
|
|
|
|
"native",
|
|
|
|
"new",
|
|
|
|
"null",
|
|
|
|
"package",
|
|
|
|
"private",
|
|
|
|
"protected",
|
|
|
|
"public",
|
|
|
|
"return",
|
|
|
|
"short",
|
|
|
|
"static",
|
|
|
|
"super",
|
|
|
|
"switch",
|
|
|
|
"synchronized",
|
|
|
|
"this",
|
|
|
|
"throw",
|
|
|
|
"throws",
|
|
|
|
"transient",
|
|
|
|
"true",
|
|
|
|
"try",
|
|
|
|
"typeof",
|
|
|
|
"var",
|
|
|
|
"void",
|
|
|
|
"volatile",
|
|
|
|
"while",
|
|
|
|
"with",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-02-28 17:03:34 +00:00
|
|
|
static void CheckInternalizedStrings(const char** strings) {
|
2014-04-29 13:58:55 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
2008-08-22 13:33:59 +00:00
|
|
|
for (const char* string = *strings; *strings != 0; string = *strings++) {
|
2014-04-29 13:58:55 +00:00
|
|
|
HandleScope scope(isolate);
|
|
|
|
Handle<String> a =
|
|
|
|
isolate->factory()->InternalizeUtf8String(CStrVector(string));
|
|
|
|
// InternalizeUtf8String may return a failure if a GC is needed.
|
2013-02-28 17:03:34 +00:00
|
|
|
CHECK(a->IsInternalizedString());
|
2014-04-23 15:43:39 +00:00
|
|
|
Handle<String> b = factory->InternalizeUtf8String(string);
|
|
|
|
CHECK_EQ(*b, *a);
|
2014-04-29 13:58:55 +00:00
|
|
|
CHECK(b->IsUtf8EqualTo(CStrVector(string)));
|
|
|
|
b = isolate->factory()->InternalizeUtf8String(CStrVector(string));
|
|
|
|
CHECK_EQ(*b, *a);
|
|
|
|
CHECK(b->IsUtf8EqualTo(CStrVector(string)));
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-28 17:03:34 +00:00
|
|
|
TEST(StringTable) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-23 15:43:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2013-02-28 17:03:34 +00:00
|
|
|
CheckInternalizedStrings(not_so_random_string_table);
|
|
|
|
CheckInternalizedStrings(not_so_random_string_table);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(FunctionAllocation) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> name = factory->InternalizeUtf8String("theFunction");
|
2014-05-09 16:39:33 +00:00
|
|
|
Handle<JSFunction> function = factory->NewFunction(name);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2013-09-17 11:01:43 +00:00
|
|
|
Handle<Smi> twenty_three(Smi::FromInt(23), isolate);
|
|
|
|
Handle<Smi> twenty_four(Smi::FromInt(24), isolate);
|
|
|
|
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> prop_name = factory->InternalizeUtf8String("theSlot");
|
|
|
|
Handle<JSObject> obj = factory->NewJSObject(function);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, prop_name, twenty_three, SLOPPY).Check();
|
2014-04-11 12:47:34 +00:00
|
|
|
CHECK_EQ(Smi::FromInt(23),
|
|
|
|
*Object::GetProperty(obj, prop_name).ToHandleChecked());
|
2008-08-22 13:33:59 +00:00
|
|
|
// Check that we can add properties to function objects.
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(function, prop_name, twenty_four, SLOPPY).Check();
|
2014-04-11 12:47:34 +00:00
|
|
|
CHECK_EQ(Smi::FromInt(24),
|
|
|
|
*Object::GetProperty(function, prop_name).ToHandleChecked());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(ObjectProperties) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<String> object_string(String::cast(CcTest::heap()->Object_string()));
|
2014-04-11 12:47:34 +00:00
|
|
|
Handle<Object> object = Object::GetProperty(
|
|
|
|
CcTest::i_isolate()->global_object(), object_string).ToHandleChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<JSFunction> constructor = Handle<JSFunction>::cast(object);
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<JSObject> obj = factory->NewJSObject(constructor);
|
|
|
|
Handle<String> first = factory->InternalizeUtf8String("first");
|
|
|
|
Handle<String> second = factory->InternalizeUtf8String("second");
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-09-17 11:01:43 +00:00
|
|
|
Handle<Smi> one(Smi::FromInt(1), isolate);
|
|
|
|
Handle<Smi> two(Smi::FromInt(2), isolate);
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
// check for empty
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// add first
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, first, one, SLOPPY).Check();
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, first));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// delete first
|
2015-11-26 09:34:11 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::DeleteProperty(obj, first, SLOPPY));
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// add first and then second
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, first, one, SLOPPY).Check();
|
|
|
|
JSReceiver::SetProperty(obj, second, two, SLOPPY).Check();
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, first));
|
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, second));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// delete first and then second
|
2015-11-26 09:34:11 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::DeleteProperty(obj, first, SLOPPY));
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, second));
|
2015-11-26 09:34:11 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::DeleteProperty(obj, second, SLOPPY));
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first));
|
|
|
|
CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, second));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// add first and then second
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, first, one, SLOPPY).Check();
|
|
|
|
JSReceiver::SetProperty(obj, second, two, SLOPPY).Check();
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, first));
|
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, second));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// delete second and then first
|
2015-11-26 09:34:11 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::DeleteProperty(obj, second, SLOPPY));
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, first));
|
2015-11-26 09:34:11 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::DeleteProperty(obj, first, SLOPPY));
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first));
|
|
|
|
CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, second));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-02-28 17:03:34 +00:00
|
|
|
// check string and internalized string match
|
2012-01-30 14:57:36 +00:00
|
|
|
const char* string1 = "fisk";
|
2014-04-17 13:27:02 +00:00
|
|
|
Handle<String> s1 = factory->NewStringFromAsciiChecked(string1);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, s1, one, SLOPPY).Check();
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> s1_string = factory->InternalizeUtf8String(string1);
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, s1_string));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-02-28 17:03:34 +00:00
|
|
|
// check internalized string and string match
|
2012-01-30 14:57:36 +00:00
|
|
|
const char* string2 = "fugl";
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> s2_string = factory->InternalizeUtf8String(string2);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, s2_string, one, SLOPPY).Check();
|
2014-04-17 13:27:02 +00:00
|
|
|
Handle<String> s2 = factory->NewStringFromAsciiChecked(string2);
|
2015-03-02 12:22:27 +00:00
|
|
|
CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, s2));
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(JSObjectMaps) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> name = factory->InternalizeUtf8String("theFunction");
|
2014-05-09 16:39:33 +00:00
|
|
|
Handle<JSFunction> function = factory->NewFunction(name);
|
2010-03-05 09:51:10 +00:00
|
|
|
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> prop_name = factory->InternalizeUtf8String("theSlot");
|
|
|
|
Handle<JSObject> obj = factory->NewJSObject(function);
|
2014-05-09 16:39:33 +00:00
|
|
|
Handle<Map> initial_map(function->initial_map());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Set a propery
|
2013-09-17 11:01:43 +00:00
|
|
|
Handle<Smi> twenty_three(Smi::FromInt(23), isolate);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, prop_name, twenty_three, SLOPPY).Check();
|
2014-04-11 12:47:34 +00:00
|
|
|
CHECK_EQ(Smi::FromInt(23),
|
|
|
|
*Object::GetProperty(obj, prop_name).ToHandleChecked());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Check the map has changed
|
2010-03-05 09:51:10 +00:00
|
|
|
CHECK(*initial_map != obj->map());
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(JSArray) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<String> name = factory->InternalizeUtf8String("Array");
|
2014-04-11 12:47:34 +00:00
|
|
|
Handle<Object> fun_obj = Object::GetProperty(
|
|
|
|
CcTest::i_isolate()->global_object(), name).ToHandleChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<JSFunction> function = Handle<JSFunction>::cast(fun_obj);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Allocate the object.
|
2014-04-17 11:57:08 +00:00
|
|
|
Handle<Object> element;
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<JSObject> object = factory->NewJSObject(function);
|
2010-03-05 09:51:10 +00:00
|
|
|
Handle<JSArray> array = Handle<JSArray>::cast(object);
|
2010-08-31 08:05:42 +00:00
|
|
|
// We just initialized the VM, no heap allocation failure yet.
|
2014-03-18 11:38:27 +00:00
|
|
|
JSArray::Initialize(array, 0);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Set array length to 0.
|
2015-06-19 14:56:57 +00:00
|
|
|
JSArray::SetLength(array, 0);
|
2016-10-07 13:05:07 +00:00
|
|
|
CHECK_EQ(Smi::kZero, array->length());
|
2011-09-22 11:30:04 +00:00
|
|
|
// Must be in fast mode.
|
2017-06-30 18:00:44 +00:00
|
|
|
CHECK(array->HasSmiOrObjectElements());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// array[length] = name.
|
2015-07-10 16:11:00 +00:00
|
|
|
JSReceiver::SetElement(isolate, array, 0, name, SLOPPY).Check();
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK_EQ(Smi::FromInt(1), array->length());
|
2014-04-17 11:57:08 +00:00
|
|
|
element = i::Object::GetElement(isolate, array, 0).ToHandleChecked();
|
|
|
|
CHECK_EQ(*element, *name);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2010-03-05 09:51:10 +00:00
|
|
|
// Set array length with larger than smi value.
|
2015-06-19 14:56:57 +00:00
|
|
|
JSArray::SetLength(array, static_cast<uint32_t>(Smi::kMaxValue) + 1);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
uint32_t int_length = 0;
|
2015-06-19 14:56:57 +00:00
|
|
|
CHECK(array->length()->ToArrayIndex(&int_length));
|
|
|
|
CHECK_EQ(static_cast<uint32_t>(Smi::kMaxValue) + 1, int_length);
|
2009-07-28 08:43:51 +00:00
|
|
|
CHECK(array->HasDictionaryElements()); // Must be in slow mode.
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// array[length] = name.
|
2015-07-10 16:11:00 +00:00
|
|
|
JSReceiver::SetElement(isolate, array, int_length, name, SLOPPY).Check();
|
2008-08-22 13:33:59 +00:00
|
|
|
uint32_t new_int_length = 0;
|
2010-05-27 12:30:45 +00:00
|
|
|
CHECK(array->length()->ToArrayIndex(&new_int_length));
|
2008-08-22 13:33:59 +00:00
|
|
|
CHECK_EQ(static_cast<double>(int_length), new_int_length - 1);
|
2014-04-17 11:57:08 +00:00
|
|
|
element = Object::GetElement(isolate, array, int_length).ToHandleChecked();
|
|
|
|
CHECK_EQ(*element, *name);
|
|
|
|
element = Object::GetElement(isolate, array, 0).ToHandleChecked();
|
|
|
|
CHECK_EQ(*element, *name);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(JSObjectCopy) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope sc(CcTest::isolate());
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<String> object_string(String::cast(CcTest::heap()->Object_string()));
|
2014-04-11 12:47:34 +00:00
|
|
|
Handle<Object> object = Object::GetProperty(
|
|
|
|
CcTest::i_isolate()->global_object(), object_string).ToHandleChecked();
|
2014-04-09 12:21:47 +00:00
|
|
|
Handle<JSFunction> constructor = Handle<JSFunction>::cast(object);
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<JSObject> obj = factory->NewJSObject(constructor);
|
|
|
|
Handle<String> first = factory->InternalizeUtf8String("first");
|
|
|
|
Handle<String> second = factory->InternalizeUtf8String("second");
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2013-09-17 11:01:43 +00:00
|
|
|
Handle<Smi> one(Smi::FromInt(1), isolate);
|
|
|
|
Handle<Smi> two(Smi::FromInt(2), isolate);
|
|
|
|
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(obj, first, one, SLOPPY).Check();
|
|
|
|
JSReceiver::SetProperty(obj, second, two, SLOPPY).Check();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2015-07-10 16:11:00 +00:00
|
|
|
JSReceiver::SetElement(isolate, obj, 0, first, SLOPPY).Check();
|
|
|
|
JSReceiver::SetElement(isolate, obj, 1, second, SLOPPY).Check();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Make the clone.
|
2014-04-17 11:57:08 +00:00
|
|
|
Handle<Object> value1, value2;
|
2014-04-29 07:02:11 +00:00
|
|
|
Handle<JSObject> clone = factory->CopyJSObject(obj);
|
2010-03-05 09:51:10 +00:00
|
|
|
CHECK(!clone.is_identical_to(obj));
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-17 11:57:08 +00:00
|
|
|
value1 = Object::GetElement(isolate, obj, 0).ToHandleChecked();
|
|
|
|
value2 = Object::GetElement(isolate, clone, 0).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
|
|
|
value1 = Object::GetElement(isolate, obj, 1).ToHandleChecked();
|
|
|
|
value2 = Object::GetElement(isolate, clone, 1).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-17 11:57:08 +00:00
|
|
|
value1 = Object::GetProperty(obj, first).ToHandleChecked();
|
|
|
|
value2 = Object::GetProperty(clone, first).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
|
|
|
value1 = Object::GetProperty(obj, second).ToHandleChecked();
|
|
|
|
value2 = Object::GetProperty(clone, second).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Flip the values.
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(clone, first, two, SLOPPY).Check();
|
|
|
|
JSReceiver::SetProperty(clone, second, one, SLOPPY).Check();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2015-07-10 16:11:00 +00:00
|
|
|
JSReceiver::SetElement(isolate, clone, 0, second, SLOPPY).Check();
|
|
|
|
JSReceiver::SetElement(isolate, clone, 1, first, SLOPPY).Check();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2014-04-17 11:57:08 +00:00
|
|
|
value1 = Object::GetElement(isolate, obj, 1).ToHandleChecked();
|
|
|
|
value2 = Object::GetElement(isolate, clone, 0).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
|
|
|
value1 = Object::GetElement(isolate, obj, 0).ToHandleChecked();
|
|
|
|
value2 = Object::GetElement(isolate, clone, 1).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
|
|
|
|
|
|
|
value1 = Object::GetProperty(obj, second).ToHandleChecked();
|
|
|
|
value2 = Object::GetProperty(clone, first).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
|
|
|
value1 = Object::GetProperty(obj, first).ToHandleChecked();
|
|
|
|
value2 = Object::GetProperty(clone, second).ToHandleChecked();
|
|
|
|
CHECK_EQ(*value1, *value2);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(StringAllocation) {
|
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();
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
const unsigned char chars[] = { 0xe5, 0xa4, 0xa7 };
|
|
|
|
for (int length = 0; length < 100; length++) {
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2014-09-10 12:38:12 +00:00
|
|
|
char* non_one_byte = NewArray<char>(3 * length + 1);
|
|
|
|
char* one_byte = NewArray<char>(length + 1);
|
|
|
|
non_one_byte[3 * length] = 0;
|
|
|
|
one_byte[length] = 0;
|
2008-08-22 13:33:59 +00:00
|
|
|
for (int i = 0; i < length; i++) {
|
2014-09-10 12:38:12 +00:00
|
|
|
one_byte[i] = 'a';
|
|
|
|
non_one_byte[3 * i] = chars[0];
|
|
|
|
non_one_byte[3 * i + 1] = chars[1];
|
|
|
|
non_one_byte[3 * i + 2] = chars[2];
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
2014-09-10 12:38:12 +00:00
|
|
|
Handle<String> non_one_byte_sym = factory->InternalizeUtf8String(
|
|
|
|
Vector<const char>(non_one_byte, 3 * length));
|
|
|
|
CHECK_EQ(length, non_one_byte_sym->length());
|
|
|
|
Handle<String> one_byte_sym =
|
|
|
|
factory->InternalizeOneByteString(OneByteVector(one_byte, length));
|
|
|
|
CHECK_EQ(length, one_byte_sym->length());
|
|
|
|
Handle<String> non_one_byte_str =
|
|
|
|
factory->NewStringFromUtf8(Vector<const char>(non_one_byte, 3 * length))
|
|
|
|
.ToHandleChecked();
|
|
|
|
non_one_byte_str->Hash();
|
|
|
|
CHECK_EQ(length, non_one_byte_str->length());
|
|
|
|
Handle<String> one_byte_str =
|
|
|
|
factory->NewStringFromUtf8(Vector<const char>(one_byte, length))
|
|
|
|
.ToHandleChecked();
|
|
|
|
one_byte_str->Hash();
|
|
|
|
CHECK_EQ(length, one_byte_str->length());
|
|
|
|
DeleteArray(non_one_byte);
|
|
|
|
DeleteArray(one_byte);
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-11 13:02:20 +00:00
|
|
|
static int ObjectsFoundInHeap(Heap* heap, Handle<Object> objs[], int size) {
|
2008-08-22 13:33:59 +00:00
|
|
|
// Count the number of objects found in the heap.
|
|
|
|
int found_count = 0;
|
2013-02-11 13:02:20 +00:00
|
|
|
HeapIterator iterator(heap);
|
2010-01-25 22:53:18 +00:00
|
|
|
for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
|
2008-08-22 13:33:59 +00:00
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
if (*objs[i] == obj) {
|
|
|
|
found_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return found_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(Iteration) {
|
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();
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Array of objects to scan haep for.
|
|
|
|
const int objs_count = 6;
|
|
|
|
Handle<Object> objs[objs_count];
|
|
|
|
int next_objs_index = 0;
|
|
|
|
|
2015-04-07 11:31:57 +00:00
|
|
|
// Allocate a JS array to OLD_SPACE and NEW_SPACE
|
2013-06-04 10:30:05 +00:00
|
|
|
objs[next_objs_index++] = factory->NewJSArray(10);
|
2017-06-30 11:26:14 +00:00
|
|
|
objs[next_objs_index++] = factory->NewJSArray(10, HOLEY_ELEMENTS, TENURED);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2008-09-05 12:34:09 +00:00
|
|
|
// Allocate a small string to OLD_DATA_SPACE and NEW_SPACE
|
2014-09-10 12:38:12 +00:00
|
|
|
objs[next_objs_index++] = factory->NewStringFromStaticChars("abcdefghij");
|
2008-08-22 13:33:59 +00:00
|
|
|
objs[next_objs_index++] =
|
2014-09-10 12:38:12 +00:00
|
|
|
factory->NewStringFromStaticChars("abcdefghij", TENURED);
|
2008-08-22 13:33:59 +00:00
|
|
|
|
|
|
|
// Allocate a large string (for large object space).
|
2016-09-06 12:58:59 +00:00
|
|
|
int large_size = kMaxRegularHeapObjectSize + 1;
|
2008-08-22 13:33:59 +00:00
|
|
|
char* str = new char[large_size];
|
|
|
|
for (int i = 0; i < large_size - 1; ++i) str[i] = 'a';
|
|
|
|
str[large_size - 1] = '\0';
|
2014-04-17 13:27:02 +00:00
|
|
|
objs[next_objs_index++] = factory->NewStringFromAsciiChecked(str, TENURED);
|
2008-08-22 13:33:59 +00:00
|
|
|
delete[] str;
|
|
|
|
|
|
|
|
// Add a Map object to look for.
|
|
|
|
objs[next_objs_index++] = Handle<Map>(HeapObject::cast(*objs[0])->map());
|
|
|
|
|
|
|
|
CHECK_EQ(objs_count, next_objs_index);
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK_EQ(objs_count, ObjectsFoundInHeap(CcTest::heap(), objs, objs_count));
|
2008-08-22 13:33:59 +00:00
|
|
|
}
|
2010-03-25 13:10:50 +00:00
|
|
|
|
2016-02-04 08:15:52 +00:00
|
|
|
TEST(TestUseOfIncrementalBarrierOnCompileLazy) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-02-04 08:15:52 +00:00
|
|
|
// Turn off always_opt because it interferes with running the built-in for
|
|
|
|
// the last call to g().
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_always_opt = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2016-02-04 08:15:52 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"function make_closure(x) {"
|
|
|
|
" return function() { return x + 3 };"
|
|
|
|
"}"
|
|
|
|
"var f = make_closure(5); f();"
|
|
|
|
"var g = make_closure(5);");
|
|
|
|
|
|
|
|
// Check f is compiled.
|
|
|
|
Handle<String> f_name = factory->InternalizeUtf8String("f");
|
|
|
|
Handle<Object> f_value =
|
|
|
|
Object::GetProperty(isolate->global_object(), f_name).ToHandleChecked();
|
|
|
|
Handle<JSFunction> f_function = Handle<JSFunction>::cast(f_value);
|
|
|
|
CHECK(f_function->is_compiled());
|
|
|
|
|
|
|
|
// Check g is not compiled.
|
|
|
|
Handle<String> g_name = factory->InternalizeUtf8String("g");
|
|
|
|
Handle<Object> g_value =
|
|
|
|
Object::GetProperty(isolate->global_object(), g_name).ToHandleChecked();
|
|
|
|
Handle<JSFunction> g_function = Handle<JSFunction>::cast(g_value);
|
2016-04-13 10:54:31 +00:00
|
|
|
CHECK(!g_function->is_compiled());
|
2016-02-04 08:15:52 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2016-02-04 08:15:52 +00:00
|
|
|
CompileRun("%OptimizeFunctionOnNextCall(f); f();");
|
|
|
|
|
|
|
|
// g should now have available an optimized function, unmarked by gc. The
|
|
|
|
// CompileLazy built-in will discover it and install it in the closure, and
|
|
|
|
// the incremental write barrier should be used.
|
|
|
|
CompileRun("g();");
|
|
|
|
CHECK(g_function->is_compiled());
|
|
|
|
}
|
2012-11-08 10:26:50 +00:00
|
|
|
|
2014-10-31 14:51:48 +00:00
|
|
|
TEST(CompilationCacheCachingBehavior) {
|
2017-05-22 08:54:28 +00:00
|
|
|
// If we do not age code, or have the compilation cache turned off, this
|
2014-10-31 14:51:48 +00:00
|
|
|
// test is invalid.
|
2017-05-22 08:54:28 +00:00
|
|
|
if (!FLAG_age_code || !FLAG_compilation_cache) {
|
2014-10-31 14:51:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
CompilationCache* compilation_cache = isolate->compilation_cache();
|
2016-03-10 12:43:51 +00:00
|
|
|
LanguageMode language_mode = construct_language_mode(FLAG_use_strict);
|
2014-10-31 14:51:48 +00:00
|
|
|
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
const char* raw_source =
|
|
|
|
"function foo() {"
|
|
|
|
" var x = 42;"
|
|
|
|
" var y = 42;"
|
|
|
|
" var z = x + y;"
|
|
|
|
"};"
|
2016-11-09 17:19:32 +00:00
|
|
|
"foo();";
|
2014-10-31 14:51:48 +00:00
|
|
|
Handle<String> source = factory->InternalizeUtf8String(raw_source);
|
|
|
|
Handle<Context> native_context = isolate->native_context();
|
|
|
|
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun(raw_source);
|
|
|
|
}
|
|
|
|
|
2016-04-18 09:00:27 +00:00
|
|
|
// The script should be in the cache now.
|
2017-02-06 10:18:05 +00:00
|
|
|
InfoVectorPair pair = compilation_cache->LookupScript(
|
2016-11-17 16:50:41 +00:00
|
|
|
source, Handle<Object>(), 0, 0, v8::ScriptOriginOptions(true, false),
|
|
|
|
native_context, language_mode);
|
2017-02-06 10:18:05 +00:00
|
|
|
CHECK(pair.has_shared());
|
2014-10-31 14:51:48 +00:00
|
|
|
|
2016-01-14 11:48:11 +00:00
|
|
|
// Check that the code cache entry survives at least on GC.
|
|
|
|
// (Unless --optimize-for-size, in which case it might get collected
|
|
|
|
// immediately.)
|
|
|
|
if (!FLAG_optimize_for_size) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2017-02-06 10:18:05 +00:00
|
|
|
pair = compilation_cache->LookupScript(source, Handle<Object>(), 0, 0,
|
2016-11-17 16:50:41 +00:00
|
|
|
v8::ScriptOriginOptions(true, false),
|
|
|
|
native_context, language_mode);
|
2017-02-06 10:18:05 +00:00
|
|
|
CHECK(pair.has_shared());
|
2016-01-14 11:48:11 +00:00
|
|
|
}
|
2014-10-31 14:51:48 +00:00
|
|
|
|
2016-01-14 11:48:11 +00:00
|
|
|
// Progress code age until it's old and ready for GC.
|
2016-11-29 12:34:31 +00:00
|
|
|
const int kAgingThreshold = 6;
|
|
|
|
for (int i = 0; i < kAgingThreshold; i++) {
|
2017-02-06 10:18:05 +00:00
|
|
|
pair.shared()->code()->MakeOlder();
|
|
|
|
if (pair.shared()->HasBytecodeArray()) {
|
|
|
|
pair.shared()->bytecode_array()->MakeOlder();
|
2016-11-29 12:34:31 +00:00
|
|
|
}
|
2014-10-31 14:51:48 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-10-31 14:51:48 +00:00
|
|
|
// Ensure code aging cleared the entry from the cache.
|
2017-02-06 10:18:05 +00:00
|
|
|
pair = compilation_cache->LookupScript(source, Handle<Object>(), 0, 0,
|
2016-11-17 16:50:41 +00:00
|
|
|
v8::ScriptOriginOptions(true, false),
|
|
|
|
native_context, language_mode);
|
2017-02-06 10:18:05 +00:00
|
|
|
CHECK(!pair.has_shared());
|
2014-10-31 14:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-09 11:01:19 +00:00
|
|
|
static void OptimizeEmptyFunction(const char* name) {
|
|
|
|
HandleScope scope(CcTest::i_isolate());
|
|
|
|
EmbeddedVector<char, 256> source;
|
|
|
|
SNPrintF(source,
|
|
|
|
"function %s() { return 0; }"
|
|
|
|
"%s(); %s();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(%s);"
|
|
|
|
"%s();",
|
|
|
|
name, name, name, name, name);
|
|
|
|
CompileRun(source.start());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
// Count the number of native contexts in the weak list of native contexts.
|
|
|
|
int CountNativeContexts() {
|
2010-10-18 14:59:03 +00:00
|
|
|
int count = 0;
|
2013-09-19 09:46:15 +00:00
|
|
|
Object* object = CcTest::heap()->native_contexts_list();
|
2016-06-14 10:08:44 +00:00
|
|
|
while (!object->IsUndefined(CcTest::i_isolate())) {
|
2010-10-18 14:59:03 +00:00
|
|
|
count++;
|
2016-05-12 08:50:18 +00:00
|
|
|
object = Context::cast(object)->next_context_link();
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
2015-12-02 12:35:12 +00:00
|
|
|
return count;
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-07 11:31:57 +00:00
|
|
|
// Count the number of user functions in the weak list of optimized
|
2012-08-17 09:03:08 +00:00
|
|
|
// functions attached to a native context.
|
2015-11-09 19:48:08 +00:00
|
|
|
static int CountOptimizedUserFunctions(v8::Local<v8::Context> context) {
|
2010-12-07 11:31:57 +00:00
|
|
|
int count = 0;
|
|
|
|
Handle<Context> icontext = v8::Utils::OpenHandle(*context);
|
|
|
|
Object* object = icontext->get(Context::OPTIMIZED_FUNCTIONS_LIST);
|
2015-11-04 14:56:11 +00:00
|
|
|
while (object->IsJSFunction() &&
|
2016-11-17 09:42:38 +00:00
|
|
|
JSFunction::cast(object)->shared()->IsUserJavaScript()) {
|
2010-12-07 11:31:57 +00:00
|
|
|
count++;
|
|
|
|
object = JSFunction::cast(object)->next_function_link();
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-18 14:59:03 +00:00
|
|
|
TEST(TestInternalWeakLists) {
|
2015-04-09 11:01:19 +00:00
|
|
|
FLAG_always_opt = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2011-03-18 20:35:07 +00:00
|
|
|
v8::V8::Initialize();
|
|
|
|
|
2012-12-10 15:14:20 +00:00
|
|
|
// Some flags turn Scavenge collections into Mark-sweep collections
|
|
|
|
// and hence are incompatible with this test case.
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2015-03-06 12:36:16 +00:00
|
|
|
FLAG_retain_maps_for_n_gc = 0;
|
2012-12-10 15:14:20 +00:00
|
|
|
|
2014-07-29 13:08:51 +00:00
|
|
|
static const int kNumTestContexts = 10;
|
2010-10-18 14:59:03 +00:00
|
|
|
|
2014-07-29 13:08:51 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx[kNumTestContexts];
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2010-10-18 14:59:03 +00:00
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(0, CountNativeContexts());
|
2010-10-18 14:59:03 +00:00
|
|
|
|
|
|
|
// Create a number of global contests which gets linked together.
|
|
|
|
for (int i = 0; i < kNumTestContexts; i++) {
|
2013-09-19 08:54:58 +00:00
|
|
|
ctx[i] = v8::Context::New(CcTest::isolate());
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2013-07-08 09:07:57 +00:00
|
|
|
// Collect garbage that might have been created by one of the
|
|
|
|
// installed extensions.
|
|
|
|
isolate->compilation_cache()->Clear();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-07-29 13:08:51 +00:00
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(i + 1, CountNativeContexts());
|
2010-10-18 14:59:03 +00:00
|
|
|
|
|
|
|
ctx[i]->Enter();
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2015-04-09 11:01:19 +00:00
|
|
|
// Create a handle scope so no function objects get stuck in the outer
|
|
|
|
// handle scope.
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope scope(isolate);
|
2010-12-07 11:31:57 +00:00
|
|
|
CHECK_EQ(0, CountOptimizedUserFunctions(ctx[i]));
|
2015-04-09 11:01:19 +00:00
|
|
|
OptimizeEmptyFunction("f1");
|
|
|
|
CHECK_EQ(1, CountOptimizedUserFunctions(ctx[i]));
|
|
|
|
OptimizeEmptyFunction("f2");
|
|
|
|
CHECK_EQ(2, CountOptimizedUserFunctions(ctx[i]));
|
|
|
|
OptimizeEmptyFunction("f3");
|
|
|
|
CHECK_EQ(3, CountOptimizedUserFunctions(ctx[i]));
|
|
|
|
OptimizeEmptyFunction("f4");
|
|
|
|
CHECK_EQ(4, CountOptimizedUserFunctions(ctx[i]));
|
|
|
|
OptimizeEmptyFunction("f5");
|
|
|
|
CHECK_EQ(5, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
|
|
|
|
// Remove function f1, and
|
|
|
|
CompileRun("f1=null");
|
|
|
|
|
|
|
|
// Scavenge treats these references as strong.
|
2014-07-29 13:08:51 +00:00
|
|
|
for (int j = 0; j < 10; j++) {
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-04-09 11:01:19 +00:00
|
|
|
CHECK_EQ(5, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mark compact handles the weak references.
|
2013-02-15 09:27:10 +00:00
|
|
|
isolate->compilation_cache()->Clear();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-04-09 11:01:19 +00:00
|
|
|
CHECK_EQ(4, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
|
|
|
|
// Get rid of f3 and f5 in the same way.
|
|
|
|
CompileRun("f3=null");
|
2014-07-29 13:08:51 +00:00
|
|
|
for (int j = 0; j < 10; j++) {
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-04-09 11:01:19 +00:00
|
|
|
CHECK_EQ(4, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
}
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-04-09 11:01:19 +00:00
|
|
|
CHECK_EQ(3, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
CompileRun("f5=null");
|
2014-07-29 13:08:51 +00:00
|
|
|
for (int j = 0; j < 10; j++) {
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-04-09 11:01:19 +00:00
|
|
|
CHECK_EQ(3, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
}
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-04-09 11:01:19 +00:00
|
|
|
CHECK_EQ(2, CountOptimizedUserFunctions(ctx[i]));
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2010-10-18 14:59:03 +00:00
|
|
|
ctx[i]->Exit();
|
|
|
|
}
|
|
|
|
|
2010-10-18 17:01:30 +00:00
|
|
|
// Force compilation cache cleanup.
|
2014-12-22 14:27:19 +00:00
|
|
|
CcTest::heap()->NotifyContextDisposed(true);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2010-10-18 17:01:30 +00:00
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
// Dispose the native contexts one by one.
|
2010-10-18 14:59:03 +00:00
|
|
|
for (int i = 0; i < kNumTestContexts; i++) {
|
2013-05-02 20:18:42 +00:00
|
|
|
// TODO(dcarney): is there a better way to do this?
|
|
|
|
i::Object** unsafe = reinterpret_cast<i::Object**>(*ctx[i]);
|
2013-09-19 09:46:15 +00:00
|
|
|
*unsafe = CcTest::heap()->undefined_value();
|
2010-10-18 14:59:03 +00:00
|
|
|
ctx[i].Clear();
|
|
|
|
|
|
|
|
// Scavenge treats these references as strong.
|
2014-07-29 13:08:51 +00:00
|
|
|
for (int j = 0; j < 10; j++) {
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(i::NEW_SPACE);
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(kNumTestContexts - i, CountNativeContexts());
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mark compact handles the weak references.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(kNumTestContexts - i - 1, CountNativeContexts());
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(0, CountNativeContexts());
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
// Count the number of native contexts in the weak list of native contexts
|
2010-10-18 14:59:03 +00:00
|
|
|
// causing a GC after the specified number of elements.
|
2013-02-25 14:46:09 +00:00
|
|
|
static int CountNativeContextsWithGC(Isolate* isolate, int n) {
|
|
|
|
Heap* heap = isolate->heap();
|
2010-10-18 14:59:03 +00:00
|
|
|
int count = 0;
|
2013-02-25 14:46:09 +00:00
|
|
|
Handle<Object> object(heap->native_contexts_list(), isolate);
|
2016-06-14 10:08:44 +00:00
|
|
|
while (!object->IsUndefined(isolate)) {
|
2010-10-18 14:59:03 +00:00
|
|
|
count++;
|
2017-04-26 22:16:41 +00:00
|
|
|
if (count == n) CcTest::CollectAllGarbage();
|
2010-10-18 14:59:03 +00:00
|
|
|
object =
|
2016-05-12 08:50:18 +00:00
|
|
|
Handle<Object>(Context::cast(*object)->next_context_link(), isolate);
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
2015-12-02 12:35:12 +00:00
|
|
|
return count;
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-07 11:31:57 +00:00
|
|
|
// Count the number of user functions in the weak list of optimized
|
2012-08-17 09:03:08 +00:00
|
|
|
// functions attached to a native context causing a GC after the
|
2010-12-07 11:31:57 +00:00
|
|
|
// specified number of elements.
|
2015-11-09 19:48:08 +00:00
|
|
|
static int CountOptimizedUserFunctionsWithGC(v8::Local<v8::Context> context,
|
2010-12-07 11:31:57 +00:00
|
|
|
int n) {
|
|
|
|
int count = 0;
|
|
|
|
Handle<Context> icontext = v8::Utils::OpenHandle(*context);
|
2013-02-25 14:46:09 +00:00
|
|
|
Isolate* isolate = icontext->GetIsolate();
|
|
|
|
Handle<Object> object(icontext->get(Context::OPTIMIZED_FUNCTIONS_LIST),
|
|
|
|
isolate);
|
2010-12-07 11:31:57 +00:00
|
|
|
while (object->IsJSFunction() &&
|
2016-11-17 09:42:38 +00:00
|
|
|
Handle<JSFunction>::cast(object)->shared()->IsUserJavaScript()) {
|
2010-12-07 11:31:57 +00:00
|
|
|
count++;
|
2016-09-07 10:02:58 +00:00
|
|
|
if (count == n)
|
|
|
|
isolate->heap()->CollectAllGarbage(
|
|
|
|
i::Heap::kFinalizeIncrementalMarkingMask,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2010-12-07 11:31:57 +00:00
|
|
|
object = Handle<Object>(
|
2013-02-25 14:46:09 +00:00
|
|
|
Object::cast(JSFunction::cast(*object)->next_function_link()),
|
|
|
|
isolate);
|
2010-12-07 11:31:57 +00:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-18 14:59:03 +00:00
|
|
|
TEST(TestInternalWeakListsTraverseWithGC) {
|
2015-04-09 11:01:19 +00:00
|
|
|
FLAG_always_opt = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2011-03-18 20:35:07 +00:00
|
|
|
v8::V8::Initialize();
|
|
|
|
|
2014-07-29 13:08:51 +00:00
|
|
|
static const int kNumTestContexts = 10;
|
2010-10-18 14:59:03 +00:00
|
|
|
|
2015-04-09 11:01:19 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx[kNumTestContexts];
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2010-10-18 14:59:03 +00:00
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(0, CountNativeContexts());
|
2010-10-18 14:59:03 +00:00
|
|
|
|
|
|
|
// Create an number of contexts and check the length of the weak list both
|
|
|
|
// with and without GCs while iterating the list.
|
|
|
|
for (int i = 0; i < kNumTestContexts; i++) {
|
2013-09-19 08:54:58 +00:00
|
|
|
ctx[i] = v8::Context::New(CcTest::isolate());
|
2012-08-17 09:03:08 +00:00
|
|
|
CHECK_EQ(i + 1, CountNativeContexts());
|
2013-02-25 14:46:09 +00:00
|
|
|
CHECK_EQ(i + 1, CountNativeContextsWithGC(isolate, i / 2 + 1));
|
2010-12-07 11:01:02 +00:00
|
|
|
}
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2015-04-09 11:01:19 +00:00
|
|
|
ctx[0]->Enter();
|
2014-07-29 13:08:51 +00:00
|
|
|
|
2010-12-07 11:31:57 +00:00
|
|
|
// Compile a number of functions the length of the weak list of optimized
|
|
|
|
// functions both with and without GCs while iterating the list.
|
|
|
|
CHECK_EQ(0, CountOptimizedUserFunctions(ctx[0]));
|
2015-04-09 11:01:19 +00:00
|
|
|
OptimizeEmptyFunction("f1");
|
|
|
|
CHECK_EQ(1, CountOptimizedUserFunctions(ctx[0]));
|
|
|
|
CHECK_EQ(1, CountOptimizedUserFunctionsWithGC(ctx[0], 1));
|
|
|
|
OptimizeEmptyFunction("f2");
|
|
|
|
CHECK_EQ(2, CountOptimizedUserFunctions(ctx[0]));
|
|
|
|
CHECK_EQ(2, CountOptimizedUserFunctionsWithGC(ctx[0], 1));
|
|
|
|
OptimizeEmptyFunction("f3");
|
|
|
|
CHECK_EQ(3, CountOptimizedUserFunctions(ctx[0]));
|
|
|
|
CHECK_EQ(3, CountOptimizedUserFunctionsWithGC(ctx[0], 1));
|
|
|
|
OptimizeEmptyFunction("f4");
|
|
|
|
CHECK_EQ(4, CountOptimizedUserFunctions(ctx[0]));
|
|
|
|
CHECK_EQ(4, CountOptimizedUserFunctionsWithGC(ctx[0], 2));
|
|
|
|
OptimizeEmptyFunction("f5");
|
|
|
|
CHECK_EQ(5, CountOptimizedUserFunctions(ctx[0]));
|
|
|
|
CHECK_EQ(5, CountOptimizedUserFunctionsWithGC(ctx[0], 4));
|
2010-12-07 11:31:57 +00:00
|
|
|
|
|
|
|
ctx[0]->Exit();
|
2010-10-18 14:59:03 +00:00
|
|
|
}
|
2010-11-15 10:38:24 +00:00
|
|
|
|
|
|
|
|
2014-12-16 12:33:20 +00:00
|
|
|
TEST(TestSizeOfRegExpCode) {
|
|
|
|
if (!FLAG_regexp_optimization) return;
|
|
|
|
|
|
|
|
v8::V8::Initialize();
|
|
|
|
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
// Adjust source below and this check to match
|
|
|
|
// RegExpImple::kRegExpTooLargeToOptimize.
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK_EQ(i::RegExpImpl::kRegExpTooLargeToOptimize, 20 * KB);
|
2014-12-16 12:33:20 +00:00
|
|
|
|
|
|
|
// Compile a regexp that is much larger if we are using regexp optimizations.
|
|
|
|
CompileRun(
|
|
|
|
"var reg_exp_source = '(?:a|bc|def|ghij|klmno|pqrstu)';"
|
|
|
|
"var half_size_reg_exp;"
|
2015-06-10 09:55:22 +00:00
|
|
|
"while (reg_exp_source.length < 20 * 1024) {"
|
2014-12-16 12:33:20 +00:00
|
|
|
" half_size_reg_exp = reg_exp_source;"
|
|
|
|
" reg_exp_source = reg_exp_source + reg_exp_source;"
|
|
|
|
"}"
|
|
|
|
// Flatten string.
|
|
|
|
"reg_exp_source.match(/f/);");
|
|
|
|
|
|
|
|
// Get initial heap size after several full GCs, which will stabilize
|
|
|
|
// the heap size and return with sweeping finished completely.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-12-16 12:33:20 +00:00
|
|
|
MarkCompactCollector* collector = CcTest::heap()->mark_compact_collector();
|
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
|
|
|
}
|
|
|
|
int initial_size = static_cast<int>(CcTest::heap()->SizeOfObjects());
|
|
|
|
|
|
|
|
CompileRun("'foo'.match(reg_exp_source);");
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-12-16 12:33:20 +00:00
|
|
|
int size_with_regexp = static_cast<int>(CcTest::heap()->SizeOfObjects());
|
|
|
|
|
|
|
|
CompileRun("'foo'.match(half_size_reg_exp);");
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-12-16 12:33:20 +00:00
|
|
|
int size_with_optimized_regexp =
|
|
|
|
static_cast<int>(CcTest::heap()->SizeOfObjects());
|
|
|
|
|
|
|
|
int size_of_regexp_code = size_with_regexp - initial_size;
|
|
|
|
|
2015-06-10 09:55:22 +00:00
|
|
|
// On some platforms the debug-code flag causes huge amounts of regexp code
|
|
|
|
// to be emitted, breaking this test.
|
|
|
|
if (!FLAG_debug_code) {
|
|
|
|
CHECK_LE(size_of_regexp_code, 1 * MB);
|
|
|
|
}
|
2014-12-16 12:33:20 +00:00
|
|
|
|
|
|
|
// Small regexp is half the size, but compiles to more than twice the code
|
|
|
|
// due to the optimization steps.
|
|
|
|
CHECK_GE(size_with_optimized_regexp,
|
|
|
|
size_with_regexp + size_of_regexp_code * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-21 12:40:22 +00:00
|
|
|
HEAP_TEST(TestSizeOfObjects) {
|
2012-01-11 10:33:34 +00:00
|
|
|
v8::V8::Initialize();
|
2016-08-11 14:21:44 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
MarkCompactCollector* collector = heap->mark_compact_collector();
|
2012-01-11 10:33:34 +00:00
|
|
|
|
|
|
|
// Get initial heap size after several full GCs, which will stabilize
|
|
|
|
// the heap size and return with sweeping finished completely.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-07-15 08:24:44 +00:00
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
2014-04-25 09:50:42 +00:00
|
|
|
}
|
2016-08-11 14:21:44 +00:00
|
|
|
int initial_size = static_cast<int>(heap->SizeOfObjects());
|
2012-01-11 10:33:34 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// Allocate objects on several different old-space pages so that
|
2014-04-25 09:50:42 +00:00
|
|
|
// concurrent sweeper threads will be busy sweeping the old space on
|
|
|
|
// subsequent GC runs.
|
2014-03-19 11:31:43 +00:00
|
|
|
AlwaysAllocateScope always_allocate(CcTest::i_isolate());
|
2012-01-11 10:59:21 +00:00
|
|
|
int filler_size = static_cast<int>(FixedArray::SizeFor(8192));
|
2012-01-11 10:33:34 +00:00
|
|
|
for (int i = 1; i <= 100; i++) {
|
2016-08-11 14:21:44 +00:00
|
|
|
heap->AllocateFixedArray(8192, TENURED).ToObjectChecked();
|
2012-01-11 10:59:21 +00:00
|
|
|
CHECK_EQ(initial_size + i * filler_size,
|
2016-08-11 14:21:44 +00:00
|
|
|
static_cast<int>(heap->SizeOfObjects()));
|
2012-01-11 10:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The heap size should go back to initial size after a full GC, even
|
|
|
|
// though sweeping didn't finish yet.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-05-02 12:58:40 +00:00
|
|
|
// Normally sweeping would not be complete here, but no guarantees.
|
2016-08-11 14:21:44 +00:00
|
|
|
CHECK_EQ(initial_size, static_cast<int>(heap->SizeOfObjects()));
|
2014-04-25 09:50:42 +00:00
|
|
|
// Waiting for sweeper threads should not change heap size.
|
2014-07-15 08:24:44 +00:00
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
2012-01-11 10:33:34 +00:00
|
|
|
}
|
2016-08-11 14:21:44 +00:00
|
|
|
CHECK_EQ(initial_size, static_cast<int>(heap->SizeOfObjects()));
|
2012-01-11 10:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-29 13:18:13 +00:00
|
|
|
TEST(TestAlignmentCalculations) {
|
2015-06-02 22:56:00 +00:00
|
|
|
// Maximum fill amounts are consistent.
|
2015-05-29 13:18:13 +00:00
|
|
|
int maximum_double_misalignment = kDoubleSize - kPointerSize;
|
|
|
|
int max_word_fill = Heap::GetMaximumFillToAlign(kWordAligned);
|
|
|
|
CHECK_EQ(0, max_word_fill);
|
|
|
|
int max_double_fill = Heap::GetMaximumFillToAlign(kDoubleAligned);
|
|
|
|
CHECK_EQ(maximum_double_misalignment, max_double_fill);
|
|
|
|
int max_double_unaligned_fill = Heap::GetMaximumFillToAlign(kDoubleUnaligned);
|
|
|
|
CHECK_EQ(maximum_double_misalignment, max_double_unaligned_fill);
|
|
|
|
|
2015-08-11 07:48:49 +00:00
|
|
|
Address base = static_cast<Address>(NULL);
|
2015-05-29 13:18:13 +00:00
|
|
|
int fill = 0;
|
|
|
|
|
|
|
|
// Word alignment never requires fill.
|
|
|
|
fill = Heap::GetFillToAlign(base, kWordAligned);
|
|
|
|
CHECK_EQ(0, fill);
|
|
|
|
fill = Heap::GetFillToAlign(base + kPointerSize, kWordAligned);
|
|
|
|
CHECK_EQ(0, fill);
|
|
|
|
|
|
|
|
// No fill is required when address is double aligned.
|
|
|
|
fill = Heap::GetFillToAlign(base, kDoubleAligned);
|
|
|
|
CHECK_EQ(0, fill);
|
|
|
|
// Fill is required if address is not double aligned.
|
|
|
|
fill = Heap::GetFillToAlign(base + kPointerSize, kDoubleAligned);
|
|
|
|
CHECK_EQ(maximum_double_misalignment, fill);
|
|
|
|
// kDoubleUnaligned has the opposite fill amounts.
|
|
|
|
fill = Heap::GetFillToAlign(base, kDoubleUnaligned);
|
|
|
|
CHECK_EQ(maximum_double_misalignment, fill);
|
|
|
|
fill = Heap::GetFillToAlign(base + kPointerSize, kDoubleUnaligned);
|
|
|
|
CHECK_EQ(0, fill);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static HeapObject* NewSpaceAllocateAligned(int size,
|
|
|
|
AllocationAlignment alignment) {
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
AllocationResult allocation =
|
|
|
|
heap->new_space()->AllocateRawAligned(size, alignment);
|
|
|
|
HeapObject* obj = NULL;
|
|
|
|
allocation.To(&obj);
|
2016-02-25 14:36:13 +00:00
|
|
|
heap->CreateFillerObjectAt(obj->address(), size, ClearRecordedSlots::kNo);
|
2015-05-29 13:18:13 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-02 22:56:00 +00:00
|
|
|
// Get new space allocation into the desired alignment.
|
|
|
|
static Address AlignNewSpace(AllocationAlignment alignment, int offset) {
|
2016-06-06 15:12:08 +00:00
|
|
|
Address* top_addr = CcTest::heap()->new_space()->allocation_top_address();
|
|
|
|
int fill = Heap::GetFillToAlign(*top_addr, alignment);
|
2015-06-02 22:56:00 +00:00
|
|
|
if (fill) {
|
|
|
|
NewSpaceAllocateAligned(fill + offset, kWordAligned);
|
|
|
|
}
|
2016-06-06 15:12:08 +00:00
|
|
|
return *top_addr;
|
2015-06-02 22:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-29 13:18:13 +00:00
|
|
|
TEST(TestAlignedAllocation) {
|
|
|
|
// Double misalignment is 4 on 32-bit platforms, 0 on 64-bit ones.
|
|
|
|
const intptr_t double_misalignment = kDoubleSize - kPointerSize;
|
2016-06-06 15:12:08 +00:00
|
|
|
Address* top_addr = CcTest::heap()->new_space()->allocation_top_address();
|
2015-06-02 22:56:00 +00:00
|
|
|
Address start;
|
|
|
|
HeapObject* obj;
|
|
|
|
HeapObject* filler;
|
2015-05-29 13:18:13 +00:00
|
|
|
if (double_misalignment) {
|
2015-06-02 22:56:00 +00:00
|
|
|
// Allocate a pointer sized object that must be double aligned at an
|
|
|
|
// aligned address.
|
|
|
|
start = AlignNewSpace(kDoubleAligned, 0);
|
|
|
|
obj = NewSpaceAllocateAligned(kPointerSize, kDoubleAligned);
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment));
|
|
|
|
// There is no filler.
|
2016-06-06 15:12:08 +00:00
|
|
|
CHECK_EQ(kPointerSize, *top_addr - start);
|
2015-06-02 22:56:00 +00:00
|
|
|
|
|
|
|
// Allocate a second pointer sized object that must be double aligned at an
|
|
|
|
// unaligned address.
|
|
|
|
start = AlignNewSpace(kDoubleAligned, kPointerSize);
|
|
|
|
obj = NewSpaceAllocateAligned(kPointerSize, kDoubleAligned);
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment));
|
|
|
|
// There is a filler object before the object.
|
|
|
|
filler = HeapObject::FromAddress(start);
|
|
|
|
CHECK(obj != filler && filler->IsFiller() &&
|
|
|
|
filler->Size() == kPointerSize);
|
2016-06-06 15:12:08 +00:00
|
|
|
CHECK_EQ(kPointerSize + double_misalignment, *top_addr - start);
|
2015-06-02 22:56:00 +00:00
|
|
|
|
|
|
|
// Similarly for kDoubleUnaligned.
|
|
|
|
start = AlignNewSpace(kDoubleUnaligned, 0);
|
|
|
|
obj = NewSpaceAllocateAligned(kPointerSize, kDoubleUnaligned);
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment, kPointerSize));
|
2016-06-06 15:12:08 +00:00
|
|
|
CHECK_EQ(kPointerSize, *top_addr - start);
|
2015-06-02 22:56:00 +00:00
|
|
|
start = AlignNewSpace(kDoubleUnaligned, kPointerSize);
|
|
|
|
obj = NewSpaceAllocateAligned(kPointerSize, kDoubleUnaligned);
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment, kPointerSize));
|
|
|
|
// There is a filler object before the object.
|
|
|
|
filler = HeapObject::FromAddress(start);
|
|
|
|
CHECK(obj != filler && filler->IsFiller() &&
|
|
|
|
filler->Size() == kPointerSize);
|
2016-06-06 15:12:08 +00:00
|
|
|
CHECK_EQ(kPointerSize + double_misalignment, *top_addr - start);
|
2015-05-29 13:18:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static HeapObject* OldSpaceAllocateAligned(int size,
|
|
|
|
AllocationAlignment alignment) {
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
AllocationResult allocation =
|
|
|
|
heap->old_space()->AllocateRawAligned(size, alignment);
|
|
|
|
HeapObject* obj = NULL;
|
|
|
|
allocation.To(&obj);
|
2016-02-25 14:36:13 +00:00
|
|
|
heap->CreateFillerObjectAt(obj->address(), size, ClearRecordedSlots::kNo);
|
2015-05-29 13:18:13 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-02 22:56:00 +00:00
|
|
|
// Get old space allocation into the desired alignment.
|
|
|
|
static Address AlignOldSpace(AllocationAlignment alignment, int offset) {
|
2016-06-06 15:12:08 +00:00
|
|
|
Address* top_addr = CcTest::heap()->old_space()->allocation_top_address();
|
|
|
|
int fill = Heap::GetFillToAlign(*top_addr, alignment);
|
2015-06-02 22:56:00 +00:00
|
|
|
int allocation = fill + offset;
|
|
|
|
if (allocation) {
|
|
|
|
OldSpaceAllocateAligned(allocation, kWordAligned);
|
|
|
|
}
|
2016-06-06 15:12:08 +00:00
|
|
|
Address top = *top_addr;
|
2015-06-02 22:56:00 +00:00
|
|
|
// Now force the remaining allocation onto the free list.
|
|
|
|
CcTest::heap()->old_space()->EmptyAllocationInfo();
|
|
|
|
return top;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-29 13:18:13 +00:00
|
|
|
// Test the case where allocation must be done from the free list, so filler
|
|
|
|
// may precede or follow the object.
|
|
|
|
TEST(TestAlignedOverAllocation) {
|
2016-09-06 11:02:21 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
// Test checks for fillers before and behind objects and requires a fresh
|
|
|
|
// page and empty free list.
|
|
|
|
heap::AbandonCurrentlyFreeMemory(heap->old_space());
|
|
|
|
// Allocate a dummy object to properly set up the linear allocation info.
|
|
|
|
AllocationResult dummy =
|
|
|
|
heap->old_space()->AllocateRawUnaligned(kPointerSize);
|
|
|
|
CHECK(!dummy.IsRetry());
|
2016-09-30 11:13:38 +00:00
|
|
|
heap->CreateFillerObjectAt(dummy.ToObjectChecked()->address(), kPointerSize,
|
|
|
|
ClearRecordedSlots::kNo);
|
2016-09-06 11:02:21 +00:00
|
|
|
|
2015-05-29 13:18:13 +00:00
|
|
|
// Double misalignment is 4 on 32-bit platforms, 0 on 64-bit ones.
|
|
|
|
const intptr_t double_misalignment = kDoubleSize - kPointerSize;
|
2015-06-02 22:56:00 +00:00
|
|
|
Address start;
|
|
|
|
HeapObject* obj;
|
2017-02-15 15:42:27 +00:00
|
|
|
HeapObject* filler;
|
2015-05-29 13:18:13 +00:00
|
|
|
if (double_misalignment) {
|
2015-06-02 22:56:00 +00:00
|
|
|
start = AlignOldSpace(kDoubleAligned, 0);
|
|
|
|
obj = OldSpaceAllocateAligned(kPointerSize, kDoubleAligned);
|
|
|
|
// The object is aligned, and a filler object is created after.
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment));
|
2017-02-15 15:42:27 +00:00
|
|
|
filler = HeapObject::FromAddress(start + kPointerSize);
|
|
|
|
CHECK(obj != filler && filler->IsFiller() &&
|
|
|
|
filler->Size() == kPointerSize);
|
2015-05-29 13:18:13 +00:00
|
|
|
// Try the opposite alignment case.
|
2015-06-02 22:56:00 +00:00
|
|
|
start = AlignOldSpace(kDoubleAligned, kPointerSize);
|
|
|
|
obj = OldSpaceAllocateAligned(kPointerSize, kDoubleAligned);
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment));
|
2017-02-15 15:42:27 +00:00
|
|
|
filler = HeapObject::FromAddress(start);
|
|
|
|
CHECK(obj != filler);
|
|
|
|
CHECK(filler->IsFiller());
|
|
|
|
CHECK(filler->Size() == kPointerSize);
|
|
|
|
CHECK(obj != filler && filler->IsFiller() &&
|
|
|
|
filler->Size() == kPointerSize);
|
2015-05-29 13:18:13 +00:00
|
|
|
|
|
|
|
// Similarly for kDoubleUnaligned.
|
2015-06-02 22:56:00 +00:00
|
|
|
start = AlignOldSpace(kDoubleUnaligned, 0);
|
|
|
|
obj = OldSpaceAllocateAligned(kPointerSize, kDoubleUnaligned);
|
|
|
|
// The object is aligned, and a filler object is created after.
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment, kPointerSize));
|
2017-02-15 15:42:27 +00:00
|
|
|
filler = HeapObject::FromAddress(start + kPointerSize);
|
|
|
|
CHECK(obj != filler && filler->IsFiller() &&
|
|
|
|
filler->Size() == kPointerSize);
|
2015-05-29 13:18:13 +00:00
|
|
|
// Try the opposite alignment case.
|
2015-06-02 22:56:00 +00:00
|
|
|
start = AlignOldSpace(kDoubleUnaligned, kPointerSize);
|
|
|
|
obj = OldSpaceAllocateAligned(kPointerSize, kDoubleUnaligned);
|
|
|
|
CHECK(IsAddressAligned(obj->address(), kDoubleAlignment, kPointerSize));
|
2017-02-15 15:42:27 +00:00
|
|
|
filler = HeapObject::FromAddress(start);
|
|
|
|
CHECK(obj != filler && filler->IsFiller() &&
|
|
|
|
filler->Size() == kPointerSize);
|
2015-05-29 13:18:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-15 10:38:24 +00:00
|
|
|
TEST(TestSizeOfObjectsVsHeapIteratorPrecision) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2014-05-21 09:49:18 +00:00
|
|
|
HeapIterator iterator(CcTest::heap());
|
2014-05-22 11:13:37 +00:00
|
|
|
intptr_t size_of_objects_1 = CcTest::heap()->SizeOfObjects();
|
2010-11-15 10:38:24 +00:00
|
|
|
intptr_t size_of_objects_2 = 0;
|
|
|
|
for (HeapObject* obj = iterator.next();
|
|
|
|
obj != NULL;
|
|
|
|
obj = iterator.next()) {
|
2012-09-14 11:16:56 +00:00
|
|
|
if (!obj->IsFreeSpace()) {
|
|
|
|
size_of_objects_2 += obj->Size();
|
|
|
|
}
|
2010-11-15 10:38:24 +00:00
|
|
|
}
|
2012-01-31 13:33:44 +00:00
|
|
|
// Delta must be within 5% of the larger result.
|
|
|
|
// TODO(gc): Tighten this up by distinguishing between byte
|
|
|
|
// arrays that are real and those that merely mark free space
|
|
|
|
// on the heap.
|
2010-11-15 10:38:24 +00:00
|
|
|
if (size_of_objects_1 > size_of_objects_2) {
|
|
|
|
intptr_t delta = size_of_objects_1 - size_of_objects_2;
|
2016-04-12 16:13:08 +00:00
|
|
|
PrintF("Heap::SizeOfObjects: %" V8PRIdPTR
|
|
|
|
", "
|
|
|
|
"Iterator: %" V8PRIdPTR
|
|
|
|
", "
|
|
|
|
"delta: %" V8PRIdPTR "\n",
|
2010-11-15 10:38:24 +00:00
|
|
|
size_of_objects_1, size_of_objects_2, delta);
|
2012-01-31 13:33:44 +00:00
|
|
|
CHECK_GT(size_of_objects_1 / 20, delta);
|
2010-11-15 10:38:24 +00:00
|
|
|
} else {
|
|
|
|
intptr_t delta = size_of_objects_2 - size_of_objects_1;
|
2016-04-12 16:13:08 +00:00
|
|
|
PrintF("Heap::SizeOfObjects: %" V8PRIdPTR
|
|
|
|
", "
|
|
|
|
"Iterator: %" V8PRIdPTR
|
|
|
|
", "
|
|
|
|
"delta: %" V8PRIdPTR "\n",
|
2010-11-15 10:38:24 +00:00
|
|
|
size_of_objects_1, size_of_objects_2, delta);
|
2011-09-19 18:36:47 +00:00
|
|
|
CHECK_GT(size_of_objects_2 / 20, delta);
|
2010-11-15 10:38:24 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-21 10:49:40 +00:00
|
|
|
|
2011-09-20 13:37:40 +00:00
|
|
|
TEST(GrowAndShrinkNewSpace) {
|
2016-09-07 09:21:12 +00:00
|
|
|
// Avoid shrinking new space in GC epilogue. This can happen if allocation
|
|
|
|
// throughput samples have been taken while executing the benchmark.
|
|
|
|
FLAG_predictable = true;
|
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:46:15 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
NewSpace* new_space = heap->new_space();
|
2011-09-20 13:37:40 +00:00
|
|
|
|
2016-04-05 13:11:47 +00:00
|
|
|
if (heap->MaxSemiSpaceSize() == heap->InitialSemiSpaceSize()) {
|
2012-04-26 14:45:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-01 08:20:31 +00:00
|
|
|
// Make sure we're in a consistent state to start out.
|
2017-04-27 18:48:47 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2017-02-01 08:20:31 +00:00
|
|
|
|
2011-09-20 13:37:40 +00:00
|
|
|
// Explicitly growing should double the space capacity.
|
2016-11-14 16:46:42 +00:00
|
|
|
size_t old_capacity, new_capacity;
|
2014-09-18 12:52:12 +00:00
|
|
|
old_capacity = new_space->TotalCapacity();
|
2011-09-20 13:37:40 +00:00
|
|
|
new_space->Grow();
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(2 * old_capacity, new_capacity);
|
2011-09-20 13:37:40 +00:00
|
|
|
|
2014-09-18 12:52:12 +00:00
|
|
|
old_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope temporary_scope(CcTest::isolate());
|
|
|
|
heap::SimulateFullSpace(new_space);
|
|
|
|
}
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(old_capacity, new_capacity);
|
2011-09-20 13:37:40 +00:00
|
|
|
|
|
|
|
// Explicitly shrinking should not affect space capacity.
|
2014-09-18 12:52:12 +00:00
|
|
|
old_capacity = new_space->TotalCapacity();
|
2011-09-20 13:37:40 +00:00
|
|
|
new_space->Shrink();
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(old_capacity, new_capacity);
|
2011-09-20 13:37:40 +00:00
|
|
|
|
2011-09-22 14:50:20 +00:00
|
|
|
// Let the scavenger empty the new space.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2011-09-22 14:50:20 +00:00
|
|
|
CHECK_LE(new_space->Size(), old_capacity);
|
2011-09-20 13:37:40 +00:00
|
|
|
|
|
|
|
// Explicitly shrinking should halve the space capacity.
|
2014-09-18 12:52:12 +00:00
|
|
|
old_capacity = new_space->TotalCapacity();
|
2011-09-20 13:37:40 +00:00
|
|
|
new_space->Shrink();
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(old_capacity, 2 * new_capacity);
|
2011-09-20 13:37:40 +00:00
|
|
|
|
|
|
|
// Consecutive shrinking should not affect space capacity.
|
2014-09-18 12:52:12 +00:00
|
|
|
old_capacity = new_space->TotalCapacity();
|
2011-09-20 13:37:40 +00:00
|
|
|
new_space->Shrink();
|
|
|
|
new_space->Shrink();
|
|
|
|
new_space->Shrink();
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(old_capacity, new_capacity);
|
2011-09-20 13:37:40 +00:00
|
|
|
}
|
2011-11-08 12:42:02 +00:00
|
|
|
|
|
|
|
TEST(CollectingAllAvailableGarbageShrinksNewSpace) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:46:15 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
2016-04-05 13:11:47 +00:00
|
|
|
if (heap->MaxSemiSpaceSize() == heap->InitialSemiSpaceSize()) {
|
2012-04-26 14:45:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2013-09-19 09:46:15 +00:00
|
|
|
NewSpace* new_space = heap->new_space();
|
2016-11-14 16:46:42 +00:00
|
|
|
size_t old_capacity, new_capacity;
|
2014-09-18 12:52:12 +00:00
|
|
|
old_capacity = new_space->TotalCapacity();
|
2011-11-08 12:42:02 +00:00
|
|
|
new_space->Grow();
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(2 * old_capacity, new_capacity);
|
|
|
|
{
|
|
|
|
v8::HandleScope temporary_scope(CcTest::isolate());
|
|
|
|
heap::SimulateFullSpace(new_space);
|
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-09-18 12:52:12 +00:00
|
|
|
new_capacity = new_space->TotalCapacity();
|
2016-09-08 11:20:42 +00:00
|
|
|
CHECK_EQ(old_capacity, new_capacity);
|
2011-11-08 12:42:02 +00:00
|
|
|
}
|
2011-11-30 11:13:36 +00:00
|
|
|
|
2011-12-14 14:01:54 +00:00
|
|
|
static int NumberOfGlobalObjects() {
|
|
|
|
int count = 0;
|
2013-09-19 09:46:15 +00:00
|
|
|
HeapIterator iterator(CcTest::heap());
|
2011-12-14 14:01:54 +00:00
|
|
|
for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
|
2015-11-02 14:57:59 +00:00
|
|
|
if (obj->IsJSGlobalObject()) count++;
|
2011-12-14 14:01:54 +00:00
|
|
|
}
|
2015-12-02 12:35:12 +00:00
|
|
|
return count;
|
2011-12-14 14:01:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that we don't embed maps from foreign contexts into
|
|
|
|
// optimized code.
|
2012-08-17 09:03:08 +00:00
|
|
|
TEST(LeakNativeContextViaMap) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2013-05-08 07:45:16 +00:00
|
|
|
v8::HandleScope outer_scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Persistent<v8::Context> ctx1p;
|
|
|
|
v8::Persistent<v8::Context> ctx2p;
|
2013-05-08 07:45:16 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
ctx1p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
ctx2p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
v8::Local<v8::Context>::New(isolate, ctx1p)->Enter();
|
2013-05-08 07:45:16 +00:00
|
|
|
}
|
2011-12-14 14:01:54 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(2, NumberOfGlobalObjects());
|
2011-12-14 14:01:54 +00:00
|
|
|
|
|
|
|
{
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::HandleScope inner_scope(isolate);
|
2011-12-14 14:01:54 +00:00
|
|
|
CompileRun("var v = {x: 42}");
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p);
|
|
|
|
v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> v =
|
|
|
|
ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked();
|
2011-12-14 14:01:54 +00:00
|
|
|
ctx2->Enter();
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(ctx2->Global()->Set(ctx2, v8_str("o"), v).FromJust());
|
2011-12-14 14:01:54 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(
|
|
|
|
"function f() { return o.x; }"
|
2011-12-19 12:39:52 +00:00
|
|
|
"for (var i = 0; i < 10; ++i) f();"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
2011-12-14 14:01:54 +00:00
|
|
|
"f();");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(42, res->Int32Value(ctx2).FromJust());
|
|
|
|
CHECK(ctx2->Global()
|
|
|
|
->Set(ctx2, v8_str("o"), v8::Int32::New(isolate, 0))
|
|
|
|
.FromJust());
|
2011-12-14 14:01:54 +00:00
|
|
|
ctx2->Exit();
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Local<v8::Context>::New(isolate, ctx1)->Exit();
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx1p.Reset();
|
2014-07-24 08:28:02 +00:00
|
|
|
isolate->ContextDisposedNotification();
|
2011-12-14 14:01:54 +00:00
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(1, NumberOfGlobalObjects());
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx2p.Reset();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2011-12-14 14:01:54 +00:00
|
|
|
CHECK_EQ(0, NumberOfGlobalObjects());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that we don't embed functions from foreign contexts into
|
|
|
|
// optimized code.
|
2012-08-17 09:03:08 +00:00
|
|
|
TEST(LeakNativeContextViaFunction) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2013-05-08 07:45:16 +00:00
|
|
|
v8::HandleScope outer_scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Persistent<v8::Context> ctx1p;
|
|
|
|
v8::Persistent<v8::Context> ctx2p;
|
2013-05-08 07:45:16 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
ctx1p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
ctx2p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
v8::Local<v8::Context>::New(isolate, ctx1p)->Enter();
|
2013-05-08 07:45:16 +00:00
|
|
|
}
|
2011-12-14 14:01:54 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(2, NumberOfGlobalObjects());
|
2011-12-14 14:01:54 +00:00
|
|
|
|
|
|
|
{
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::HandleScope inner_scope(isolate);
|
2011-12-14 14:01:54 +00:00
|
|
|
CompileRun("var v = function() { return 42; }");
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p);
|
|
|
|
v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> v =
|
|
|
|
ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked();
|
2011-12-14 14:01:54 +00:00
|
|
|
ctx2->Enter();
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(ctx2->Global()->Set(ctx2, v8_str("o"), v).FromJust());
|
2011-12-14 14:01:54 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(
|
|
|
|
"function f(x) { return x(); }"
|
2011-12-19 12:39:52 +00:00
|
|
|
"for (var i = 0; i < 10; ++i) f(o);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
2011-12-14 14:01:54 +00:00
|
|
|
"f(o);");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(42, res->Int32Value(ctx2).FromJust());
|
|
|
|
CHECK(ctx2->Global()
|
|
|
|
->Set(ctx2, v8_str("o"), v8::Int32::New(isolate, 0))
|
|
|
|
.FromJust());
|
2011-12-14 14:01:54 +00:00
|
|
|
ctx2->Exit();
|
|
|
|
ctx1->Exit();
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx1p.Reset();
|
2014-07-24 08:28:02 +00:00
|
|
|
isolate->ContextDisposedNotification();
|
2011-12-14 14:01:54 +00:00
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(1, NumberOfGlobalObjects());
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx2p.Reset();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2011-12-14 14:01:54 +00:00
|
|
|
CHECK_EQ(0, NumberOfGlobalObjects());
|
|
|
|
}
|
2011-12-19 12:39:52 +00:00
|
|
|
|
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
TEST(LeakNativeContextViaMapKeyed) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2013-05-08 07:45:16 +00:00
|
|
|
v8::HandleScope outer_scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Persistent<v8::Context> ctx1p;
|
|
|
|
v8::Persistent<v8::Context> ctx2p;
|
2013-05-08 07:45:16 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
ctx1p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
ctx2p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
v8::Local<v8::Context>::New(isolate, ctx1p)->Enter();
|
2013-05-08 07:45:16 +00:00
|
|
|
}
|
2011-12-19 12:39:52 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(2, NumberOfGlobalObjects());
|
2011-12-19 12:39:52 +00:00
|
|
|
|
|
|
|
{
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::HandleScope inner_scope(isolate);
|
2011-12-19 12:39:52 +00:00
|
|
|
CompileRun("var v = [42, 43]");
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p);
|
|
|
|
v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> v =
|
|
|
|
ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked();
|
2011-12-19 12:39:52 +00:00
|
|
|
ctx2->Enter();
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(ctx2->Global()->Set(ctx2, v8_str("o"), v).FromJust());
|
2011-12-19 12:39:52 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(
|
|
|
|
"function f() { return o[0]; }"
|
|
|
|
"for (var i = 0; i < 10; ++i) f();"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(42, res->Int32Value(ctx2).FromJust());
|
|
|
|
CHECK(ctx2->Global()
|
|
|
|
->Set(ctx2, v8_str("o"), v8::Int32::New(isolate, 0))
|
|
|
|
.FromJust());
|
2011-12-19 12:39:52 +00:00
|
|
|
ctx2->Exit();
|
|
|
|
ctx1->Exit();
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx1p.Reset();
|
2014-07-24 08:28:02 +00:00
|
|
|
isolate->ContextDisposedNotification();
|
2011-12-19 12:39:52 +00:00
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(1, NumberOfGlobalObjects());
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx2p.Reset();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2011-12-19 12:39:52 +00:00
|
|
|
CHECK_EQ(0, NumberOfGlobalObjects());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-17 09:03:08 +00:00
|
|
|
TEST(LeakNativeContextViaMapProto) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2013-05-08 07:45:16 +00:00
|
|
|
v8::HandleScope outer_scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Persistent<v8::Context> ctx1p;
|
|
|
|
v8::Persistent<v8::Context> ctx2p;
|
2013-05-08 07:45:16 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2013-05-28 11:54:52 +00:00
|
|
|
ctx1p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
ctx2p.Reset(isolate, v8::Context::New(isolate));
|
|
|
|
v8::Local<v8::Context>::New(isolate, ctx1p)->Enter();
|
2013-05-08 07:45:16 +00:00
|
|
|
}
|
2011-12-19 12:39:52 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(2, NumberOfGlobalObjects());
|
2011-12-19 12:39:52 +00:00
|
|
|
|
|
|
|
{
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::HandleScope inner_scope(isolate);
|
2011-12-19 12:39:52 +00:00
|
|
|
CompileRun("var v = { y: 42}");
|
2013-05-28 11:54:52 +00:00
|
|
|
v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p);
|
|
|
|
v8::Local<v8::Context> ctx2 = v8::Local<v8::Context>::New(isolate, ctx2p);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> v =
|
|
|
|
ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked();
|
2011-12-19 12:39:52 +00:00
|
|
|
ctx2->Enter();
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(ctx2->Global()->Set(ctx2, v8_str("o"), v).FromJust());
|
2011-12-19 12:39:52 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(
|
|
|
|
"function f() {"
|
|
|
|
" var p = {x: 42};"
|
|
|
|
" p.__proto__ = o;"
|
|
|
|
" return p.x;"
|
|
|
|
"}"
|
|
|
|
"for (var i = 0; i < 10; ++i) f();"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(42, res->Int32Value(ctx2).FromJust());
|
|
|
|
CHECK(ctx2->Global()
|
|
|
|
->Set(ctx2, v8_str("o"), v8::Int32::New(isolate, 0))
|
|
|
|
.FromJust());
|
2011-12-19 12:39:52 +00:00
|
|
|
ctx2->Exit();
|
|
|
|
ctx1->Exit();
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx1p.Reset();
|
2014-07-24 08:28:02 +00:00
|
|
|
isolate->ContextDisposedNotification();
|
2011-12-19 12:39:52 +00:00
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-11-27 16:59:28 +00:00
|
|
|
CHECK_EQ(1, NumberOfGlobalObjects());
|
2013-11-22 12:43:17 +00:00
|
|
|
ctx2p.Reset();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2011-12-19 12:39:52 +00:00
|
|
|
CHECK_EQ(0, NumberOfGlobalObjects());
|
|
|
|
}
|
2012-01-11 09:39:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(InstanceOfStubWriteBarrier) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2012-10-12 11:41:14 +00:00
|
|
|
#ifdef VERIFY_HEAP
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_verify_heap = true;
|
2012-01-11 09:49:47 +00:00
|
|
|
#endif
|
2012-10-12 11:41:14 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer()) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_force_marking_deque_overflows) return;
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope outer_scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-01-11 09:39:37 +00:00
|
|
|
|
|
|
|
{
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-01-11 09:39:37 +00:00
|
|
|
CompileRun(
|
|
|
|
"function foo () { }"
|
|
|
|
"function mkbar () { return new (new Function(\"\")) (); }"
|
|
|
|
"function f (x) { return (x instanceof foo); }"
|
|
|
|
"function g () { f(mkbar()); }"
|
|
|
|
"f(new foo()); f(new foo());"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f(new foo()); g();");
|
|
|
|
}
|
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
2015-08-07 09:36:42 +00:00
|
|
|
marking->Stop();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::heap()->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2012-01-11 09:39:37 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
i::Handle<JSFunction> f = i::Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2012-01-11 09:39:37 +00:00
|
|
|
|
|
|
|
CHECK(f->IsOptimized());
|
|
|
|
|
2017-03-24 18:54:04 +00:00
|
|
|
while (
|
|
|
|
!ObjectMarking::IsBlack(f->code(), MarkingState::Internal(f->code())) &&
|
|
|
|
!marking->IsStopped()) {
|
2012-04-03 07:32:19 +00:00
|
|
|
// Discard any pending GC requests otherwise we will get GC when we enter
|
|
|
|
// code below.
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(MB, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2012-01-11 09:39:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
|
|
|
|
{
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Object> global = CcTest::global();
|
|
|
|
v8::Local<v8::Function> g = v8::Local<v8::Function>::Cast(
|
|
|
|
global->Get(ctx, v8_str("g")).ToLocalChecked());
|
|
|
|
g->Call(ctx, global, 0, nullptr).ToLocalChecked();
|
2012-01-11 09:39:37 +00:00
|
|
|
}
|
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
CcTest::heap()->incremental_marking()->set_should_hurry(true);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2012-01-11 09:39:37 +00:00
|
|
|
}
|
2012-01-19 13:38:37 +00:00
|
|
|
|
2012-04-03 17:22:05 +00:00
|
|
|
TEST(ResetSharedFunctionInfoCountersDuringIncrementalMarking) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2012-10-12 11:41:14 +00:00
|
|
|
#ifdef VERIFY_HEAP
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_verify_heap = true;
|
2012-04-03 17:22:05 +00:00
|
|
|
#endif
|
2012-10-12 11:41:14 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer()) return;
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope outer_scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-04-03 17:22:05 +00:00
|
|
|
|
|
|
|
{
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-04-03 17:22:05 +00:00
|
|
|
CompileRun(
|
|
|
|
"function f () {"
|
|
|
|
" var s = 0;"
|
|
|
|
" for (var i = 0; i < 100; i++) s += i;"
|
|
|
|
" return s;"
|
|
|
|
"}"
|
|
|
|
"f(); f();"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();");
|
|
|
|
}
|
2015-11-09 19:48:08 +00:00
|
|
|
i::Handle<JSFunction> f = i::Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2012-04-03 17:22:05 +00:00
|
|
|
CHECK(f->IsOptimized());
|
|
|
|
|
2016-04-15 11:24:50 +00:00
|
|
|
// Make sure incremental marking it not running.
|
|
|
|
CcTest::heap()->incremental_marking()->Stop();
|
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::heap()->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2015-05-07 14:41:53 +00:00
|
|
|
// The following calls will increment CcTest::heap()->global_ic_age().
|
2014-07-24 08:28:02 +00:00
|
|
|
CcTest::isolate()->ContextDisposedNotification();
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-04-15 11:24:50 +00:00
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK_EQ(CcTest::heap()->global_ic_age(), f->shared()->ic_age());
|
2012-04-03 17:22:05 +00:00
|
|
|
CHECK_EQ(0, f->shared()->opt_count());
|
2017-06-09 12:32:27 +00:00
|
|
|
CHECK_EQ(0, f->shared()->profiler_ticks());
|
2012-04-03 17:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(ResetSharedFunctionInfoCountersDuringMarkSweep) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2012-10-12 11:41:14 +00:00
|
|
|
#ifdef VERIFY_HEAP
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_verify_heap = true;
|
2012-04-03 17:22:05 +00:00
|
|
|
#endif
|
2012-10-12 11:41:14 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer()) return;
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope outer_scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-04-03 17:22:05 +00:00
|
|
|
|
|
|
|
{
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-04-03 17:22:05 +00:00
|
|
|
CompileRun(
|
|
|
|
"function f () {"
|
|
|
|
" var s = 0;"
|
|
|
|
" for (var i = 0; i < 100; i++) s += i;"
|
|
|
|
" return s;"
|
|
|
|
"}"
|
|
|
|
"f(); f();"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();");
|
|
|
|
}
|
2015-11-09 19:48:08 +00:00
|
|
|
i::Handle<JSFunction> f = i::Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2012-04-03 17:22:05 +00:00
|
|
|
CHECK(f->IsOptimized());
|
|
|
|
|
2016-04-15 11:24:50 +00:00
|
|
|
// Make sure incremental marking it not running.
|
2015-08-07 09:36:42 +00:00
|
|
|
CcTest::heap()->incremental_marking()->Stop();
|
2012-04-03 17:22:05 +00:00
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
// The following two calls will increment CcTest::heap()->global_ic_age().
|
2014-07-24 08:28:02 +00:00
|
|
|
CcTest::isolate()->ContextDisposedNotification();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-04-03 17:22:05 +00:00
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK_EQ(CcTest::heap()->global_ic_age(), f->shared()->ic_age());
|
2012-04-03 17:22:05 +00:00
|
|
|
CHECK_EQ(0, f->shared()->opt_count());
|
2017-06-09 12:32:27 +00:00
|
|
|
CHECK_EQ(0, f->shared()->profiler_ticks());
|
2012-04-03 17:22:05 +00:00
|
|
|
}
|
2012-04-05 15:36:31 +00:00
|
|
|
|
|
|
|
|
2015-08-21 07:09:08 +00:00
|
|
|
HEAP_TEST(GCFlags) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2015-08-21 07:09:08 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
|
|
|
|
heap->set_current_gc_flags(Heap::kNoGCFlags);
|
2015-08-25 10:59:40 +00:00
|
|
|
CHECK_EQ(Heap::kNoGCFlags, heap->current_gc_flags_);
|
2015-08-21 07:09:08 +00:00
|
|
|
|
|
|
|
// Set the flags to check whether we appropriately resets them after the GC.
|
|
|
|
heap->set_current_gc_flags(Heap::kAbortIncrementalMarkingMask);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllGarbage(Heap::kReduceMemoryFootprintMask);
|
2015-08-25 10:59:40 +00:00
|
|
|
CHECK_EQ(Heap::kNoGCFlags, heap->current_gc_flags_);
|
2015-08-21 07:09:08 +00:00
|
|
|
|
|
|
|
MarkCompactCollector* collector = heap->mark_compact_collector();
|
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
|
|
|
}
|
|
|
|
|
|
|
|
IncrementalMarking* marking = heap->incremental_marking();
|
|
|
|
marking->Stop();
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(Heap::kReduceMemoryFootprintMask,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2015-08-25 10:59:40 +00:00
|
|
|
CHECK_NE(0, heap->current_gc_flags_ & Heap::kReduceMemoryFootprintMask);
|
2015-08-21 07:09:08 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-08-21 10:05:18 +00:00
|
|
|
// NewSpace scavenges should not overwrite the flags.
|
2015-08-25 10:59:40 +00:00
|
|
|
CHECK_NE(0, heap->current_gc_flags_ & Heap::kReduceMemoryFootprintMask);
|
2015-08-21 07:09:08 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
|
2015-08-25 10:59:40 +00:00
|
|
|
CHECK_EQ(Heap::kNoGCFlags, heap->current_gc_flags_);
|
2015-08-21 07:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-13 16:27:55 +00:00
|
|
|
TEST(IdleNotificationFinishMarking) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-10-13 16:27:55 +00:00
|
|
|
CcTest::InitializeVM();
|
2016-05-20 13:30:22 +00:00
|
|
|
const int initial_gc_count = CcTest::heap()->gc_count();
|
|
|
|
heap::SimulateFullSpace(CcTest::heap()->old_space());
|
2014-10-13 16:27:55 +00:00
|
|
|
IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
2015-08-07 09:36:42 +00:00
|
|
|
marking->Stop();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::heap()->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2014-10-13 16:27:55 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_EQ(CcTest::heap()->gc_count(), initial_gc_count);
|
2014-10-13 16:27:55 +00:00
|
|
|
|
|
|
|
// TODO(hpayer): We cannot write proper unit test right now for heap.
|
|
|
|
// The ideal test would call kMaxIdleMarkingDelayCounter to test the
|
|
|
|
// marking delay counter.
|
|
|
|
|
|
|
|
// Perform a huge incremental marking step but don't complete marking.
|
|
|
|
do {
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(1 * MB, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::DO_NOT_FORCE_COMPLETION, StepOrigin::kV8);
|
2014-10-13 16:27:55 +00:00
|
|
|
CHECK(!marking->IsIdleMarkingDelayCounterLimitReached());
|
2016-09-06 15:28:54 +00:00
|
|
|
} while (
|
2017-06-23 12:32:55 +00:00
|
|
|
!CcTest::heap()->mark_compact_collector()->marking_worklist()->IsEmpty());
|
2014-10-13 16:27:55 +00:00
|
|
|
|
|
|
|
// The next invocations of incremental marking are not going to complete
|
|
|
|
// marking
|
|
|
|
// since the completion threshold is not reached
|
|
|
|
for (size_t i = 0; i < IncrementalMarking::kMaxIdleMarkingDelayCounter - 2;
|
|
|
|
i++) {
|
|
|
|
marking->Step(1 * MB, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::DO_NOT_FORCE_COMPLETION, StepOrigin::kV8);
|
2014-10-13 16:27:55 +00:00
|
|
|
CHECK(!marking->IsIdleMarkingDelayCounterLimitReached());
|
|
|
|
}
|
|
|
|
|
2015-03-18 10:01:23 +00:00
|
|
|
marking->SetWeakClosureWasOverApproximatedForTesting(true);
|
|
|
|
|
2014-10-13 16:27:55 +00:00
|
|
|
// The next idle notification has to finish incremental marking.
|
2015-03-24 08:29:52 +00:00
|
|
|
const double kLongIdleTime = 1000.0;
|
|
|
|
CcTest::isolate()->IdleNotificationDeadline(
|
|
|
|
(v8::base::TimeTicks::HighResolutionNow().ToInternalValue() /
|
|
|
|
static_cast<double>(v8::base::Time::kMicrosecondsPerSecond)) +
|
|
|
|
kLongIdleTime);
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_EQ(CcTest::heap()->gc_count(), initial_gc_count + 1);
|
2014-10-13 16:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-05 15:36:31 +00:00
|
|
|
// Test that HAllocateObject will always return an object in new-space.
|
|
|
|
TEST(OptimizedAllocationAlwaysInNewSpace) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(CcTest::heap()->new_space());
|
2014-03-19 11:31:43 +00:00
|
|
|
AlwaysAllocateScope always_allocate(CcTest::i_isolate());
|
2012-04-05 15:36:31 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(
|
|
|
|
"function c(x) {"
|
|
|
|
" this.x = x;"
|
|
|
|
" for (var i = 0; i < 32; i++) {"
|
|
|
|
" this['x' + i] = x;"
|
|
|
|
" }"
|
|
|
|
"}"
|
|
|
|
"function f(x) { return new c(x); };"
|
|
|
|
"f(1); f(2); f(3);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f(4);");
|
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(4, res.As<v8::Object>()
|
|
|
|
->GetRealNamedProperty(ctx, v8_str("x"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSReceiver> o =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res));
|
2013-03-07 14:00:53 +00:00
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
CHECK(CcTest::heap()->InNewSpace(*o));
|
2013-03-07 14:00:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-27 07:42:23 +00:00
|
|
|
TEST(OptimizedPretenuringAllocationFolding) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-08-27 07:42:23 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-08-27 07:42:23 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array();"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = [[{}], [1.1]];"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements-1]"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2013-08-27 07:42:23 +00:00
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-08-27 07:42:23 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> int_array =
|
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("0")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> int_array_handle = i::Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(int_array)));
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> double_array =
|
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("1")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> double_array_handle = i::Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(double_array)));
|
2015-11-09 19:48:08 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSReceiver> o =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res));
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*int_array_handle));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(int_array_handle->elements()));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*double_array_handle));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(double_array_handle->elements()));
|
2013-08-27 07:42:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-25 07:47:53 +00:00
|
|
|
TEST(OptimizedPretenuringObjectArrayLiterals) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
2017-06-16 10:07:41 +00:00
|
|
|
FLAG_stress_incremental_marking) {
|
2017-05-29 11:06:13 +00:00
|
|
|
return;
|
2017-06-16 10:07:41 +00:00
|
|
|
}
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2013-03-07 14:00:53 +00:00
|
|
|
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = [{}, {}, {}];"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-03-07 14:00:53 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2013-03-07 14:00:53 +00:00
|
|
|
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(o->elements()));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
2013-03-07 14:00:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-25 07:47:53 +00:00
|
|
|
TEST(OptimizedPretenuringMixedInObjectProperties) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-04-10 13:52:08 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-04-10 13:52:08 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = {a: {c: 2.2, d: {}}, b: 1.1};"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-04-10 13:52:08 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2013-04-10 13:52:08 +00:00
|
|
|
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
2014-06-10 14:01:08 +00:00
|
|
|
FieldIndex idx1 = FieldIndex::ForPropertyIndex(o->map(), 0);
|
|
|
|
FieldIndex idx2 = FieldIndex::ForPropertyIndex(o->map(), 1);
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(o->RawFastPropertyAt(idx1)));
|
2014-11-11 10:24:52 +00:00
|
|
|
if (!o->IsUnboxedDoubleField(idx2)) {
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(o->RawFastPropertyAt(idx2)));
|
2014-11-11 10:24:52 +00:00
|
|
|
} else {
|
|
|
|
CHECK_EQ(1.1, o->RawFastDoublePropertyAt(idx2));
|
|
|
|
}
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2014-06-10 14:01:08 +00:00
|
|
|
JSObject* inner_object =
|
|
|
|
reinterpret_cast<JSObject*>(o->RawFastPropertyAt(idx1));
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(inner_object));
|
2014-11-11 10:24:52 +00:00
|
|
|
if (!inner_object->IsUnboxedDoubleField(idx1)) {
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(inner_object->RawFastPropertyAt(idx1)));
|
2014-11-11 10:24:52 +00:00
|
|
|
} else {
|
|
|
|
CHECK_EQ(2.2, inner_object->RawFastDoublePropertyAt(idx1));
|
|
|
|
}
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(inner_object->RawFastPropertyAt(idx2)));
|
2013-06-25 07:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(OptimizedPretenuringDoubleArrayProperties) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-06-25 07:47:53 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-06-25 07:47:53 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = {a: 1.1, b: 2.2};"
|
|
|
|
" }"
|
|
|
|
" return elements[i - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(o->properties()));
|
2013-06-25 07:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(OptimizedPretenuringdoubleArrayLiterals) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-06-25 07:47:53 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-06-25 07:47:53 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = [1.1, 2.2, 3.3];"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(o->elements()));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
2013-06-25 07:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(OptimizedPretenuringNestedMixedArrayLiterals) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-06-25 07:47:53 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-06-25 07:47:53 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = [[{}, {}, {}], [1.1, 2.2, 3.3]];"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> int_array =
|
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("0")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> int_array_handle = i::Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(int_array)));
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> double_array =
|
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("1")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> double_array_handle = i::Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(double_array)));
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*int_array_handle));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(int_array_handle->elements()));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*double_array_handle));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(double_array_handle->elements()));
|
2013-06-25 07:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(OptimizedPretenuringNestedObjectLiterals) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-06-25 07:47:53 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-06-25 07:47:53 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = [[{}, {}, {}],[{}, {}, {}]];"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> int_array_1 =
|
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("0")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSObject> int_array_handle_1 = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(int_array_1)));
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> int_array_2 =
|
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("1")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSObject> int_array_handle_2 = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(int_array_2)));
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*int_array_handle_1));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(int_array_handle_1->elements()));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*int_array_handle_2));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(int_array_handle_2->elements()));
|
2013-06-25 07:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(OptimizedPretenuringNestedDoubleLiterals) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
2013-06-25 07:47:53 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-06-25 07:47:53 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2014-06-03 07:55:38 +00:00
|
|
|
// Grow new space unitl maximum capacity reached.
|
|
|
|
while (!CcTest::heap()->new_space()->IsAtMaximumCapacity()) {
|
|
|
|
CcTest::heap()->new_space()->Grow();
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
i::ScopedVector<char> source(1024);
|
2017-06-16 10:07:41 +00:00
|
|
|
i::SNPrintF(source,
|
|
|
|
"var number_elements = %d;"
|
|
|
|
"var elements = new Array(number_elements);"
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < number_elements; i++) {"
|
|
|
|
" elements[i] = [[1.1, 1.2, 1.3],[2.1, 2.2, 2.3]];"
|
|
|
|
" }"
|
|
|
|
" return elements[number_elements - 1];"
|
|
|
|
"};"
|
|
|
|
"f(); gc();"
|
|
|
|
"f(); f();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();",
|
|
|
|
kPretenureCreationCount);
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> res = CompileRun(source.start());
|
2013-06-25 07:47:53 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> double_array_1 =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("0")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> double_array_handle_1 = i::Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(double_array_1)));
|
2013-06-25 07:47:53 +00:00
|
|
|
v8::Local<v8::Value> double_array_2 =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Object::Cast(*res)->Get(ctx, v8_str("1")).ToLocalChecked();
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> double_array_handle_2 = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(double_array_2)));
|
2013-06-25 07:47:53 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2015-04-07 11:31:57 +00:00
|
|
|
CHECK(CcTest::heap()->InOldSpace(*o));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*double_array_handle_1));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(double_array_handle_1->elements()));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(*double_array_handle_2));
|
|
|
|
CHECK(CcTest::heap()->InOldSpace(double_array_handle_2->elements()));
|
2013-04-10 13:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-27 07:48:36 +00:00
|
|
|
// Test regular array literals allocation.
|
|
|
|
TEST(OptimizedAllocationArrayLiterals) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-07-15 15:12:16 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!CcTest::i_isolate()->use_optimizer() || FLAG_always_opt) return;
|
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-07-15 15:12:16 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2013-07-15 15:12:16 +00:00
|
|
|
v8::Local<v8::Value> res = CompileRun(
|
|
|
|
"function f() {"
|
2014-05-27 07:48:36 +00:00
|
|
|
" var numbers = new Array(1, 2, 3);"
|
|
|
|
" numbers[0] = 3.14;"
|
|
|
|
" return numbers;"
|
2013-07-15 15:12:16 +00:00
|
|
|
"};"
|
|
|
|
"f(); f(); f();"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f();");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(static_cast<int>(3.14), v8::Object::Cast(*res)
|
|
|
|
->Get(ctx, v8_str("0"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
2013-07-15 15:12:16 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSObject> o = Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(res)));
|
2014-05-27 07:48:36 +00:00
|
|
|
|
|
|
|
CHECK(CcTest::heap()->InNewSpace(o->elements()));
|
2013-07-15 15:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-16 10:07:50 +00:00
|
|
|
static int CountMapTransitions(Map* map) {
|
2015-03-06 14:08:33 +00:00
|
|
|
return TransitionArray::NumberOfTransitions(map->raw_transitions());
|
2012-05-16 10:07:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that map transitions are cleared and maps are collected with
|
|
|
|
// incremental marking as well.
|
|
|
|
TEST(Regress1465) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_trace_incremental_marking = true;
|
|
|
|
FLAG_retain_maps_for_n_gc = 0;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-08-02 14:20:38 +00:00
|
|
|
static const int transitions_count = 256;
|
2012-05-16 10:07:50 +00:00
|
|
|
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("function F() {}");
|
2012-08-02 14:20:38 +00:00
|
|
|
{
|
2014-03-19 11:31:43 +00:00
|
|
|
AlwaysAllocateScope always_allocate(CcTest::i_isolate());
|
2012-08-02 14:20:38 +00:00
|
|
|
for (int i = 0; i < transitions_count; i++) {
|
|
|
|
EmbeddedVector<char, 64> buffer;
|
2014-06-13 16:43:27 +00:00
|
|
|
SNPrintF(buffer, "var o = new F; o.prop%d = %d;", i, i);
|
2012-08-02 14:20:38 +00:00
|
|
|
CompileRun(buffer.start());
|
|
|
|
}
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("var root = new F;");
|
2012-05-16 10:07:50 +00:00
|
|
|
}
|
2012-08-02 14:20:38 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<JSReceiver> root =
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("root")).ToLocalChecked()));
|
2012-05-16 10:07:50 +00:00
|
|
|
|
|
|
|
// Count number of live transitions before marking.
|
|
|
|
int transitions_before = CountMapTransitions(root->map());
|
|
|
|
CompileRun("%DebugPrint(root);");
|
2012-08-02 14:20:38 +00:00
|
|
|
CHECK_EQ(transitions_count, transitions_before);
|
2012-05-16 10:07:50 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-05-16 10:07:50 +00:00
|
|
|
|
|
|
|
// Count number of live transitions after marking. Note that one transition
|
|
|
|
// is left, because 'o' still holds an instance of one transition target.
|
|
|
|
int transitions_after = CountMapTransitions(root->map());
|
|
|
|
CompileRun("%DebugPrint(root);");
|
|
|
|
CHECK_EQ(1, transitions_after);
|
|
|
|
}
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
|
2014-04-14 08:58:00 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static void AddTransitions(int transitions_count) {
|
|
|
|
AlwaysAllocateScope always_allocate(CcTest::i_isolate());
|
|
|
|
for (int i = 0; i < transitions_count; i++) {
|
|
|
|
EmbeddedVector<char, 64> buffer;
|
2014-06-13 16:43:27 +00:00
|
|
|
SNPrintF(buffer, "var o = new F; o.prop%d = %d;", i, i);
|
2014-04-14 08:58:00 +00:00
|
|
|
CompileRun(buffer.start());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
static i::Handle<JSObject> GetByName(const char* name) {
|
2015-11-16 16:48:43 +00:00
|
|
|
return i::Handle<JSObject>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(
|
|
|
|
CcTest::global()
|
|
|
|
->Get(CcTest::isolate()->GetCurrentContext(), v8_str(name))
|
|
|
|
.ToLocalChecked())));
|
2014-04-14 08:58:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void AddPropertyTo(
|
|
|
|
int gc_count, Handle<JSObject> object, const char* property_name) {
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Handle<String> prop_name = factory->InternalizeUtf8String(property_name);
|
|
|
|
Handle<Smi> twenty_three(Smi::FromInt(23), isolate);
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_gc_interval = gc_count;
|
|
|
|
FLAG_gc_global = true;
|
|
|
|
FLAG_retain_maps_for_n_gc = 0;
|
2014-04-14 08:58:00 +00:00
|
|
|
CcTest::heap()->set_allocation_timeout(gc_count);
|
2014-07-14 14:52:24 +00:00
|
|
|
JSReceiver::SetProperty(object, prop_name, twenty_three, SLOPPY).Check();
|
2014-04-14 08:58:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(TransitionArrayShrinksDuringAllocToZero) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-04-14 08:58:00 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
static const int transitions_count = 10;
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("function F() { }");
|
2014-04-14 08:58:00 +00:00
|
|
|
AddTransitions(transitions_count);
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("var root = new F;");
|
2014-04-14 08:58:00 +00:00
|
|
|
Handle<JSObject> root = GetByName("root");
|
|
|
|
|
|
|
|
// Count number of live transitions before marking.
|
|
|
|
int transitions_before = CountMapTransitions(root->map());
|
|
|
|
CHECK_EQ(transitions_count, transitions_before);
|
|
|
|
|
|
|
|
// Get rid of o
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("o = new F;"
|
|
|
|
"root = new F");
|
2014-04-14 08:58:00 +00:00
|
|
|
root = GetByName("root");
|
|
|
|
AddPropertyTo(2, root, "funny");
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2014-04-14 08:58:00 +00:00
|
|
|
|
|
|
|
// Count number of live transitions after marking. Note that one transition
|
|
|
|
// is left, because 'o' still holds an instance of one transition target.
|
|
|
|
int transitions_after = CountMapTransitions(
|
|
|
|
Map::cast(root->map()->GetBackPointer()));
|
|
|
|
CHECK_EQ(1, transitions_after);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(TransitionArrayShrinksDuringAllocToOne) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-04-14 08:58:00 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
static const int transitions_count = 10;
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("function F() {}");
|
2014-04-14 08:58:00 +00:00
|
|
|
AddTransitions(transitions_count);
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("var root = new F;");
|
2014-04-14 08:58:00 +00:00
|
|
|
Handle<JSObject> root = GetByName("root");
|
|
|
|
|
|
|
|
// Count number of live transitions before marking.
|
|
|
|
int transitions_before = CountMapTransitions(root->map());
|
|
|
|
CHECK_EQ(transitions_count, transitions_before);
|
|
|
|
|
|
|
|
root = GetByName("root");
|
|
|
|
AddPropertyTo(2, root, "funny");
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2014-04-14 08:58:00 +00:00
|
|
|
|
|
|
|
// Count number of live transitions after marking. Note that one transition
|
|
|
|
// is left, because 'o' still holds an instance of one transition target.
|
|
|
|
int transitions_after = CountMapTransitions(
|
|
|
|
Map::cast(root->map()->GetBackPointer()));
|
|
|
|
CHECK_EQ(2, transitions_after);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(TransitionArrayShrinksDuringAllocToOnePropertyFound) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-04-14 08:58:00 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
static const int transitions_count = 10;
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("function F() {}");
|
2014-04-14 08:58:00 +00:00
|
|
|
AddTransitions(transitions_count);
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("var root = new F;");
|
2014-04-14 08:58:00 +00:00
|
|
|
Handle<JSObject> root = GetByName("root");
|
|
|
|
|
|
|
|
// Count number of live transitions before marking.
|
|
|
|
int transitions_before = CountMapTransitions(root->map());
|
|
|
|
CHECK_EQ(transitions_count, transitions_before);
|
|
|
|
|
|
|
|
root = GetByName("root");
|
|
|
|
AddPropertyTo(0, root, "prop9");
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2014-04-14 08:58:00 +00:00
|
|
|
|
|
|
|
// Count number of live transitions after marking. Note that one transition
|
|
|
|
// is left, because 'o' still holds an instance of one transition target.
|
|
|
|
int transitions_after = CountMapTransitions(
|
|
|
|
Map::cast(root->map()->GetBackPointer()));
|
|
|
|
CHECK_EQ(1, transitions_after);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(TransitionArraySimpleToFull) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-04-14 08:58:00 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
static const int transitions_count = 1;
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("function F() {}");
|
2014-04-14 08:58:00 +00:00
|
|
|
AddTransitions(transitions_count);
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("var root = new F;");
|
2014-04-14 08:58:00 +00:00
|
|
|
Handle<JSObject> root = GetByName("root");
|
|
|
|
|
|
|
|
// Count number of live transitions before marking.
|
|
|
|
int transitions_before = CountMapTransitions(root->map());
|
|
|
|
CHECK_EQ(transitions_count, transitions_before);
|
|
|
|
|
2014-04-16 10:45:57 +00:00
|
|
|
CompileRun("o = new F;"
|
|
|
|
"root = new F");
|
2014-04-14 08:58:00 +00:00
|
|
|
root = GetByName("root");
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK(TransitionArray::IsSimpleTransition(root->map()->raw_transitions()));
|
2014-04-14 08:58:00 +00:00
|
|
|
AddPropertyTo(2, root, "happy");
|
|
|
|
|
|
|
|
// Count number of live transitions after marking. Note that one transition
|
|
|
|
// is left, because 'o' still holds an instance of one transition target.
|
|
|
|
int transitions_after = CountMapTransitions(
|
|
|
|
Map::cast(root->map()->GetBackPointer()));
|
|
|
|
CHECK_EQ(1, transitions_after);
|
|
|
|
}
|
|
|
|
#endif // DEBUG
|
|
|
|
|
|
|
|
|
2012-05-29 16:39:26 +00:00
|
|
|
TEST(Regress2143a) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_incremental_marking = true;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// Prepare a map transition from the root object together with a yet
|
|
|
|
// untransitioned root object.
|
|
|
|
CompileRun("var root = new Object;"
|
|
|
|
"root.foo = 0;"
|
|
|
|
"root = new Object;");
|
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// Compile a StoreIC that performs the prepared map transition. This
|
|
|
|
// will restart incremental marking and should make sure the root is
|
|
|
|
// marked grey again.
|
|
|
|
CompileRun("function f(o) {"
|
|
|
|
" o.foo = 0;"
|
|
|
|
"}"
|
|
|
|
"f(new Object);"
|
|
|
|
"f(root);");
|
|
|
|
|
|
|
|
// This bug only triggers with aggressive IC clearing.
|
2013-09-19 09:46:15 +00:00
|
|
|
CcTest::heap()->AgeInlineCaches();
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// Explicitly request GC to perform final marking step and sweeping.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-05-29 16:39:26 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSReceiver> root = v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(
|
2015-11-09 19:48:08 +00:00
|
|
|
CcTest::global()
|
|
|
|
->Get(CcTest::isolate()->GetCurrentContext(), v8_str("root"))
|
|
|
|
.ToLocalChecked()));
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// The root object should be in a sane state.
|
|
|
|
CHECK(root->IsJSObject());
|
|
|
|
CHECK(root->map()->IsMap());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(Regress2143b) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_incremental_marking = true;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// Prepare a map transition from the root object together with a yet
|
|
|
|
// untransitioned root object.
|
|
|
|
CompileRun("var root = new Object;"
|
|
|
|
"root.foo = 0;"
|
|
|
|
"root = new Object;");
|
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// Compile an optimized LStoreNamedField that performs the prepared
|
|
|
|
// map transition. This will restart incremental marking and should
|
|
|
|
// make sure the root is marked grey again.
|
|
|
|
CompileRun("function f(o) {"
|
|
|
|
" o.foo = 0;"
|
|
|
|
"}"
|
|
|
|
"f(new Object);"
|
|
|
|
"f(new Object);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f(root);"
|
|
|
|
"%DeoptimizeFunction(f);");
|
|
|
|
|
|
|
|
// This bug only triggers with aggressive IC clearing.
|
2013-09-19 09:46:15 +00:00
|
|
|
CcTest::heap()->AgeInlineCaches();
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// Explicitly request GC to perform final marking step and sweeping.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-05-29 16:39:26 +00:00
|
|
|
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSReceiver> root = v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(
|
2015-11-09 19:48:08 +00:00
|
|
|
CcTest::global()
|
|
|
|
->Get(CcTest::isolate()->GetCurrentContext(), v8_str("root"))
|
|
|
|
.ToLocalChecked()));
|
2012-05-29 16:39:26 +00:00
|
|
|
|
|
|
|
// The root object should be in a sane state.
|
|
|
|
CHECK(root->IsJSObject());
|
|
|
|
CHECK(root->map()->IsMap());
|
|
|
|
}
|
2012-06-22 09:29:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(ReleaseOverReservedPages) {
|
2014-04-14 13:52:41 +00:00
|
|
|
if (FLAG_never_compact) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_trace_gc = true;
|
2012-07-31 14:59:32 +00:00
|
|
|
// The optimizer can allocate stuff, messing up the test.
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_opt = false;
|
|
|
|
FLAG_always_opt = false;
|
Reland of "[heap] Parallel newspace evacuation, semispace copy, and compaction \o/"
This reverts commit 85ba94f28ce4b5d64e4c148efb1fee85bdb6579b.
All parallelism can be turned off using --predictable, or --noparallel-compaction.
This patch completely parallelizes
- semispace copy: from space -> to space (within newspace)
- newspace evacuation: newspace -> oldspace
- oldspace compaction: oldspace -> oldspace
Previously newspace has been handled sequentially (semispace copy, newspace
evacuation) before compacting oldspace in parallel. However, on a high level
there are no dependencies between those two actions, hence we parallelize them
altogether. We base the number of evacuation tasks on the overall set of
to-be-processed pages (newspace + oldspace compaction pages).
Some low-level details:
- The hard cap on number of tasks has been lifted
- We cache store buffer entries locally before merging them back into the global
StoreBuffer in a finalization phase.
- We cache AllocationSite operations locally before merging them back into the
global pretenuring storage in a finalization phase.
- AllocationSite might be compacted while they would be needed for newspace
evacuation. To mitigate any problems we defer checking allocation sites for
newspace till merging locally buffered data.
CQ_EXTRA_TRYBOTS=tryserver.v8:v8_linux_arm64_gc_stress_dbg,v8_linux_gc_stress_dbg,v8_mac_gc_stress_dbg,v8_linux64_asan_rel,v8_linux64_tsan_rel,v8_mac64_asan_rel
BUG=chromium:524425
LOG=N
R=hpayer@chromium.org, ulan@chromium.org
Review URL: https://codereview.chromium.org/1640563004
Cr-Commit-Position: refs/heads/master@{#33552}
2016-01-27 13:23:54 +00:00
|
|
|
// Parallel compaction increases fragmentation, depending on how existing
|
|
|
|
// memory is distributed. Since this is non-deterministic because of
|
|
|
|
// concurrent sweeping, we disable it for this test.
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_parallel_compaction = false;
|
2017-05-29 14:43:05 +00:00
|
|
|
FLAG_concurrent_marking = false;
|
Reland of "[heap] Parallel newspace evacuation, semispace copy, and compaction \o/"
This reverts commit 85ba94f28ce4b5d64e4c148efb1fee85bdb6579b.
All parallelism can be turned off using --predictable, or --noparallel-compaction.
This patch completely parallelizes
- semispace copy: from space -> to space (within newspace)
- newspace evacuation: newspace -> oldspace
- oldspace compaction: oldspace -> oldspace
Previously newspace has been handled sequentially (semispace copy, newspace
evacuation) before compacting oldspace in parallel. However, on a high level
there are no dependencies between those two actions, hence we parallelize them
altogether. We base the number of evacuation tasks on the overall set of
to-be-processed pages (newspace + oldspace compaction pages).
Some low-level details:
- The hard cap on number of tasks has been lifted
- We cache store buffer entries locally before merging them back into the global
StoreBuffer in a finalization phase.
- We cache AllocationSite operations locally before merging them back into the
global pretenuring storage in a finalization phase.
- AllocationSite might be compacted while they would be needed for newspace
evacuation. To mitigate any problems we defer checking allocation sites for
newspace till merging locally buffered data.
CQ_EXTRA_TRYBOTS=tryserver.v8:v8_linux_arm64_gc_stress_dbg,v8_linux_gc_stress_dbg,v8_mac_gc_stress_dbg,v8_linux64_asan_rel,v8_linux64_tsan_rel,v8_mac64_asan_rel
BUG=chromium:524425
LOG=N
R=hpayer@chromium.org, ulan@chromium.org
Review URL: https://codereview.chromium.org/1640563004
Cr-Commit-Position: refs/heads/master@{#33552}
2016-01-27 13:23:54 +00:00
|
|
|
// Concurrent sweeping adds non determinism, depending on when memory is
|
|
|
|
// available for further reuse.
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_concurrent_sweeping = false;
|
2016-04-20 09:29:33 +00:00
|
|
|
// Fast evacuation of pages may result in a different page count in old space.
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_page_promotion = false;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2016-09-07 09:21:12 +00:00
|
|
|
// If there's snapshot available, we don't know whether 20 small arrays will
|
|
|
|
// fit on the initial pages.
|
|
|
|
if (!isolate->snapshot_available()) return;
|
2013-06-04 10:30:05 +00:00
|
|
|
Factory* factory = isolate->factory();
|
2013-09-19 09:46:15 +00:00
|
|
|
Heap* heap = isolate->heap();
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-06-22 09:29:49 +00:00
|
|
|
static const int number_of_test_pages = 20;
|
|
|
|
|
|
|
|
// Prepare many pages with low live-bytes count.
|
2015-04-07 11:31:57 +00:00
|
|
|
PagedSpace* old_space = heap->old_space();
|
2016-05-20 13:30:22 +00:00
|
|
|
const int initial_page_count = old_space->CountTotalPages();
|
|
|
|
const int overall_page_count = number_of_test_pages + initial_page_count;
|
2012-06-22 09:29:49 +00:00
|
|
|
for (int i = 0; i < number_of_test_pages; i++) {
|
2014-03-19 11:31:43 +00:00
|
|
|
AlwaysAllocateScope always_allocate(isolate);
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(old_space);
|
2013-06-04 10:30:05 +00:00
|
|
|
factory->NewFixedArray(1, TENURED);
|
2012-06-22 09:29:49 +00:00
|
|
|
}
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_EQ(overall_page_count, old_space->CountTotalPages());
|
2012-06-22 09:29:49 +00:00
|
|
|
|
|
|
|
// Triggering one GC will cause a lot of garbage to be discovered but
|
|
|
|
// even spread across all allocated pages.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_GE(overall_page_count, old_space->CountTotalPages());
|
2012-06-22 09:29:49 +00:00
|
|
|
|
|
|
|
// Triggering subsequent GCs should cause at least half of the pages
|
|
|
|
// to be released to the OS after at most two cycles.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_GE(overall_page_count, old_space->CountTotalPages());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_GE(overall_page_count, old_space->CountTotalPages() * 2);
|
2012-06-22 09:29:49 +00:00
|
|
|
|
2016-08-28 07:28:14 +00:00
|
|
|
// Triggering a last-resort GC should cause all pages to be released to the
|
|
|
|
// OS so that other processes can seize the memory. If we get a failure here
|
|
|
|
// where there are 2 pages left instead of 1, then we should increase the
|
|
|
|
// size of the first page a little in SizeOfFirstPage in spaces.cc. The
|
|
|
|
// first page should be small in order to reduce memory used when the VM
|
|
|
|
// boots, but if the 20 small arrays don't fit on the first page then that's
|
|
|
|
// an indication that it is too small.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2016-05-20 13:30:22 +00:00
|
|
|
CHECK_EQ(initial_page_count, old_space->CountTotalPages());
|
2012-06-22 09:29:49 +00:00
|
|
|
}
|
2012-07-18 13:39:53 +00:00
|
|
|
|
2015-05-11 10:57:55 +00:00
|
|
|
static int forced_gc_counter = 0;
|
|
|
|
|
|
|
|
void MockUseCounterCallback(v8::Isolate* isolate,
|
|
|
|
v8::Isolate::UseCounterFeature feature) {
|
2015-11-02 19:22:32 +00:00
|
|
|
isolate->GetCurrentContext();
|
2015-05-11 10:57:55 +00:00
|
|
|
if (feature == v8::Isolate::kForcedGC) {
|
|
|
|
forced_gc_counter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(CountForcedGC) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_expose_gc = true;
|
2015-05-11 10:57:55 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
|
|
|
isolate->SetUseCounterCallback(MockUseCounterCallback);
|
|
|
|
|
|
|
|
forced_gc_counter = 0;
|
|
|
|
const char* source = "gc();";
|
|
|
|
CompileRun(source);
|
|
|
|
CHECK_GT(forced_gc_counter, 0);
|
|
|
|
}
|
|
|
|
|
2012-07-18 13:39:53 +00:00
|
|
|
|
2012-07-27 09:54:56 +00:00
|
|
|
#ifdef OBJECT_PRINT
|
|
|
|
TEST(PrintSharedFunctionInfo) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-07-27 09:54:56 +00:00
|
|
|
const char* source = "f = function() { return 987654321; }\n"
|
|
|
|
"g = function() { return 123456789; }\n";
|
|
|
|
CompileRun(source);
|
2015-11-09 19:48:08 +00:00
|
|
|
i::Handle<JSFunction> g = i::Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("g")).ToLocalChecked())));
|
2012-07-27 09:54:56 +00:00
|
|
|
|
2014-07-07 09:57:29 +00:00
|
|
|
OFStream os(stdout);
|
|
|
|
g->shared()->Print(os);
|
2014-09-30 10:29:32 +00:00
|
|
|
os << std::endl;
|
2012-07-27 09:54:56 +00:00
|
|
|
}
|
|
|
|
#endif // OBJECT_PRINT
|
2012-07-30 13:09:09 +00:00
|
|
|
|
|
|
|
|
2015-02-04 09:46:05 +00:00
|
|
|
TEST(IncrementalMarkingPreservesMonomorphicCallIC) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt) return;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2012-08-01 11:24:14 +00:00
|
|
|
v8::Local<v8::Value> fun1, fun2;
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-08-01 11:24:14 +00:00
|
|
|
{
|
|
|
|
CompileRun("function fun() {};");
|
2015-11-17 07:14:46 +00:00
|
|
|
fun1 = CcTest::global()->Get(ctx, v8_str("fun")).ToLocalChecked();
|
2012-08-01 11:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
CompileRun("function fun() {};");
|
2015-11-17 07:14:46 +00:00
|
|
|
fun2 = CcTest::global()->Get(ctx, v8_str("fun")).ToLocalChecked();
|
2012-08-01 11:24:14 +00:00
|
|
|
}
|
|
|
|
|
2015-11-17 07:14:46 +00:00
|
|
|
// Prepare function f that contains type feedback for the two closures.
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(CcTest::global()->Set(ctx, v8_str("fun1"), fun1).FromJust());
|
|
|
|
CHECK(CcTest::global()->Set(ctx, v8_str("fun2"), fun2).FromJust());
|
2014-02-19 13:55:25 +00:00
|
|
|
CompileRun("function f(a, b) { a(); b(); } f(fun1, fun2);");
|
2014-02-10 21:38:17 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2012-08-01 11:24:14 +00:00
|
|
|
|
2017-02-07 14:05:02 +00:00
|
|
|
Handle<FeedbackVector> feedback_vector(f->feedback_vector());
|
2015-10-01 13:48:05 +00:00
|
|
|
FeedbackVectorHelper feedback_helper(feedback_vector);
|
2014-02-10 21:38:17 +00:00
|
|
|
|
2015-06-04 16:22:29 +00:00
|
|
|
int expected_slots = 2;
|
2015-10-01 13:48:05 +00:00
|
|
|
CHECK_EQ(expected_slots, feedback_helper.slot_count());
|
2015-06-04 16:22:29 +00:00
|
|
|
int slot1 = 0;
|
|
|
|
int slot2 = 1;
|
2015-10-01 13:48:05 +00:00
|
|
|
CHECK(feedback_vector->Get(feedback_helper.slot(slot1))->IsWeakCell());
|
|
|
|
CHECK(feedback_vector->Get(feedback_helper.slot(slot2))->IsWeakCell());
|
2012-08-01 11:24:14 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-08-01 11:24:14 +00:00
|
|
|
|
2015-10-01 13:48:05 +00:00
|
|
|
CHECK(!WeakCell::cast(feedback_vector->Get(feedback_helper.slot(slot1)))
|
2015-02-04 09:46:05 +00:00
|
|
|
->cleared());
|
2015-10-01 13:48:05 +00:00
|
|
|
CHECK(!WeakCell::cast(feedback_vector->Get(feedback_helper.slot(slot2)))
|
2015-02-04 09:46:05 +00:00
|
|
|
->cleared());
|
2012-08-01 11:24:14 +00:00
|
|
|
}
|
2012-08-06 10:35:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
static Code* FindFirstIC(Code* code, Code::Kind kind) {
|
2017-06-20 13:30:17 +00:00
|
|
|
int mask = RelocInfo::ModeMask(RelocInfo::CODE_TARGET);
|
2012-08-06 10:35:48 +00:00
|
|
|
for (RelocIterator it(code, mask); !it.done(); it.next()) {
|
|
|
|
RelocInfo* info = it.rinfo();
|
|
|
|
Code* target = Code::GetCodeFromTargetAddress(info->target_address());
|
|
|
|
if (target->is_inline_cache_stub() && target->kind() == kind) {
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-01 13:48:05 +00:00
|
|
|
static void CheckVectorIC(Handle<JSFunction> f, int slot_index,
|
2014-11-27 16:36:18 +00:00
|
|
|
InlineCacheState desired_state) {
|
2017-02-07 14:05:02 +00:00
|
|
|
Handle<FeedbackVector> vector = Handle<FeedbackVector>(f->feedback_vector());
|
2015-10-01 13:48:05 +00:00
|
|
|
FeedbackVectorHelper helper(vector);
|
2017-02-07 15:19:35 +00:00
|
|
|
FeedbackSlot slot = helper.slot(slot_index);
|
2017-02-01 16:22:03 +00:00
|
|
|
if (vector->IsLoadIC(slot)) {
|
2015-09-16 10:08:50 +00:00
|
|
|
LoadICNexus nexus(vector, slot);
|
|
|
|
CHECK(nexus.StateFromFeedback() == desired_state);
|
|
|
|
} else {
|
2017-02-01 16:22:03 +00:00
|
|
|
CHECK(vector->IsKeyedLoadIC(slot));
|
2015-09-16 10:08:50 +00:00
|
|
|
KeyedLoadICNexus nexus(vector, slot);
|
|
|
|
CHECK(nexus.StateFromFeedback() == desired_state);
|
|
|
|
}
|
2014-11-27 16:36:18 +00:00
|
|
|
}
|
|
|
|
|
2015-04-02 09:39:32 +00:00
|
|
|
TEST(IncrementalMarkingPreservesMonomorphicConstructor) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
if (FLAG_always_opt) return;
|
2015-04-02 09:39:32 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2015-04-02 09:39:32 +00:00
|
|
|
// Prepare function f that contains a monomorphic IC for object
|
|
|
|
// originating from the same native context.
|
|
|
|
CompileRun(
|
|
|
|
"function fun() { this.x = 1; };"
|
|
|
|
"function f(o) { return new o(); } f(fun); f(fun);");
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2015-04-02 09:39:32 +00:00
|
|
|
|
2017-02-07 14:05:02 +00:00
|
|
|
Handle<FeedbackVector> vector(f->feedback_vector());
|
2017-02-07 15:19:35 +00:00
|
|
|
CHECK(vector->Get(FeedbackSlot(0))->IsWeakCell());
|
2015-04-02 09:39:32 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-04-02 09:39:32 +00:00
|
|
|
|
2017-02-07 15:19:35 +00:00
|
|
|
CHECK(vector->Get(FeedbackSlot(0))->IsWeakCell());
|
2015-04-02 09:39:32 +00:00
|
|
|
}
|
|
|
|
|
2014-01-07 14:14:34 +00:00
|
|
|
TEST(IncrementalMarkingPreservesMonomorphicIC) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
if (FLAG_always_opt) return;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2012-08-06 10:35:48 +00:00
|
|
|
// Prepare function f that contains a monomorphic IC for object
|
2012-08-17 09:03:08 +00:00
|
|
|
// originating from the same native context.
|
2012-08-06 10:35:48 +00:00
|
|
|
CompileRun("function fun() { this.x = 1; }; var obj = new fun();"
|
|
|
|
"function f(o) { return o.x; } f(obj); f(obj);");
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2012-08-06 10:35:48 +00:00
|
|
|
|
2015-06-04 16:22:29 +00:00
|
|
|
CheckVectorIC(f, 0, MONOMORPHIC);
|
2012-08-06 10:35:48 +00:00
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-08-06 10:35:48 +00:00
|
|
|
|
2015-06-04 16:22:29 +00:00
|
|
|
CheckVectorIC(f, 0, MONOMORPHIC);
|
2012-08-06 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2014-12-02 14:25:17 +00:00
|
|
|
TEST(IncrementalMarkingPreservesPolymorphicIC) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
if (FLAG_always_opt) return;
|
2014-12-02 14:25:17 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Local<v8::Value> obj1, obj2;
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2014-12-02 14:25:17 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
LocalContext env;
|
|
|
|
CompileRun("function fun() { this.x = 1; }; var obj = new fun();");
|
2015-11-09 19:48:08 +00:00
|
|
|
obj1 = env->Global()->Get(env.local(), v8_str("obj")).ToLocalChecked();
|
2014-12-02 14:25:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
LocalContext env;
|
|
|
|
CompileRun("function fun() { this.x = 2; }; var obj = new fun();");
|
2015-11-09 19:48:08 +00:00
|
|
|
obj2 = env->Global()->Get(env.local(), v8_str("obj")).ToLocalChecked();
|
2014-12-02 14:25:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare function f that contains a polymorphic IC for objects
|
|
|
|
// originating from two different native contexts.
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(CcTest::global()->Set(ctx, v8_str("obj1"), obj1).FromJust());
|
|
|
|
CHECK(CcTest::global()->Set(ctx, v8_str("obj2"), obj2).FromJust());
|
2014-12-02 14:25:17 +00:00
|
|
|
CompileRun("function f(o) { return o.x; } f(obj1); f(obj1); f(obj2);");
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2014-12-02 14:25:17 +00:00
|
|
|
|
2015-06-04 16:22:29 +00:00
|
|
|
CheckVectorIC(f, 0, POLYMORPHIC);
|
2014-12-02 14:25:17 +00:00
|
|
|
|
|
|
|
// Fire context dispose notification.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-12-02 14:25:17 +00:00
|
|
|
|
2015-06-04 16:22:29 +00:00
|
|
|
CheckVectorIC(f, 0, POLYMORPHIC);
|
2014-12-02 14:25:17 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 08:09:12 +00:00
|
|
|
TEST(ContextDisposeDoesntClearPolymorphicIC) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
if (FLAG_always_opt) return;
|
2015-02-19 09:56:06 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Local<v8::Value> obj1, obj2;
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = CcTest::isolate()->GetCurrentContext();
|
2015-02-19 09:56:06 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
LocalContext env;
|
|
|
|
CompileRun("function fun() { this.x = 1; }; var obj = new fun();");
|
2015-11-09 19:48:08 +00:00
|
|
|
obj1 = env->Global()->Get(env.local(), v8_str("obj")).ToLocalChecked();
|
2015-02-19 09:56:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
LocalContext env;
|
|
|
|
CompileRun("function fun() { this.x = 2; }; var obj = new fun();");
|
2015-11-09 19:48:08 +00:00
|
|
|
obj2 = env->Global()->Get(env.local(), v8_str("obj")).ToLocalChecked();
|
2015-02-19 09:56:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare function f that contains a polymorphic IC for objects
|
|
|
|
// originating from two different native contexts.
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(CcTest::global()->Set(ctx, v8_str("obj1"), obj1).FromJust());
|
|
|
|
CHECK(CcTest::global()->Set(ctx, v8_str("obj2"), obj2).FromJust());
|
2015-02-19 09:56:06 +00:00
|
|
|
CompileRun("function f(o) { return o.x; } f(obj1); f(obj1); f(obj2);");
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(ctx, v8_str("f")).ToLocalChecked())));
|
2015-02-19 09:56:06 +00:00
|
|
|
|
2015-06-04 16:22:29 +00:00
|
|
|
CheckVectorIC(f, 0, POLYMORPHIC);
|
2015-02-19 09:56:06 +00:00
|
|
|
|
|
|
|
// Fire context dispose notification.
|
|
|
|
CcTest::isolate()->ContextDisposedNotification();
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(CcTest::heap());
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-02-19 09:56:06 +00:00
|
|
|
|
2016-05-27 08:09:12 +00:00
|
|
|
CheckVectorIC(f, 0, POLYMORPHIC);
|
2015-02-19 09:56:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-10 12:38:12 +00:00
|
|
|
class SourceResource : public v8::String::ExternalOneByteStringResource {
|
2012-08-29 07:51:48 +00:00
|
|
|
public:
|
|
|
|
explicit SourceResource(const char* data)
|
|
|
|
: data_(data), length_(strlen(data)) { }
|
|
|
|
|
|
|
|
virtual void Dispose() {
|
|
|
|
i::DeleteArray(data_);
|
|
|
|
data_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* data() const { return data_; }
|
|
|
|
|
|
|
|
size_t length() const { return length_; }
|
|
|
|
|
|
|
|
bool IsDisposed() { return data_ == NULL; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char* data_;
|
|
|
|
size_t length_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-09-19 08:01:35 +00:00
|
|
|
void ReleaseStackTraceDataTest(v8::Isolate* isolate, const char* source,
|
|
|
|
const char* accessor) {
|
2012-08-29 07:51:48 +00:00
|
|
|
// Test that the data retained by the Error.stack accessor is released
|
|
|
|
// after the first time the accessor is fired. We use external string
|
|
|
|
// to check whether the data is being released since the external string
|
|
|
|
// resource's callback is fired when the external string is GC'ed.
|
2014-09-19 08:01:35 +00:00
|
|
|
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
|
|
|
v8::HandleScope scope(isolate);
|
2012-08-29 07:51:48 +00:00
|
|
|
SourceResource* resource = new SourceResource(i::StrDup(source));
|
|
|
|
{
|
2014-09-19 08:01:35 +00:00
|
|
|
v8::HandleScope scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Context> ctx = isolate->GetCurrentContext();
|
|
|
|
v8::Local<v8::String> source_string =
|
|
|
|
v8::String::NewExternalOneByte(isolate, resource).ToLocalChecked();
|
2016-09-07 10:02:58 +00:00
|
|
|
i_isolate->heap()->CollectAllAvailableGarbage(
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Script::Compile(ctx, source_string)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked();
|
2012-08-29 07:51:48 +00:00
|
|
|
CHECK(!resource->IsDisposed());
|
|
|
|
}
|
2014-09-19 08:01:35 +00:00
|
|
|
// i_isolate->heap()->CollectAllAvailableGarbage();
|
2013-07-24 12:16:02 +00:00
|
|
|
CHECK(!resource->IsDisposed());
|
|
|
|
|
|
|
|
CompileRun(accessor);
|
2016-09-07 10:02:58 +00:00
|
|
|
i_isolate->heap()->CollectAllAvailableGarbage(
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2012-08-29 07:51:48 +00:00
|
|
|
|
|
|
|
// External source has been released.
|
|
|
|
CHECK(resource->IsDisposed());
|
|
|
|
delete resource;
|
|
|
|
}
|
2012-09-20 10:45:38 +00:00
|
|
|
|
|
|
|
|
2014-09-19 08:01:35 +00:00
|
|
|
UNINITIALIZED_TEST(ReleaseStackTraceData) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt) {
|
2014-03-03 11:11:39 +00:00
|
|
|
// TODO(ulan): Remove this once the memory leak via code_next_link is fixed.
|
|
|
|
// See: https://codereview.chromium.org/181833004/
|
|
|
|
return;
|
|
|
|
}
|
2013-11-19 11:52:47 +00:00
|
|
|
FLAG_use_ic = false; // ICs retain objects.
|
|
|
|
FLAG_concurrent_recompilation = false;
|
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);
|
2014-09-19 08:01:35 +00:00
|
|
|
{
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::New(isolate)->Enter();
|
|
|
|
static const char* source1 = "var error = null; "
|
|
|
|
/* Normal Error */ "try { "
|
|
|
|
" throw new Error(); "
|
|
|
|
"} catch (e) { "
|
|
|
|
" error = e; "
|
|
|
|
"} ";
|
|
|
|
static const char* source2 = "var error = null; "
|
|
|
|
/* Stack overflow */ "try { "
|
|
|
|
" (function f() { f(); })(); "
|
|
|
|
"} catch (e) { "
|
|
|
|
" error = e; "
|
|
|
|
"} ";
|
|
|
|
static const char* source3 = "var error = null; "
|
|
|
|
/* Normal Error */ "try { "
|
|
|
|
/* as prototype */ " throw new Error(); "
|
|
|
|
"} catch (e) { "
|
|
|
|
" error = {}; "
|
|
|
|
" error.__proto__ = e; "
|
|
|
|
"} ";
|
|
|
|
static const char* source4 = "var error = null; "
|
|
|
|
/* Stack overflow */ "try { "
|
|
|
|
/* as prototype */ " (function f() { f(); })(); "
|
|
|
|
"} catch (e) { "
|
|
|
|
" error = {}; "
|
|
|
|
" error.__proto__ = e; "
|
|
|
|
"} ";
|
|
|
|
static const char* getter = "error.stack";
|
|
|
|
static const char* setter = "error.stack = 0";
|
|
|
|
|
|
|
|
ReleaseStackTraceDataTest(isolate, source1, setter);
|
|
|
|
ReleaseStackTraceDataTest(isolate, source2, setter);
|
|
|
|
// We do not test source3 and source4 with setter, since the setter is
|
|
|
|
// supposed to (untypically) write to the receiver, not the holder. This is
|
|
|
|
// to emulate the behavior of a data property.
|
|
|
|
|
|
|
|
ReleaseStackTraceDataTest(isolate, source1, getter);
|
|
|
|
ReleaseStackTraceDataTest(isolate, source2, getter);
|
|
|
|
ReleaseStackTraceDataTest(isolate, source3, getter);
|
|
|
|
ReleaseStackTraceDataTest(isolate, source4, getter);
|
|
|
|
}
|
2014-09-19 08:25:56 +00:00
|
|
|
isolate->Dispose();
|
2012-11-12 14:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-06 16:27:32 +00:00
|
|
|
TEST(Regress159140) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2013-02-15 09:27:10 +00:00
|
|
|
Heap* heap = isolate->heap();
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope scope(isolate);
|
2012-12-06 16:27:32 +00:00
|
|
|
|
|
|
|
// Perform one initial GC to enable code flushing.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-12-06 16:27:32 +00:00
|
|
|
|
|
|
|
// Prepare several closures that are all eligible for code flushing
|
|
|
|
// because all reachable ones are not optimized. Make sure that the
|
|
|
|
// optimized code object is directly reachable through a handle so
|
|
|
|
// that it is marked black during incremental marking.
|
|
|
|
Handle<Code> code;
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2012-12-06 16:27:32 +00:00
|
|
|
CompileRun("function h(x) {}"
|
|
|
|
"function mkClosure() {"
|
|
|
|
" return function(x) { return x + 1; };"
|
|
|
|
"}"
|
|
|
|
"var f = mkClosure();"
|
|
|
|
"var g = mkClosure();"
|
|
|
|
"f(1); f(2);"
|
|
|
|
"g(1); g(2);"
|
|
|
|
"h(1); h(2);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f); f(3);"
|
|
|
|
"%OptimizeFunctionOnNextCall(h); h(3);");
|
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(env.local(), v8_str("f")).ToLocalChecked())));
|
2012-12-06 16:27:32 +00:00
|
|
|
CHECK(f->is_compiled());
|
|
|
|
CompileRun("f = null;");
|
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> g = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(env.local(), v8_str("g")).ToLocalChecked())));
|
2012-12-06 16:27:32 +00:00
|
|
|
CHECK(g->is_compiled());
|
|
|
|
const int kAgingThreshold = 6;
|
|
|
|
for (int i = 0; i < kAgingThreshold; i++) {
|
2016-11-29 12:09:56 +00:00
|
|
|
g->code()->MakeOlder();
|
2012-12-06 16:27:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code = inner_scope.CloseAndEscape(Handle<Code>(f->code()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simulate incremental marking so that the functions are enqueued as
|
|
|
|
// code flushing candidates. Then optimize one function. Finally
|
|
|
|
// finish the GC to complete code flushing.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2012-12-06 16:27:32 +00:00
|
|
|
CompileRun("%OptimizeFunctionOnNextCall(g); g(3);");
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-12-06 16:27:32 +00:00
|
|
|
|
|
|
|
// Unoptimized code is missing and the deoptimizer will go ballistic.
|
|
|
|
CompileRun("g('bozo');");
|
|
|
|
}
|
2012-12-12 10:46:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(Regress165495) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-02-15 09:27:10 +00:00
|
|
|
Heap* heap = isolate->heap();
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope scope(isolate);
|
2012-12-12 10:46:01 +00:00
|
|
|
|
|
|
|
// Perform one initial GC to enable code flushing.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-12-12 10:46:01 +00:00
|
|
|
|
|
|
|
// Prepare an optimized closure that the optimized code map will get
|
|
|
|
// populated. Then age the unoptimized code to trigger code flushing
|
|
|
|
// but make sure the optimized code is unreachable.
|
|
|
|
{
|
2013-02-15 09:27:10 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2012-12-12 10:46:01 +00:00
|
|
|
CompileRun("function mkClosure() {"
|
|
|
|
" return function(x) { return x + 1; };"
|
|
|
|
"}"
|
|
|
|
"var f = mkClosure();"
|
|
|
|
"f(1); f(2);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f); f(3);");
|
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()->Get(env.local(), v8_str("f")).ToLocalChecked())));
|
2012-12-12 10:46:01 +00:00
|
|
|
CHECK(f->is_compiled());
|
|
|
|
const int kAgingThreshold = 6;
|
|
|
|
for (int i = 0; i < kAgingThreshold; i++) {
|
2016-11-29 12:09:56 +00:00
|
|
|
f->shared()->code()->MakeOlder();
|
2012-12-12 10:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CompileRun("f = null;");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simulate incremental marking so that unoptimized code is flushed
|
|
|
|
// even though it still is cached in the optimized code map.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2012-12-12 10:46:01 +00:00
|
|
|
|
|
|
|
// Make a new closure that will get code installed from the code map.
|
|
|
|
// Unoptimized code is missing and the deoptimizer will go ballistic.
|
|
|
|
CompileRun("var g = mkClosure(); g('bozo');");
|
|
|
|
}
|
2013-01-11 13:13:11 +00:00
|
|
|
|
2013-01-21 12:26:29 +00:00
|
|
|
TEST(Regress169928) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_opt = false;
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2013-06-04 10:30:05 +00:00
|
|
|
Factory* factory = isolate->factory();
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
// Some flags turn Scavenge collections into Mark-sweep collections
|
|
|
|
// and hence are incompatible with this test case.
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_gc_global || FLAG_stress_compaction ||
|
|
|
|
FLAG_stress_incremental_marking)
|
|
|
|
return;
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
// Prepare the environment
|
|
|
|
CompileRun("function fastliteralcase(literal, value) {"
|
|
|
|
" literal[0] = value;"
|
|
|
|
" return literal;"
|
|
|
|
"}"
|
|
|
|
"function get_standard_literal() {"
|
|
|
|
" var literal = [1, 2, 3];"
|
|
|
|
" return literal;"
|
|
|
|
"}"
|
|
|
|
"obj = fastliteralcase(get_standard_literal(), 1);"
|
|
|
|
"obj = fastliteralcase(get_standard_literal(), 1.5);"
|
|
|
|
"obj = fastliteralcase(get_standard_literal(), 2);");
|
|
|
|
|
|
|
|
// prepare the heap
|
|
|
|
v8::Local<v8::String> mote_code_string =
|
|
|
|
v8_str("fastliteralcase(mote, 2.5);");
|
|
|
|
|
|
|
|
v8::Local<v8::String> array_name = v8_str("mote");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK(CcTest::global()
|
|
|
|
->Set(env.local(), array_name, v8::Int32::New(CcTest::isolate(), 0))
|
|
|
|
.FromJust());
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
// First make sure we flip spaces
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
// Allocate the object.
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<FixedArray> array_data = factory->NewFixedArray(2, NOT_TENURED);
|
2013-01-21 12:26:29 +00:00
|
|
|
array_data->set(0, Smi::FromInt(1));
|
|
|
|
array_data->set(1, Smi::FromInt(2));
|
|
|
|
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::AllocateAllButNBytes(
|
|
|
|
CcTest::heap()->new_space(),
|
|
|
|
JSArray::kSize + AllocationMemento::kSize + kPointerSize);
|
2013-01-21 12:26:29 +00:00
|
|
|
|
2015-06-02 11:46:04 +00:00
|
|
|
Handle<JSArray> array =
|
2017-06-30 11:26:14 +00:00
|
|
|
factory->NewJSArrayWithElements(array_data, PACKED_SMI_ELEMENTS);
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
CHECK_EQ(Smi::FromInt(2), array->length());
|
2017-06-30 18:00:44 +00:00
|
|
|
CHECK(array->HasSmiOrObjectElements());
|
2013-01-21 12:26:29 +00:00
|
|
|
|
2013-07-19 13:30:49 +00:00
|
|
|
// We need filler the size of AllocationMemento object, plus an extra
|
2013-01-21 12:26:29 +00:00
|
|
|
// fill pointer value.
|
2014-04-30 12:25:18 +00:00
|
|
|
HeapObject* obj = NULL;
|
2015-05-15 17:04:48 +00:00
|
|
|
AllocationResult allocation =
|
|
|
|
CcTest::heap()->new_space()->AllocateRawUnaligned(
|
|
|
|
AllocationMemento::kSize + kPointerSize);
|
2014-04-30 12:25:18 +00:00
|
|
|
CHECK(allocation.To(&obj));
|
|
|
|
Address addr_obj = obj->address();
|
2016-02-25 14:36:13 +00:00
|
|
|
CcTest::heap()->CreateFillerObjectAt(addr_obj,
|
|
|
|
AllocationMemento::kSize + kPointerSize,
|
|
|
|
ClearRecordedSlots::kNo);
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
// Give the array a name, making sure not to allocate strings.
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Object> array_obj = v8::Utils::ToLocal(array);
|
|
|
|
CHECK(CcTest::global()->Set(env.local(), array_name, array_obj).FromJust());
|
2013-01-21 12:26:29 +00:00
|
|
|
|
|
|
|
// This should crash with a protection violation if we are running a build
|
|
|
|
// with the bug.
|
2014-03-19 11:31:43 +00:00
|
|
|
AlwaysAllocateScope aa_scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Script::Compile(env.local(), mote_code_string)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2013-01-21 12:26:29 +00:00
|
|
|
}
|
2013-01-23 16:15:15 +00:00
|
|
|
|
|
|
|
|
2015-11-06 14:28:51 +00:00
|
|
|
TEST(Regress513496) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2015-11-06 14:28:51 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
|
|
|
// Perfrom one initial GC to enable code flushing.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-11-06 14:28:51 +00:00
|
|
|
|
|
|
|
// Prepare an optimized closure with containing an inlined function. Then age
|
|
|
|
// the inlined unoptimized code to trigger code flushing but make sure the
|
|
|
|
// outer optimized code is kept in the optimized code map.
|
2017-05-09 21:45:33 +00:00
|
|
|
Handle<SharedFunctionInfo> optimized_code;
|
2015-11-06 14:28:51 +00:00
|
|
|
{
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext context;
|
2015-11-06 14:28:51 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
CompileRun(
|
|
|
|
"function g(x) { return x + 1 }"
|
|
|
|
"function mkClosure() {"
|
|
|
|
" return function(x) { return g(x); };"
|
|
|
|
"}"
|
|
|
|
"var f = mkClosure();"
|
|
|
|
"f(1); f(2);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f); f(3);");
|
|
|
|
|
|
|
|
Handle<JSFunction> g = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
2015-11-09 19:48:08 +00:00
|
|
|
*v8::Local<v8::Function>::Cast(CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("g"))
|
|
|
|
.ToLocalChecked())));
|
2015-11-06 14:28:51 +00:00
|
|
|
CHECK(g->shared()->is_compiled());
|
|
|
|
const int kAgingThreshold = 6;
|
|
|
|
for (int i = 0; i < kAgingThreshold; i++) {
|
2016-11-29 12:09:56 +00:00
|
|
|
g->shared()->code()->MakeOlder();
|
2015-11-06 14:28:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Handle<JSFunction> f = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
2015-11-09 19:48:08 +00:00
|
|
|
*v8::Local<v8::Function>::Cast(CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("f"))
|
|
|
|
.ToLocalChecked())));
|
2015-11-06 14:28:51 +00:00
|
|
|
CHECK(f->is_compiled());
|
2017-05-09 21:45:33 +00:00
|
|
|
|
|
|
|
// Lookup the optimized code and keep it alive.
|
|
|
|
Code* result = f->feedback_vector()->optimized_code();
|
|
|
|
Handle<Code> optimized_code(result, isolate);
|
|
|
|
optimized_code = inner_scope.CloseAndEscape(handle(result, isolate));
|
|
|
|
|
2015-11-06 14:28:51 +00:00
|
|
|
CompileRun("f = null");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Finish a full GC cycle so that the unoptimized code of 'g' is flushed even
|
|
|
|
// though the optimized code for 'f' is reachable via the optimized code map.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-11-06 14:28:51 +00:00
|
|
|
|
|
|
|
// Make a new closure that will get code installed from the code map.
|
|
|
|
// Unoptimized code is missing and the deoptimizer will go ballistic.
|
|
|
|
CompileRun("var h = mkClosure(); h('bozo');");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-21 11:41:46 +00:00
|
|
|
TEST(LargeObjectSlotRecording) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-06-13 09:25:18 +00:00
|
|
|
if (FLAG_never_compact) return;
|
|
|
|
ManualGCScope manual_gc_scope;
|
2015-08-21 11:41:46 +00:00
|
|
|
FLAG_manual_evacuation_candidates_selection = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
|
|
|
|
// Create an object on an evacuation candidate.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
2015-08-21 11:41:46 +00:00
|
|
|
Handle<FixedArray> lit = isolate->factory()->NewFixedArray(4, TENURED);
|
|
|
|
Page* evac_page = Page::FromAddress(lit->address());
|
2016-11-03 12:12:38 +00:00
|
|
|
heap::ForceEvacuationCandidate(evac_page);
|
2015-08-21 11:41:46 +00:00
|
|
|
FixedArray* old_location = *lit;
|
|
|
|
|
|
|
|
// Allocate a large object.
|
2016-09-06 12:58:59 +00:00
|
|
|
int size = Max(1000000, kMaxRegularHeapObjectSize + KB);
|
|
|
|
CHECK(size > kMaxRegularHeapObjectSize);
|
2015-11-12 14:33:01 +00:00
|
|
|
Handle<FixedArray> lo = isolate->factory()->NewFixedArray(size, TENURED);
|
2015-08-21 11:41:46 +00:00
|
|
|
CHECK(heap->lo_space()->Contains(*lo));
|
|
|
|
|
|
|
|
// Start incremental marking to active write barrier.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap, false);
|
2015-09-29 16:59:01 +00:00
|
|
|
heap->incremental_marking()->AdvanceIncrementalMarking(
|
2016-09-06 15:28:54 +00:00
|
|
|
10000000, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2015-08-21 11:41:46 +00:00
|
|
|
|
|
|
|
// Create references from the large object to the object on the evacuation
|
|
|
|
// candidate.
|
2015-11-12 14:33:01 +00:00
|
|
|
const int kStep = size / 10;
|
|
|
|
for (int i = 0; i < size; i += kStep) {
|
2015-08-21 11:41:46 +00:00
|
|
|
lo->set(i, *lit);
|
|
|
|
CHECK(lo->get(i) == old_location);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move the evaucation candidate object.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-08-21 11:41:46 +00:00
|
|
|
|
|
|
|
// Verify that the pointers in the large object got updated.
|
2015-11-12 14:33:01 +00:00
|
|
|
for (int i = 0; i < size; i += kStep) {
|
2015-08-21 11:41:46 +00:00
|
|
|
CHECK_EQ(lo->get(i), *lit);
|
|
|
|
CHECK(lo->get(i) != old_location);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-25 13:32:18 +00:00
|
|
|
class DummyVisitor : public RootVisitor {
|
2013-03-18 11:26:09 +00:00
|
|
|
public:
|
2017-04-25 13:32:18 +00:00
|
|
|
void VisitRootPointers(Root root, Object** start, Object** end) override {}
|
2013-03-18 11:26:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
TEST(DeferredHandles) {
|
2013-04-10 08:29:39 +00:00
|
|
|
CcTest::InitializeVM();
|
2013-09-19 09:17:13 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2013-03-18 11:26:09 +00:00
|
|
|
Heap* heap = isolate->heap();
|
2013-09-10 06:43:23 +00:00
|
|
|
v8::HandleScope scope(reinterpret_cast<v8::Isolate*>(isolate));
|
2014-01-16 08:17:40 +00:00
|
|
|
HandleScopeData* data = isolate->handle_scope_data();
|
2013-03-18 11:26:09 +00:00
|
|
|
Handle<Object> init(heap->empty_string(), isolate);
|
|
|
|
while (data->next < data->limit) {
|
|
|
|
Handle<Object> obj(heap->empty_string(), isolate);
|
|
|
|
}
|
|
|
|
// An entire block of handles has been filled.
|
|
|
|
// Next handle would require a new block.
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK(data->next == data->limit);
|
2013-03-18 11:26:09 +00:00
|
|
|
|
|
|
|
DeferredHandleScope deferred(isolate);
|
|
|
|
DummyVisitor visitor;
|
|
|
|
isolate->handle_scope_implementer()->Iterate(&visitor);
|
2014-02-07 07:06:13 +00:00
|
|
|
delete deferred.Detach();
|
2013-03-18 11:26:09 +00:00
|
|
|
}
|
2013-05-29 11:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(IncrementalMarkingStepMakesBigProgressWithLargeObjects) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2013-05-29 11:13:59 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun("function f(n) {"
|
|
|
|
" var a = new Array(n);"
|
|
|
|
" for (var i = 0; i < n; i += 100) a[i] = i;"
|
|
|
|
"};"
|
|
|
|
"f(10 * 1024 * 1024);");
|
2013-09-19 09:46:15 +00:00
|
|
|
IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
2015-08-25 10:59:40 +00:00
|
|
|
if (marking->IsStopped()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::heap()->StartIncrementalMarking(
|
|
|
|
i::Heap::kNoGCFlags, i::GarbageCollectionReason::kTesting);
|
2015-08-25 10:59:40 +00:00
|
|
|
}
|
2013-05-29 11:13:59 +00:00
|
|
|
// This big step should be sufficient to mark the whole array.
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(100 * MB, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK(marking->IsComplete() ||
|
|
|
|
marking->IsReadyToOverApproximateWeakClosure());
|
2013-05-29 11:13:59 +00:00
|
|
|
}
|
2013-11-14 15:14:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(DisableInlineAllocation) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-11-14 15:14:37 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun("function test() {"
|
|
|
|
" var x = [];"
|
|
|
|
" for (var i = 0; i < 10; i++) {"
|
|
|
|
" x[i] = [ {}, [1,2,3], [1,x,3] ];"
|
|
|
|
" }"
|
|
|
|
"}"
|
|
|
|
"function run() {"
|
|
|
|
" %OptimizeFunctionOnNextCall(test);"
|
|
|
|
" test();"
|
|
|
|
" %DeoptimizeFunction(test);"
|
|
|
|
"}");
|
|
|
|
|
|
|
|
// Warm-up with inline allocation enabled.
|
|
|
|
CompileRun("test(); test(); run();");
|
|
|
|
|
|
|
|
// Run test with inline allocation disabled.
|
|
|
|
CcTest::heap()->DisableInlineAllocation();
|
|
|
|
CompileRun("run()");
|
|
|
|
|
|
|
|
// Run test with inline allocation re-enabled.
|
|
|
|
CcTest::heap()->EnableInlineAllocation();
|
|
|
|
CompileRun("run()");
|
|
|
|
}
|
2013-11-19 16:57:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
static int AllocationSitesCount(Heap* heap) {
|
|
|
|
int count = 0;
|
|
|
|
for (Object* site = heap->allocation_sites_list();
|
2016-06-14 10:08:44 +00:00
|
|
|
!(site->IsUndefined(heap->isolate()));
|
2013-11-19 16:57:49 +00:00
|
|
|
site = AllocationSite::cast(site)->weak_next()) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(EnsureAllocationSiteDependentCodesProcessed) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt || !FLAG_opt) return;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2013-11-19 16:57:49 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2013-11-20 14:20:07 +00:00
|
|
|
|
2013-11-19 16:57:49 +00:00
|
|
|
// The allocation site at the head of the list is ours.
|
|
|
|
Handle<AllocationSite> site;
|
|
|
|
{
|
|
|
|
LocalContext context;
|
|
|
|
v8::HandleScope scope(context->GetIsolate());
|
|
|
|
|
|
|
|
int count = AllocationSitesCount(heap);
|
|
|
|
CompileRun("var bar = function() { return (new Array()); };"
|
|
|
|
"var a = bar();"
|
|
|
|
"bar();"
|
|
|
|
"bar();");
|
|
|
|
|
|
|
|
// One allocation site should have been created.
|
|
|
|
int new_count = AllocationSitesCount(heap);
|
2013-11-19 17:29:43 +00:00
|
|
|
CHECK_EQ(new_count, (count + 1));
|
2013-11-19 16:57:49 +00:00
|
|
|
site = Handle<AllocationSite>::cast(
|
|
|
|
global_handles->Create(
|
|
|
|
AllocationSite::cast(heap->allocation_sites_list())));
|
|
|
|
|
|
|
|
CompileRun("%OptimizeFunctionOnNextCall(bar); bar();");
|
|
|
|
|
2015-10-23 12:26:49 +00:00
|
|
|
Handle<JSFunction> bar_handle = Handle<JSFunction>::cast(
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("bar"))
|
|
|
|
.ToLocalChecked())));
|
2016-07-11 08:39:08 +00:00
|
|
|
|
|
|
|
int dependency_group_count = 0;
|
|
|
|
DependentCode* dependency = site->dependent_code();
|
|
|
|
while (dependency != heap->empty_fixed_array()) {
|
|
|
|
CHECK(dependency->group() ==
|
|
|
|
DependentCode::kAllocationSiteTransitionChangedGroup ||
|
|
|
|
dependency->group() ==
|
|
|
|
DependentCode::kAllocationSiteTenuringChangedGroup);
|
|
|
|
CHECK_EQ(1, dependency->count());
|
|
|
|
CHECK(dependency->object_at(0)->IsWeakCell());
|
|
|
|
Code* function_bar =
|
|
|
|
Code::cast(WeakCell::cast(dependency->object_at(0))->value());
|
|
|
|
CHECK_EQ(bar_handle->code(), function_bar);
|
|
|
|
dependency = dependency->next_link();
|
|
|
|
dependency_group_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TurboFan respects pretenuring feedback from allocation sites, Crankshaft
|
|
|
|
// does not. Either is fine for the purposes of this test.
|
|
|
|
CHECK(dependency_group_count == 1 || dependency_group_count == 2);
|
2013-11-19 16:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now make sure that a gc should get rid of the function, even though we
|
|
|
|
// still have the allocation site alive.
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2013-11-19 16:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The site still exists because of our global handle, but the code is no
|
|
|
|
// longer referred to by dependent_code().
|
2015-11-23 09:30:17 +00:00
|
|
|
CHECK(site->dependent_code()->object_at(0)->IsWeakCell() &&
|
|
|
|
WeakCell::cast(site->dependent_code()->object_at(0))->cleared());
|
2013-11-19 16:57:49 +00:00
|
|
|
}
|
2014-01-15 11:42:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(CellsInOptimizedCodeAreWeak) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt || !FLAG_opt) return;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-01-15 11:42:19 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2014-01-15 11:42:19 +00:00
|
|
|
HandleScope outer_scope(heap->isolate());
|
|
|
|
Handle<Code> code;
|
|
|
|
{
|
|
|
|
LocalContext context;
|
|
|
|
HandleScope scope(heap->isolate());
|
|
|
|
|
2016-01-04 07:11:45 +00:00
|
|
|
CompileRun(
|
|
|
|
"bar = (function() {"
|
|
|
|
" function bar() {"
|
|
|
|
" return foo(1);"
|
|
|
|
" };"
|
|
|
|
" var foo = function(x) { with (x) { return 1 + x; } };"
|
|
|
|
" %NeverOptimizeFunction(foo);"
|
|
|
|
" bar(foo);"
|
|
|
|
" bar(foo);"
|
|
|
|
" bar(foo);"
|
|
|
|
" %OptimizeFunctionOnNextCall(bar);"
|
|
|
|
" bar(foo);"
|
|
|
|
" return bar;})();");
|
2014-01-15 11:42:19 +00:00
|
|
|
|
2015-10-23 12:26:49 +00:00
|
|
|
Handle<JSFunction> bar = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
2015-11-09 19:48:08 +00:00
|
|
|
*v8::Local<v8::Function>::Cast(CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("bar"))
|
|
|
|
.ToLocalChecked())));
|
2014-01-15 11:42:19 +00:00
|
|
|
code = scope.CloseAndEscape(Handle<Code>(bar->code()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now make sure that a gc should get rid of the function
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-01-15 11:42:19 +00:00
|
|
|
}
|
|
|
|
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK(code->marked_for_deoptimization());
|
2014-01-15 11:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(ObjectsInOptimizedCodeAreWeak) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt || !FLAG_opt) return;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-01-15 11:42:19 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2014-01-15 11:42:19 +00:00
|
|
|
HandleScope outer_scope(heap->isolate());
|
|
|
|
Handle<Code> code;
|
|
|
|
{
|
|
|
|
LocalContext context;
|
|
|
|
HandleScope scope(heap->isolate());
|
|
|
|
|
2016-01-04 07:11:45 +00:00
|
|
|
CompileRun(
|
|
|
|
"function bar() {"
|
|
|
|
" return foo(1);"
|
|
|
|
"};"
|
|
|
|
"function foo(x) { with (x) { return 1 + x; } };"
|
|
|
|
"%NeverOptimizeFunction(foo);"
|
|
|
|
"bar();"
|
|
|
|
"bar();"
|
|
|
|
"bar();"
|
|
|
|
"%OptimizeFunctionOnNextCall(bar);"
|
|
|
|
"bar();");
|
2014-01-15 11:42:19 +00:00
|
|
|
|
2015-10-23 12:26:49 +00:00
|
|
|
Handle<JSFunction> bar = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
2015-11-09 19:48:08 +00:00
|
|
|
*v8::Local<v8::Function>::Cast(CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("bar"))
|
|
|
|
.ToLocalChecked())));
|
2014-01-15 11:42:19 +00:00
|
|
|
code = scope.CloseAndEscape(Handle<Code>(bar->code()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now make sure that a gc should get rid of the function
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-01-15 11:42:19 +00:00
|
|
|
}
|
|
|
|
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK(code->marked_for_deoptimization());
|
2014-01-15 11:42:19 +00:00
|
|
|
}
|
2014-03-11 11:36:55 +00:00
|
|
|
|
2016-06-28 12:34:24 +00:00
|
|
|
TEST(NewSpaceObjectsInOptimizedCode) {
|
2017-06-22 13:46:04 +00:00
|
|
|
if (FLAG_always_opt || !FLAG_opt || FLAG_ignition) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2016-06-28 12:34:24 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2016-06-28 12:34:24 +00:00
|
|
|
HandleScope outer_scope(heap->isolate());
|
|
|
|
Handle<Code> code;
|
|
|
|
{
|
|
|
|
LocalContext context;
|
|
|
|
HandleScope scope(heap->isolate());
|
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"var foo;"
|
|
|
|
"var bar;"
|
|
|
|
"(function() {"
|
|
|
|
" function foo_func(x) { with (x) { return 1 + x; } };"
|
|
|
|
" %NeverOptimizeFunction(foo_func);"
|
|
|
|
" function bar_func() {"
|
|
|
|
" return foo(1);"
|
|
|
|
" };"
|
|
|
|
" bar = bar_func;"
|
|
|
|
" foo = foo_func;"
|
|
|
|
" bar_func();"
|
|
|
|
" bar_func();"
|
|
|
|
" bar_func();"
|
|
|
|
" %OptimizeFunctionOnNextCall(bar_func);"
|
|
|
|
" bar_func();"
|
|
|
|
"})();");
|
|
|
|
|
|
|
|
Handle<JSFunction> bar = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
|
|
|
*v8::Local<v8::Function>::Cast(CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("bar"))
|
|
|
|
.ToLocalChecked())));
|
|
|
|
|
|
|
|
Handle<JSFunction> foo = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
|
|
|
|
*v8::Local<v8::Function>::Cast(CcTest::global()
|
|
|
|
->Get(context.local(), v8_str("foo"))
|
|
|
|
.ToLocalChecked())));
|
|
|
|
|
|
|
|
CHECK(heap->InNewSpace(*foo));
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2016-06-28 12:34:24 +00:00
|
|
|
CHECK(!heap->InNewSpace(*foo));
|
|
|
|
#ifdef VERIFY_HEAP
|
|
|
|
heap->Verify();
|
|
|
|
#endif
|
|
|
|
CHECK(!bar->code()->marked_for_deoptimization());
|
|
|
|
code = scope.CloseAndEscape(Handle<Code>(bar->code()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now make sure that a gc should get rid of the function
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-06-28 12:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CHECK(code->marked_for_deoptimization());
|
|
|
|
}
|
2014-03-11 11:36:55 +00:00
|
|
|
|
2014-05-14 09:12:21 +00:00
|
|
|
TEST(NoWeakHashTableLeakWithIncrementalMarking) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt || !FLAG_opt) return;
|
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_compilation_cache = false;
|
|
|
|
FLAG_retain_maps_for_n_gc = 0;
|
2014-05-14 09:12:21 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2015-05-07 10:25:36 +00:00
|
|
|
|
|
|
|
// Do not run for no-snap builds.
|
2016-06-28 13:47:35 +00:00
|
|
|
if (!i::Snapshot::HasContextSnapshot(isolate, 0)) return;
|
2015-05-07 10:25:36 +00:00
|
|
|
|
2014-05-14 09:12:21 +00:00
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
|
2015-05-07 08:37:50 +00:00
|
|
|
// Get a clean slate regarding optimized functions on the heap.
|
|
|
|
i::Deoptimizer::DeoptimizeAll(isolate);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-05-07 08:37:50 +00:00
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2014-05-14 09:12:21 +00:00
|
|
|
HandleScope outer_scope(heap->isolate());
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2014-05-14 09:12:21 +00:00
|
|
|
{
|
|
|
|
LocalContext context;
|
|
|
|
HandleScope scope(heap->isolate());
|
|
|
|
EmbeddedVector<char, 256> source;
|
2014-06-13 16:43:27 +00:00
|
|
|
SNPrintF(source,
|
|
|
|
"function bar%d() {"
|
|
|
|
" return foo%d(1);"
|
|
|
|
"};"
|
|
|
|
"function foo%d(x) { with (x) { return 1 + x; } };"
|
|
|
|
"bar%d();"
|
|
|
|
"bar%d();"
|
|
|
|
"bar%d();"
|
2015-05-07 06:12:55 +00:00
|
|
|
"%%OptimizeFunctionOnNextCall(bar%d);"
|
2014-12-12 13:56:11 +00:00
|
|
|
"bar%d();",
|
|
|
|
i, i, i, i, i, i, i, i);
|
2014-05-14 09:12:21 +00:00
|
|
|
CompileRun(source.start());
|
|
|
|
}
|
2016-03-14 14:01:58 +00:00
|
|
|
// We have to abort incremental marking here to abandon black pages.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
|
2014-05-14 09:12:21 +00:00
|
|
|
}
|
2014-05-14 11:43:21 +00:00
|
|
|
int elements = 0;
|
|
|
|
if (heap->weak_object_to_code_table()->IsHashTable()) {
|
|
|
|
WeakHashTable* t = WeakHashTable::cast(heap->weak_object_to_code_table());
|
|
|
|
elements = t->NumberOfElements();
|
|
|
|
}
|
|
|
|
CHECK_EQ(0, elements);
|
2014-05-14 09:12:21 +00:00
|
|
|
}
|
|
|
|
|
2014-03-26 15:14:51 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
static Handle<JSFunction> OptimizeDummyFunction(v8::Isolate* isolate,
|
|
|
|
const char* name) {
|
2014-03-26 15:14:51 +00:00
|
|
|
EmbeddedVector<char, 256> source;
|
2014-06-13 16:43:27 +00:00
|
|
|
SNPrintF(source,
|
|
|
|
"function %s() { return 0; }"
|
|
|
|
"%s(); %s();"
|
|
|
|
"%%OptimizeFunctionOnNextCall(%s);"
|
|
|
|
"%s();", name, name, name, name, name);
|
2014-03-26 15:14:51 +00:00
|
|
|
CompileRun(source.start());
|
2015-11-09 19:48:08 +00:00
|
|
|
i::Handle<JSFunction> fun = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()
|
|
|
|
->Get(isolate->GetCurrentContext(), v8_str(name))
|
|
|
|
.ToLocalChecked())));
|
2014-03-26 15:14:51 +00:00
|
|
|
return fun;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int GetCodeChainLength(Code* code) {
|
|
|
|
int result = 0;
|
|
|
|
while (code->next_code_link()->IsCode()) {
|
|
|
|
result++;
|
|
|
|
code = Code::cast(code->next_code_link());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(NextCodeLinkIsWeak) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_always_opt = false;
|
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-03-26 15:14:51 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2014-03-26 15:14:51 +00:00
|
|
|
HandleScope outer_scope(heap->isolate());
|
|
|
|
Handle<Code> code;
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-03-26 15:14:51 +00:00
|
|
|
int code_chain_length_before, code_chain_length_after;
|
|
|
|
{
|
|
|
|
HandleScope scope(heap->isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
Handle<JSFunction> mortal =
|
|
|
|
OptimizeDummyFunction(CcTest::isolate(), "mortal");
|
|
|
|
Handle<JSFunction> immortal =
|
|
|
|
OptimizeDummyFunction(CcTest::isolate(), "immortal");
|
2014-03-26 15:14:51 +00:00
|
|
|
CHECK_EQ(immortal->code()->next_code_link(), mortal->code());
|
|
|
|
code_chain_length_before = GetCodeChainLength(immortal->code());
|
|
|
|
// Keep the immortal code and let the mortal code die.
|
|
|
|
code = scope.CloseAndEscape(Handle<Code>(immortal->code()));
|
|
|
|
CompileRun("mortal = null; immortal = null;");
|
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-03-26 15:14:51 +00:00
|
|
|
// Now mortal code should be dead.
|
|
|
|
code_chain_length_after = GetCodeChainLength(*code);
|
|
|
|
CHECK_EQ(code_chain_length_before - 1, code_chain_length_after);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Handle<Code> DummyOptimizedCode(Isolate* isolate) {
|
|
|
|
i::byte buffer[i::Assembler::kMinimalBufferSize];
|
2015-11-25 14:23:37 +00:00
|
|
|
MacroAssembler masm(isolate, buffer, sizeof(buffer),
|
|
|
|
v8::internal::CodeObjectRequired::kYes);
|
2014-03-26 15:14:51 +00:00
|
|
|
CodeDesc desc;
|
2014-05-12 13:47:01 +00:00
|
|
|
masm.Push(isolate->factory()->undefined_value());
|
|
|
|
masm.Drop(1);
|
2017-05-31 14:00:11 +00:00
|
|
|
masm.GetCode(isolate, &desc);
|
2014-03-26 15:14:51 +00:00
|
|
|
Handle<Object> undefined(isolate->heap()->undefined_value(), isolate);
|
|
|
|
Handle<Code> code = isolate->factory()->NewCode(
|
|
|
|
desc, Code::ComputeFlags(Code::OPTIMIZED_FUNCTION), undefined);
|
|
|
|
CHECK(code->IsCode());
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(NextCodeLinkIsWeak2) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-03-26 15:14:51 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
|
2017-04-28 15:36:46 +00:00
|
|
|
if (!isolate->use_optimizer()) return;
|
2014-03-26 15:14:51 +00:00
|
|
|
HandleScope outer_scope(heap->isolate());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-03-26 15:14:51 +00:00
|
|
|
Handle<Context> context(Context::cast(heap->native_contexts_list()), isolate);
|
|
|
|
Handle<Code> new_head;
|
|
|
|
Handle<Object> old_head(context->get(Context::OPTIMIZED_CODE_LIST), isolate);
|
|
|
|
{
|
|
|
|
HandleScope scope(heap->isolate());
|
|
|
|
Handle<Code> immortal = DummyOptimizedCode(isolate);
|
|
|
|
Handle<Code> mortal = DummyOptimizedCode(isolate);
|
|
|
|
mortal->set_next_code_link(*old_head);
|
|
|
|
immortal->set_next_code_link(*mortal);
|
|
|
|
context->set(Context::OPTIMIZED_CODE_LIST, *immortal);
|
|
|
|
new_head = scope.CloseAndEscape(immortal);
|
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-03-26 15:14:51 +00:00
|
|
|
// Now mortal code should be dead.
|
|
|
|
CHECK_EQ(*old_head, new_head->next_code_link());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-11 10:36:09 +00:00
|
|
|
static bool weak_ic_cleared = false;
|
|
|
|
|
2015-04-24 12:35:14 +00:00
|
|
|
static void ClearWeakIC(
|
|
|
|
const v8::WeakCallbackInfo<v8::Persistent<v8::Object>>& data) {
|
2014-04-11 10:36:09 +00:00
|
|
|
printf("clear weak is called\n");
|
|
|
|
weak_ic_cleared = true;
|
2015-04-24 12:35:14 +00:00
|
|
|
data.GetParameter()->Reset();
|
2014-04-11 10:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-02 09:39:32 +00:00
|
|
|
TEST(WeakFunctionInConstructor) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (FLAG_always_opt) return;
|
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
2015-04-02 09:39:32 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2015-04-02 09:39:32 +00:00
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
CompileRun(
|
|
|
|
"function createObj(obj) {"
|
|
|
|
" return new obj();"
|
|
|
|
"}");
|
2015-11-09 19:48:08 +00:00
|
|
|
i::Handle<JSFunction> createObj = Handle<JSFunction>::cast(
|
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Function>::Cast(
|
|
|
|
CcTest::global()
|
|
|
|
->Get(env.local(), v8_str("createObj"))
|
|
|
|
.ToLocalChecked())));
|
2015-04-02 09:39:32 +00:00
|
|
|
|
|
|
|
v8::Persistent<v8::Object> garbage;
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
const char* source =
|
|
|
|
" (function() {"
|
|
|
|
" function hat() { this.x = 5; }"
|
|
|
|
" createObj(hat);"
|
|
|
|
" createObj(hat);"
|
|
|
|
" return hat;"
|
|
|
|
" })();";
|
2015-11-09 19:48:08 +00:00
|
|
|
garbage.Reset(isolate, CompileRun(env.local(), source)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->ToObject(env.local())
|
|
|
|
.ToLocalChecked());
|
2015-04-02 09:39:32 +00:00
|
|
|
}
|
|
|
|
weak_ic_cleared = false;
|
2015-04-24 12:35:14 +00:00
|
|
|
garbage.SetWeak(&garbage, &ClearWeakIC, v8::WeakCallbackType::kParameter);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-04-02 09:39:32 +00:00
|
|
|
CHECK(weak_ic_cleared);
|
|
|
|
|
|
|
|
// We've determined the constructor in createObj has had it's weak cell
|
|
|
|
// cleared. Now, verify that one additional call with a new function
|
|
|
|
// allows monomorphicity.
|
2017-02-07 14:05:02 +00:00
|
|
|
Handle<FeedbackVector> feedback_vector =
|
|
|
|
Handle<FeedbackVector>(createObj->feedback_vector(), CcTest::i_isolate());
|
2015-04-02 09:39:32 +00:00
|
|
|
for (int i = 0; i < 20; i++) {
|
2017-02-07 15:19:35 +00:00
|
|
|
Object* slot_value = feedback_vector->Get(FeedbackSlot(0));
|
2015-04-02 09:39:32 +00:00
|
|
|
CHECK(slot_value->IsWeakCell());
|
|
|
|
if (WeakCell::cast(slot_value)->cleared()) break;
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-04-02 09:39:32 +00:00
|
|
|
}
|
|
|
|
|
2017-02-07 15:19:35 +00:00
|
|
|
Object* slot_value = feedback_vector->Get(FeedbackSlot(0));
|
2015-04-02 09:39:32 +00:00
|
|
|
CHECK(slot_value->IsWeakCell() && WeakCell::cast(slot_value)->cleared());
|
|
|
|
CompileRun(
|
|
|
|
"function coat() { this.x = 6; }"
|
|
|
|
"createObj(coat);");
|
2017-02-07 15:19:35 +00:00
|
|
|
slot_value = feedback_vector->Get(FeedbackSlot(0));
|
2015-04-02 09:39:32 +00:00
|
|
|
CHECK(slot_value->IsWeakCell() && !WeakCell::cast(slot_value)->cleared());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-11 10:36:09 +00:00
|
|
|
// Checks that the value returned by execution of the source is weak.
|
|
|
|
void CheckWeakness(const char* source) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_compaction = false;
|
|
|
|
FLAG_stress_incremental_marking = false;
|
2014-04-11 10:36:09 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2014-04-11 10:36:09 +00:00
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Persistent<v8::Object> garbage;
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
garbage.Reset(isolate, CompileRun(env.local(), source)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->ToObject(env.local())
|
|
|
|
.ToLocalChecked());
|
2014-04-11 10:36:09 +00:00
|
|
|
}
|
|
|
|
weak_ic_cleared = false;
|
2015-04-24 12:35:14 +00:00
|
|
|
garbage.SetWeak(&garbage, &ClearWeakIC, v8::WeakCallbackType::kParameter);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-04-11 10:36:09 +00:00
|
|
|
CHECK(weak_ic_cleared);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Each of the following "weak IC" tests creates an IC that embeds a map with
|
|
|
|
// the prototype pointing to _proto_ and checks that the _proto_ dies on GC.
|
|
|
|
TEST(WeakMapInMonomorphicLoadIC) {
|
|
|
|
CheckWeakness("function loadIC(obj) {"
|
|
|
|
" return obj.name;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-02 14:25:17 +00:00
|
|
|
TEST(WeakMapInPolymorphicLoadIC) {
|
|
|
|
CheckWeakness(
|
|
|
|
"function loadIC(obj) {"
|
|
|
|
" return obj.name;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" var poly = Object.create(proto);"
|
|
|
|
" poly.x = true;"
|
|
|
|
" loadIC(poly);"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-11 10:36:09 +00:00
|
|
|
TEST(WeakMapInMonomorphicKeyedLoadIC) {
|
|
|
|
CheckWeakness("function keyedLoadIC(obj, field) {"
|
|
|
|
" return obj[field];"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" keyedLoadIC(obj, 'name');"
|
|
|
|
" keyedLoadIC(obj, 'name');"
|
|
|
|
" keyedLoadIC(obj, 'name');"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-02 14:25:17 +00:00
|
|
|
TEST(WeakMapInPolymorphicKeyedLoadIC) {
|
|
|
|
CheckWeakness(
|
|
|
|
"function keyedLoadIC(obj, field) {"
|
|
|
|
" return obj[field];"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" keyedLoadIC(obj, 'name');"
|
|
|
|
" keyedLoadIC(obj, 'name');"
|
|
|
|
" keyedLoadIC(obj, 'name');"
|
|
|
|
" var poly = Object.create(proto);"
|
|
|
|
" poly.x = true;"
|
|
|
|
" keyedLoadIC(poly, 'name');"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-11 10:36:09 +00:00
|
|
|
TEST(WeakMapInMonomorphicStoreIC) {
|
|
|
|
CheckWeakness("function storeIC(obj, value) {"
|
|
|
|
" obj.name = value;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" storeIC(obj, 'x');"
|
|
|
|
" storeIC(obj, 'x');"
|
|
|
|
" storeIC(obj, 'x');"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-02 14:25:17 +00:00
|
|
|
TEST(WeakMapInPolymorphicStoreIC) {
|
|
|
|
CheckWeakness(
|
|
|
|
"function storeIC(obj, value) {"
|
|
|
|
" obj.name = value;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" storeIC(obj, 'x');"
|
|
|
|
" storeIC(obj, 'x');"
|
|
|
|
" storeIC(obj, 'x');"
|
|
|
|
" var poly = Object.create(proto);"
|
|
|
|
" poly.x = true;"
|
|
|
|
" storeIC(poly, 'x');"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-11 10:36:09 +00:00
|
|
|
TEST(WeakMapInMonomorphicKeyedStoreIC) {
|
|
|
|
CheckWeakness("function keyedStoreIC(obj, field, value) {"
|
|
|
|
" obj[field] = value;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" keyedStoreIC(obj, 'x');"
|
|
|
|
" keyedStoreIC(obj, 'x');"
|
|
|
|
" keyedStoreIC(obj, 'x');"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-02 14:25:17 +00:00
|
|
|
TEST(WeakMapInPolymorphicKeyedStoreIC) {
|
|
|
|
CheckWeakness(
|
|
|
|
"function keyedStoreIC(obj, field, value) {"
|
|
|
|
" obj[field] = value;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" keyedStoreIC(obj, 'x');"
|
|
|
|
" keyedStoreIC(obj, 'x');"
|
|
|
|
" keyedStoreIC(obj, 'x');"
|
|
|
|
" var poly = Object.create(proto);"
|
|
|
|
" poly.x = true;"
|
|
|
|
" keyedStoreIC(poly, 'x');"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-11 10:36:09 +00:00
|
|
|
TEST(WeakMapInMonomorphicCompareNilIC) {
|
|
|
|
CheckWeakness("function compareNilIC(obj) {"
|
|
|
|
" return obj == null;"
|
|
|
|
"}"
|
|
|
|
" (function() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" compareNilIC(obj);"
|
|
|
|
" compareNilIC(obj);"
|
|
|
|
" compareNilIC(obj);"
|
|
|
|
" return proto;"
|
|
|
|
" })();");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-18 13:09:37 +00:00
|
|
|
Handle<JSFunction> GetFunctionByName(Isolate* isolate, const char* name) {
|
|
|
|
Handle<String> str = isolate->factory()->InternalizeUtf8String(name);
|
|
|
|
Handle<Object> obj =
|
|
|
|
Object::GetProperty(isolate->global_object(), str).ToHandleChecked();
|
|
|
|
return Handle<JSFunction>::cast(obj);
|
|
|
|
}
|
|
|
|
|
2016-05-27 08:09:12 +00:00
|
|
|
void CheckIC(Handle<JSFunction> function, Code::Kind kind, int slot_index,
|
|
|
|
InlineCacheState state) {
|
2017-02-02 13:33:26 +00:00
|
|
|
if (kind == Code::LOAD_IC || kind == Code::KEYED_LOAD_IC) {
|
2017-02-07 14:05:02 +00:00
|
|
|
FeedbackVector* vector = function->feedback_vector();
|
2017-02-07 15:19:35 +00:00
|
|
|
FeedbackSlot slot(slot_index);
|
2015-03-25 11:15:14 +00:00
|
|
|
if (kind == Code::LOAD_IC) {
|
|
|
|
LoadICNexus nexus(vector, slot);
|
|
|
|
CHECK_EQ(nexus.StateFromFeedback(), state);
|
|
|
|
} else if (kind == Code::KEYED_LOAD_IC) {
|
|
|
|
KeyedLoadICNexus nexus(vector, slot);
|
|
|
|
CHECK_EQ(nexus.StateFromFeedback(), state);
|
|
|
|
}
|
|
|
|
} else {
|
2016-05-27 08:09:12 +00:00
|
|
|
Code* ic = FindFirstIC(function->code(), kind);
|
2015-03-25 11:15:14 +00:00
|
|
|
CHECK(ic->is_inline_cache_stub());
|
2016-06-09 16:46:12 +00:00
|
|
|
CHECK_EQ(state, IC::StateFromCode(ic));
|
2015-03-25 11:15:14 +00:00
|
|
|
}
|
2014-12-18 13:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(MonomorphicStaysMonomorphicAfterGC) {
|
|
|
|
if (FLAG_always_opt) return;
|
2017-06-12 11:03:01 +00:00
|
|
|
ManualGCScope manual_gc_scope;
|
2014-12-18 13:09:37 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun(
|
|
|
|
"function loadIC(obj) {"
|
|
|
|
" return obj.name;"
|
|
|
|
"}"
|
|
|
|
"function testIC() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" return proto;"
|
|
|
|
"};");
|
|
|
|
Handle<JSFunction> loadIC = GetFunctionByName(isolate, "loadIC");
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun("(testIC())");
|
|
|
|
}
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-27 08:09:12 +00:00
|
|
|
CheckIC(loadIC, Code::LOAD_IC, 0, MONOMORPHIC);
|
2014-12-18 13:09:37 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun("(testIC())");
|
|
|
|
}
|
2016-05-27 08:09:12 +00:00
|
|
|
CheckIC(loadIC, Code::LOAD_IC, 0, MONOMORPHIC);
|
2014-12-18 13:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(PolymorphicStaysPolymorphicAfterGC) {
|
|
|
|
if (FLAG_always_opt) return;
|
2017-06-12 11:03:01 +00:00
|
|
|
ManualGCScope manual_gc_scope;
|
2014-12-18 13:09:37 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun(
|
|
|
|
"function loadIC(obj) {"
|
|
|
|
" return obj.name;"
|
|
|
|
"}"
|
|
|
|
"function testIC() {"
|
|
|
|
" var proto = {'name' : 'weak'};"
|
|
|
|
" var obj = Object.create(proto);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" loadIC(obj);"
|
|
|
|
" var poly = Object.create(proto);"
|
|
|
|
" poly.x = true;"
|
|
|
|
" loadIC(poly);"
|
|
|
|
" return proto;"
|
|
|
|
"};");
|
|
|
|
Handle<JSFunction> loadIC = GetFunctionByName(isolate, "loadIC");
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun("(testIC())");
|
|
|
|
}
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-27 08:09:12 +00:00
|
|
|
CheckIC(loadIC, Code::LOAD_IC, 0, POLYMORPHIC);
|
2014-12-18 13:09:37 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CompileRun("(testIC())");
|
|
|
|
}
|
2016-05-27 08:09:12 +00:00
|
|
|
CheckIC(loadIC, Code::LOAD_IC, 0, POLYMORPHIC);
|
2014-12-18 13:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-14 14:43:45 +00:00
|
|
|
TEST(WeakCell) {
|
2017-06-12 11:03:01 +00:00
|
|
|
ManualGCScope manual_gc_scope;
|
2014-10-14 14:43:45 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Factory* factory = isolate->factory();
|
|
|
|
|
|
|
|
HandleScope outer_scope(isolate);
|
|
|
|
Handle<WeakCell> weak_cell1;
|
|
|
|
{
|
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
Handle<HeapObject> value = factory->NewFixedArray(1, NOT_TENURED);
|
|
|
|
weak_cell1 = inner_scope.CloseAndEscape(factory->NewWeakCell(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
Handle<FixedArray> survivor = factory->NewFixedArray(1, NOT_TENURED);
|
|
|
|
Handle<WeakCell> weak_cell2;
|
|
|
|
{
|
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
weak_cell2 = inner_scope.CloseAndEscape(factory->NewWeakCell(survivor));
|
|
|
|
}
|
|
|
|
CHECK(weak_cell1->value()->IsFixedArray());
|
|
|
|
CHECK_EQ(*survivor, weak_cell2->value());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2014-10-14 14:43:45 +00:00
|
|
|
CHECK(weak_cell1->value()->IsFixedArray());
|
|
|
|
CHECK_EQ(*survivor, weak_cell2->value());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2014-10-14 14:43:45 +00:00
|
|
|
CHECK(weak_cell1->value()->IsFixedArray());
|
|
|
|
CHECK_EQ(*survivor, weak_cell2->value());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2014-10-21 09:42:16 +00:00
|
|
|
CHECK(weak_cell1->cleared());
|
2014-10-14 14:43:45 +00:00
|
|
|
CHECK_EQ(*survivor, weak_cell2->value());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(WeakCellsWithIncrementalMarking) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-06-12 11:03:01 +00:00
|
|
|
ManualGCScope manual_gc_scope;
|
2014-10-14 14:43:45 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
v8::internal::Heap* heap = CcTest::heap();
|
|
|
|
v8::internal::Factory* factory = isolate->factory();
|
|
|
|
|
|
|
|
const int N = 16;
|
|
|
|
HandleScope outer_scope(isolate);
|
|
|
|
Handle<FixedArray> survivor = factory->NewFixedArray(1, NOT_TENURED);
|
|
|
|
Handle<WeakCell> weak_cells[N];
|
|
|
|
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
Handle<HeapObject> value =
|
|
|
|
i == 0 ? survivor : factory->NewFixedArray(1, NOT_TENURED);
|
|
|
|
Handle<WeakCell> weak_cell = factory->NewWeakCell(value);
|
|
|
|
CHECK(weak_cell->value()->IsFixedArray());
|
|
|
|
IncrementalMarking* marking = heap->incremental_marking();
|
2015-08-25 10:59:40 +00:00
|
|
|
if (marking->IsStopped()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2015-08-25 10:59:40 +00:00
|
|
|
}
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(128, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2014-10-14 14:43:45 +00:00
|
|
|
CHECK(weak_cell->value()->IsFixedArray());
|
|
|
|
weak_cells[i] = inner_scope.CloseAndEscape(weak_cell);
|
|
|
|
}
|
2016-03-14 14:01:58 +00:00
|
|
|
// Call collect all twice to make sure that we also cleared
|
|
|
|
// weak cells that were allocated on black pages.
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
CcTest::CollectAllGarbage();
|
2014-10-14 14:43:45 +00:00
|
|
|
CHECK_EQ(*survivor, weak_cells[0]->value());
|
|
|
|
for (int i = 1; i < N; i++) {
|
2014-10-21 09:42:16 +00:00
|
|
|
CHECK(weak_cells[i]->cleared());
|
2014-10-14 14:43:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-11 11:53:40 +00:00
|
|
|
#ifdef DEBUG
|
2014-03-11 11:36:55 +00:00
|
|
|
TEST(AddInstructionChangesNewSpacePromotion) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
FLAG_expose_gc = true;
|
|
|
|
FLAG_stress_compaction = true;
|
|
|
|
FLAG_gc_interval = 1000;
|
2014-03-11 11:36:55 +00:00
|
|
|
CcTest::InitializeVM();
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_allocation_site_pretenuring) return;
|
2014-03-11 11:36:55 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2014-03-11 11:36:55 +00:00
|
|
|
CompileRun(
|
|
|
|
"function add(a, b) {"
|
|
|
|
" return a + b;"
|
|
|
|
"}"
|
|
|
|
"add(1, 2);"
|
|
|
|
"add(\"a\", \"b\");"
|
|
|
|
"var oldSpaceObject;"
|
|
|
|
"gc();"
|
|
|
|
"function crash(x) {"
|
|
|
|
" var object = {a: null, b: null};"
|
|
|
|
" var result = add(1.5, x | 0);"
|
|
|
|
" object.a = result;"
|
|
|
|
" oldSpaceObject = object;"
|
|
|
|
" return object;"
|
|
|
|
"}"
|
|
|
|
"crash(1);"
|
|
|
|
"crash(1);"
|
|
|
|
"%OptimizeFunctionOnNextCall(crash);"
|
|
|
|
"crash(1);");
|
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Object> global = CcTest::global();
|
|
|
|
v8::Local<v8::Function> g = v8::Local<v8::Function>::Cast(
|
|
|
|
global->Get(env.local(), v8_str("crash")).ToLocalChecked());
|
|
|
|
v8::Local<v8::Value> args1[] = {v8_num(1)};
|
2014-03-11 11:36:55 +00:00
|
|
|
heap->DisableInlineAllocation();
|
|
|
|
heap->set_allocation_timeout(1);
|
2015-11-09 19:48:08 +00:00
|
|
|
g->Call(env.local(), global, 1, args1).ToLocalChecked();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2014-03-11 11:36:55 +00:00
|
|
|
}
|
2014-03-27 10:41:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
void OnFatalErrorExpectOOM(const char* location, const char* message) {
|
|
|
|
// Exit with 0 if the location matches our expectation.
|
|
|
|
exit(strcmp(location, "CALL_AND_RETRY_LAST"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(CEntryStubOOM) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_allow_natives_syntax = true;
|
2014-03-27 10:41:45 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-11-09 19:48:08 +00:00
|
|
|
CcTest::isolate()->SetFatalErrorHandler(OnFatalErrorExpectOOM);
|
2014-03-27 10:41:45 +00:00
|
|
|
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::Value> result = CompileRun(
|
2014-03-27 10:41:45 +00:00
|
|
|
"%SetFlags('--gc-interval=1');"
|
|
|
|
"var a = [];"
|
|
|
|
"a.__proto__ = [];"
|
|
|
|
"a.unshift(1)");
|
|
|
|
|
|
|
|
CHECK(result->IsNumber());
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DEBUG
|
2014-03-31 14:14:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
static void InterruptCallback357137(v8::Isolate* isolate, void* data) { }
|
|
|
|
|
|
|
|
|
|
|
|
static void RequestInterrupt(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
CcTest::isolate()->RequestInterrupt(&InterruptCallback357137, NULL);
|
|
|
|
}
|
|
|
|
|
2016-09-28 17:51:48 +00:00
|
|
|
HEAP_TEST(Regress538257) {
|
2017-05-29 14:43:05 +00:00
|
|
|
FLAG_concurrent_marking = false;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_manual_evacuation_candidates_selection = true;
|
2015-10-02 11:49:55 +00:00
|
|
|
v8::Isolate::CreateParams create_params;
|
|
|
|
// Set heap limits.
|
2017-06-28 13:35:28 +00:00
|
|
|
create_params.constraints.set_max_semi_space_size(1);
|
2016-09-07 09:43:13 +00:00
|
|
|
create_params.constraints.set_max_old_space_size(6);
|
2015-10-02 11:49:55 +00:00
|
|
|
create_params.array_buffer_allocator = CcTest::array_buffer_allocator();
|
|
|
|
v8::Isolate* isolate = v8::Isolate::New(create_params);
|
|
|
|
isolate->Enter();
|
|
|
|
{
|
|
|
|
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
2016-04-06 11:52:22 +00:00
|
|
|
Heap* heap = i_isolate->heap();
|
2015-10-02 11:49:55 +00:00
|
|
|
HandleScope handle_scope(i_isolate);
|
2016-04-06 11:52:22 +00:00
|
|
|
PagedSpace* old_space = heap->old_space();
|
2015-10-02 11:49:55 +00:00
|
|
|
const int kMaxObjects = 10000;
|
|
|
|
const int kFixedArrayLen = 512;
|
|
|
|
Handle<FixedArray> objects[kMaxObjects];
|
2016-04-06 11:52:22 +00:00
|
|
|
for (int i = 0; (i < kMaxObjects) &&
|
|
|
|
heap->CanExpandOldGeneration(old_space->AreaSize());
|
2015-10-02 11:49:55 +00:00
|
|
|
i++) {
|
|
|
|
objects[i] = i_isolate->factory()->NewFixedArray(kFixedArrayLen, TENURED);
|
2016-11-03 12:12:38 +00:00
|
|
|
heap::ForceEvacuationCandidate(Page::FromAddress(objects[i]->address()));
|
2015-10-02 11:49:55 +00:00
|
|
|
}
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(old_space);
|
2016-09-28 17:51:48 +00:00
|
|
|
heap->CollectAllGarbage(i::Heap::kFinalizeIncrementalMarkingMask,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2015-10-02 11:49:55 +00:00
|
|
|
// If we get this far, we've successfully aborted compaction. Any further
|
|
|
|
// allocations might trigger OOM.
|
|
|
|
}
|
|
|
|
isolate->Exit();
|
|
|
|
isolate->Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-31 14:14:54 +00:00
|
|
|
TEST(Regress357137) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope hscope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
|
|
|
|
global->Set(
|
|
|
|
v8::String::NewFromUtf8(isolate, "interrupt", v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked(),
|
|
|
|
v8::FunctionTemplate::New(isolate, RequestInterrupt));
|
2014-03-31 14:14:54 +00:00
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate, NULL, global);
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK(!context.IsEmpty());
|
2014-03-31 14:14:54 +00:00
|
|
|
v8::Context::Scope cscope(context);
|
|
|
|
|
|
|
|
v8::Local<v8::Value> result = CompileRun(
|
|
|
|
"var locals = '';"
|
|
|
|
"for (var i = 0; i < 512; i++) locals += 'var v' + i + '= 42;';"
|
|
|
|
"eval('function f() {' + locals + 'return function() { return v0; }; }');"
|
|
|
|
"interrupt();" // This triggers a fake stack overflow in f.
|
|
|
|
"f()()");
|
2015-11-09 19:48:08 +00:00
|
|
|
CHECK_EQ(42.0, result->ToNumber(context).ToLocalChecked()->Value());
|
2014-03-31 14:14:54 +00:00
|
|
|
}
|
2014-04-24 09:04:12 +00:00
|
|
|
|
|
|
|
|
2015-07-27 13:29:14 +00:00
|
|
|
TEST(Regress507979) {
|
|
|
|
const int kFixedArrayLen = 10;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
HandleScope handle_scope(isolate);
|
|
|
|
|
|
|
|
Handle<FixedArray> o1 = isolate->factory()->NewFixedArray(kFixedArrayLen);
|
|
|
|
Handle<FixedArray> o2 = isolate->factory()->NewFixedArray(kFixedArrayLen);
|
2016-02-10 09:46:27 +00:00
|
|
|
CHECK(heap->InNewSpace(*o1));
|
|
|
|
CHECK(heap->InNewSpace(*o2));
|
2015-07-27 13:29:14 +00:00
|
|
|
|
2016-05-31 17:40:26 +00:00
|
|
|
HeapIterator it(heap, i::HeapIterator::kFilterUnreachable);
|
2015-07-27 13:29:14 +00:00
|
|
|
|
|
|
|
// Replace parts of an object placed before a live object with a filler. This
|
|
|
|
// way the filler object shares the mark bits with the following live object.
|
|
|
|
o1->Shrink(kFixedArrayLen - 1);
|
|
|
|
|
|
|
|
for (HeapObject* obj = it.next(); obj != NULL; obj = it.next()) {
|
|
|
|
// Let's not optimize the loop away.
|
|
|
|
CHECK(obj->address() != nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-19 08:01:35 +00:00
|
|
|
UNINITIALIZED_TEST(PromotionQueue) {
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_expose_gc = true;
|
|
|
|
FLAG_max_semi_space_size = 2 * Page::kPageSize / MB;
|
|
|
|
FLAG_min_semi_space_size = FLAG_max_semi_space_size;
|
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);
|
2014-09-19 08:01:35 +00:00
|
|
|
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
|
|
|
{
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::New(isolate)->Enter();
|
|
|
|
Heap* heap = i_isolate->heap();
|
|
|
|
NewSpace* new_space = heap->new_space();
|
|
|
|
|
|
|
|
// In this test we will try to overwrite the promotion queue which is at the
|
|
|
|
// end of to-space. To actually make that possible, we need at least two
|
2014-09-19 09:15:47 +00:00
|
|
|
// semi-space pages and take advantage of fragmentation.
|
2015-10-02 15:55:06 +00:00
|
|
|
// (1) Use a semi-space consisting of two pages.
|
2014-09-19 08:01:35 +00:00
|
|
|
// (2) Create a few small long living objects and call the scavenger to
|
|
|
|
// move them to the other semi-space.
|
|
|
|
// (3) Create a huge object, i.e., remainder of first semi-space page and
|
|
|
|
// create another huge object which should be of maximum allocatable memory
|
|
|
|
// size of the second semi-space page.
|
|
|
|
// (4) Call the scavenger again.
|
|
|
|
// What will happen is: the scavenger will promote the objects created in
|
|
|
|
// (2) and will create promotion queue entries at the end of the second
|
|
|
|
// semi-space page during the next scavenge when it promotes the objects to
|
|
|
|
// the old generation. The first allocation of (3) will fill up the first
|
|
|
|
// semi-space page. The second allocation in (3) will not fit into the
|
|
|
|
// first semi-space page, but it will overwrite the promotion queue which
|
|
|
|
// are in the second semi-space page. If the right guards are in place, the
|
|
|
|
// promotion queue will be evacuated in that case.
|
|
|
|
|
2014-09-19 09:15:47 +00:00
|
|
|
|
2014-09-19 08:01:35 +00:00
|
|
|
CHECK(new_space->IsAtMaximumCapacity());
|
2017-05-29 11:06:13 +00:00
|
|
|
CHECK_EQ(static_cast<size_t>(FLAG_min_semi_space_size * MB),
|
2016-11-14 16:46:42 +00:00
|
|
|
new_space->TotalCapacity());
|
2014-09-19 08:01:35 +00:00
|
|
|
|
|
|
|
// Call the scavenger two times to get an empty new space
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->CollectGarbage(NEW_SPACE, i::GarbageCollectionReason::kTesting);
|
|
|
|
heap->CollectGarbage(NEW_SPACE, i::GarbageCollectionReason::kTesting);
|
2014-09-19 08:01:35 +00:00
|
|
|
|
|
|
|
// First create a few objects which will survive a scavenge, and will get
|
|
|
|
// promoted to the old generation later on. These objects will create
|
|
|
|
// promotion queue entries at the end of the second semi-space page.
|
|
|
|
const int number_handles = 12;
|
|
|
|
Handle<FixedArray> handles[number_handles];
|
|
|
|
for (int i = 0; i < number_handles; i++) {
|
|
|
|
handles[i] = i_isolate->factory()->NewFixedArray(1, NOT_TENURED);
|
|
|
|
}
|
2015-10-02 15:55:06 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->CollectGarbage(NEW_SPACE, i::GarbageCollectionReason::kTesting);
|
2017-05-29 11:06:13 +00:00
|
|
|
CHECK_EQ(static_cast<size_t>(FLAG_min_semi_space_size * MB),
|
2016-11-14 16:46:42 +00:00
|
|
|
new_space->TotalCapacity());
|
2014-09-19 08:01:35 +00:00
|
|
|
|
2015-10-07 09:13:54 +00:00
|
|
|
// Fill-up the first semi-space page.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::FillUpOnePage(new_space);
|
2014-09-19 08:01:35 +00:00
|
|
|
|
2015-10-02 15:55:06 +00:00
|
|
|
// Create a small object to initialize the bump pointer on the second
|
|
|
|
// semi-space page.
|
|
|
|
Handle<FixedArray> small =
|
|
|
|
i_isolate->factory()->NewFixedArray(1, NOT_TENURED);
|
|
|
|
CHECK(heap->InNewSpace(*small));
|
|
|
|
|
2015-10-07 09:13:54 +00:00
|
|
|
// Fill-up the second semi-space page.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::FillUpOnePage(new_space);
|
2014-09-19 08:01:35 +00:00
|
|
|
|
|
|
|
// This scavenge will corrupt memory if the promotion queue is not
|
|
|
|
// evacuated.
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->CollectGarbage(NEW_SPACE, i::GarbageCollectionReason::kTesting);
|
2014-07-01 18:48:02 +00:00
|
|
|
}
|
2014-09-19 08:01:35 +00:00
|
|
|
isolate->Dispose();
|
2014-07-01 18:48:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-28 15:33:24 +00:00
|
|
|
TEST(Regress388880) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_incremental_marking = false;
|
|
|
|
FLAG_expose_gc = true;
|
2014-07-28 15:33:24 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
|
2014-09-19 14:59:14 +00:00
|
|
|
Handle<Map> map1 = Map::Create(isolate, 1);
|
2016-02-18 14:33:34 +00:00
|
|
|
Handle<String> name = factory->NewStringFromStaticChars("foo");
|
|
|
|
name = factory->InternalizeString(name);
|
2014-07-28 15:33:24 +00:00
|
|
|
Handle<Map> map2 =
|
2017-02-10 08:05:25 +00:00
|
|
|
Map::CopyWithField(map1, name, FieldType::Any(isolate), NONE, kMutable,
|
2016-01-26 15:03:40 +00:00
|
|
|
Representation::Tagged(), OMIT_TRANSITION)
|
|
|
|
.ToHandleChecked();
|
2014-07-28 15:33:24 +00:00
|
|
|
|
2016-11-10 10:16:21 +00:00
|
|
|
size_t desired_offset = Page::kPageSize - map1->instance_size();
|
2014-07-28 15:33:24 +00:00
|
|
|
|
2015-10-07 09:13:54 +00:00
|
|
|
// Allocate padding objects in old pointer space so, that object allocated
|
2014-07-28 15:33:24 +00:00
|
|
|
// afterwards would end at the end of the page.
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
2016-11-10 10:16:21 +00:00
|
|
|
size_t padding_size = desired_offset - Page::kObjectStartOffset;
|
|
|
|
heap::CreatePadding(heap, static_cast<int>(padding_size), TENURED);
|
2014-07-28 15:33:24 +00:00
|
|
|
|
2015-07-13 08:26:21 +00:00
|
|
|
Handle<JSObject> o = factory->NewJSObjectFromMap(map1, TENURED);
|
2014-07-28 15:33:24 +00:00
|
|
|
o->set_properties(*factory->empty_fixed_array());
|
|
|
|
|
2015-07-06 13:59:30 +00:00
|
|
|
// Ensure that the object allocated where we need it.
|
2014-07-28 15:33:24 +00:00
|
|
|
Page* page = Page::FromAddress(o->address());
|
2015-07-06 13:59:30 +00:00
|
|
|
CHECK_EQ(desired_offset, page->Offset(o->address()));
|
2014-07-28 15:33:24 +00:00
|
|
|
|
|
|
|
// Now we have an object right at the end of the page.
|
|
|
|
|
|
|
|
// Enable incremental marking to trigger actions in Heap::AdjustLiveBytes()
|
|
|
|
// that would cause crash.
|
|
|
|
IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
2015-08-07 09:36:42 +00:00
|
|
|
marking->Stop();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::heap()->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2014-07-28 15:33:24 +00:00
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
|
|
|
|
// Now everything is set up for crashing in JSObject::MigrateFastToFast()
|
|
|
|
// when it calls heap->AdjustLiveBytes(...).
|
|
|
|
JSObject::MigrateToMap(o, map2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 13:11:30 +00:00
|
|
|
TEST(Regress3631) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_expose_gc = true;
|
2014-10-31 13:11:30 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
|
|
|
v8::Local<v8::Value> result = CompileRun(
|
|
|
|
"var weak_map = new WeakMap();"
|
|
|
|
"var future_keys = [];"
|
|
|
|
"for (var i = 0; i < 50; i++) {"
|
|
|
|
" var key = {'k' : i + 0.1};"
|
|
|
|
" weak_map.set(key, 1);"
|
|
|
|
" future_keys.push({'x' : i + 0.2});"
|
|
|
|
"}"
|
|
|
|
"weak_map");
|
|
|
|
if (marking->IsStopped()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::heap()->StartIncrementalMarking(
|
|
|
|
i::Heap::kNoGCFlags, i::GarbageCollectionReason::kTesting);
|
2014-10-31 13:11:30 +00:00
|
|
|
}
|
|
|
|
// Incrementally mark the backing store.
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSReceiver> obj =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(result));
|
2014-10-31 13:11:30 +00:00
|
|
|
Handle<JSWeakCollection> weak_map(reinterpret_cast<JSWeakCollection*>(*obj));
|
2017-03-24 18:54:04 +00:00
|
|
|
HeapObject* weak_map_table = HeapObject::cast(weak_map->table());
|
|
|
|
while (!ObjectMarking::IsBlack(weak_map_table,
|
|
|
|
MarkingState::Internal(weak_map_table)) &&
|
2014-10-31 13:11:30 +00:00
|
|
|
!marking->IsStopped()) {
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(MB, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2014-10-31 13:11:30 +00:00
|
|
|
}
|
|
|
|
// Stash the backing store in a handle.
|
|
|
|
Handle<Object> save(weak_map->table(), isolate);
|
|
|
|
// The following line will update the backing store.
|
|
|
|
CompileRun(
|
|
|
|
"for (var i = 0; i < 50; i++) {"
|
|
|
|
" weak_map.set(future_keys[i], i);"
|
|
|
|
"}");
|
|
|
|
heap->incremental_marking()->set_should_hurry(true);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2014-10-31 13:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-18 12:50:02 +00:00
|
|
|
TEST(Regress442710) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
|
|
|
|
HandleScope sc(isolate);
|
2015-11-02 14:57:59 +00:00
|
|
|
Handle<JSGlobalObject> global(
|
|
|
|
CcTest::i_isolate()->context()->global_object());
|
2014-12-18 12:50:02 +00:00
|
|
|
Handle<JSArray> array = factory->NewJSArray(2);
|
|
|
|
|
|
|
|
Handle<String> name = factory->InternalizeUtf8String("testArray");
|
|
|
|
JSReceiver::SetProperty(global, name, array, SLOPPY).Check();
|
|
|
|
CompileRun("testArray[0] = 1; testArray[1] = 2; testArray.shift();");
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2014-12-18 12:50:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-21 12:40:22 +00:00
|
|
|
HEAP_TEST(NumberStringCacheSize) {
|
2015-01-15 11:48:57 +00:00
|
|
|
// Test that the number-string cache has not been resized in the snapshot.
|
2015-01-15 11:22:04 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
2015-02-25 11:14:40 +00:00
|
|
|
if (!isolate->snapshot_available()) return;
|
2015-01-15 11:22:04 +00:00
|
|
|
Heap* heap = isolate->heap();
|
2015-08-21 12:40:22 +00:00
|
|
|
CHECK_EQ(Heap::kInitialNumberStringCacheSize * 2,
|
2015-01-15 11:22:04 +00:00
|
|
|
heap->number_string_cache()->length());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-23 11:20:38 +00:00
|
|
|
TEST(Regress3877) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
CompileRun("function cls() { this.x = 10; }");
|
|
|
|
Handle<WeakCell> weak_prototype;
|
|
|
|
{
|
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
v8::Local<v8::Value> result = CompileRun("cls.prototype");
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSReceiver> proto =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(result));
|
2015-03-23 11:20:38 +00:00
|
|
|
weak_prototype = inner_scope.CloseAndEscape(factory->NewWeakCell(proto));
|
|
|
|
}
|
|
|
|
CHECK(!weak_prototype->cleared());
|
|
|
|
CompileRun(
|
|
|
|
"var a = { };"
|
|
|
|
"a.x = new cls();"
|
|
|
|
"cls.prototype = null;");
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-03-23 11:20:38 +00:00
|
|
|
}
|
|
|
|
// The map of a.x keeps prototype alive
|
|
|
|
CHECK(!weak_prototype->cleared());
|
|
|
|
// Change the map of a.x and make the previous map garbage collectable.
|
|
|
|
CompileRun("a.x.__proto__ = {};");
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-03-23 11:20:38 +00:00
|
|
|
}
|
|
|
|
CHECK(weak_prototype->cleared());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-24 14:35:55 +00:00
|
|
|
Handle<WeakCell> AddRetainedMap(Isolate* isolate, Heap* heap) {
|
2015-03-06 12:36:16 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
Handle<Map> map = Map::Create(isolate, 1);
|
2015-03-17 10:52:00 +00:00
|
|
|
v8::Local<v8::Value> result =
|
|
|
|
CompileRun("(function () { return {x : 10}; })();");
|
2015-11-16 16:48:43 +00:00
|
|
|
Handle<JSReceiver> proto =
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Utils::OpenHandle(*v8::Local<v8::Object>::Cast(result));
|
2015-04-10 12:13:18 +00:00
|
|
|
Map::SetPrototype(map, proto);
|
2015-03-06 12:36:16 +00:00
|
|
|
heap->AddRetainedMap(map);
|
2015-03-24 14:35:55 +00:00
|
|
|
return inner_scope.CloseAndEscape(Map::WeakCellForMap(map));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CheckMapRetainingFor(int n) {
|
|
|
|
FLAG_retain_maps_for_n_gc = n;
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
Handle<WeakCell> weak_cell = AddRetainedMap(isolate, heap);
|
2015-03-06 12:36:16 +00:00
|
|
|
CHECK(!weak_cell->cleared());
|
|
|
|
for (int i = 0; i < n; i++) {
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2015-03-06 12:36:16 +00:00
|
|
|
}
|
|
|
|
CHECK(!weak_cell->cleared());
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2015-03-06 12:36:16 +00:00
|
|
|
CHECK(weak_cell->cleared());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(MapRetaining) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_incremental_marking = false;
|
2015-03-06 12:36:16 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
CheckMapRetainingFor(FLAG_retain_maps_for_n_gc);
|
|
|
|
CheckMapRetainingFor(0);
|
|
|
|
CheckMapRetainingFor(1);
|
|
|
|
CheckMapRetainingFor(7);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-24 14:35:55 +00:00
|
|
|
TEST(RegressArrayListGC) {
|
|
|
|
FLAG_retain_maps_for_n_gc = 1;
|
|
|
|
FLAG_incremental_marking = 0;
|
|
|
|
FLAG_gc_global = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
AddRetainedMap(isolate, heap);
|
|
|
|
Handle<Map> map = Map::Create(isolate, 1);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2015-03-24 14:35:55 +00:00
|
|
|
// Force GC in old space on next addition of retained map.
|
|
|
|
Map::WeakCellForMap(map);
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(CcTest::heap()->new_space());
|
2015-03-24 14:35:55 +00:00
|
|
|
for (int i = 0; i < 10; i++) {
|
|
|
|
heap->AddRetainedMap(map);
|
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2015-03-24 14:35:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-05 21:24:12 +00:00
|
|
|
TEST(WritableVsImmortalRoots) {
|
|
|
|
for (int i = 0; i < Heap::kStrongRootListLength; ++i) {
|
|
|
|
Heap::RootListIndex root_index = static_cast<Heap::RootListIndex>(i);
|
|
|
|
bool writable = Heap::RootCanBeWrittenAfterInitialization(root_index);
|
|
|
|
bool immortal = Heap::RootIsImmortalImmovable(root_index);
|
|
|
|
// A root value can be writable, immortal, or neither, but not both.
|
|
|
|
CHECK(!immortal || !writable);
|
|
|
|
}
|
|
|
|
}
|
2015-04-02 11:26:11 +00:00
|
|
|
|
|
|
|
|
2015-04-20 13:31:38 +00:00
|
|
|
static void TestRightTrimFixedTypedArray(i::ExternalArrayType type,
|
2015-04-02 11:26:11 +00:00
|
|
|
int initial_length,
|
|
|
|
int elements_to_trim) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
|
|
|
|
Handle<FixedTypedArrayBase> array =
|
2015-06-03 07:41:28 +00:00
|
|
|
factory->NewFixedTypedArray(initial_length, type, true);
|
2015-04-02 11:26:11 +00:00
|
|
|
int old_size = array->size();
|
2016-11-18 11:11:30 +00:00
|
|
|
heap->RightTrimFixedArray(*array, elements_to_trim);
|
2015-04-02 11:26:11 +00:00
|
|
|
|
|
|
|
// Check that free space filler is at the right place and did not smash the
|
|
|
|
// array header.
|
|
|
|
CHECK(array->IsFixedArrayBase());
|
|
|
|
CHECK_EQ(initial_length - elements_to_trim, array->length());
|
|
|
|
int new_size = array->size();
|
|
|
|
if (new_size != old_size) {
|
|
|
|
// Free space filler should be created in this case.
|
|
|
|
Address next_obj_address = array->address() + array->size();
|
|
|
|
CHECK(HeapObject::FromAddress(next_obj_address)->IsFiller());
|
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-04-02 11:26:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(Regress472513) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
|
|
|
// The combination of type/initial_length/elements_to_trim triggered
|
|
|
|
// typed array header smashing with free space filler (crbug/472513).
|
|
|
|
|
|
|
|
// 64-bit cases.
|
2015-04-20 13:31:38 +00:00
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint8Array, 32, 6);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint8Array, 32 - 7, 6);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint16Array, 16, 6);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint16Array, 16 - 3, 6);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint32Array, 8, 6);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint32Array, 8 - 1, 6);
|
2015-04-02 11:26:11 +00:00
|
|
|
|
|
|
|
// 32-bit cases.
|
2015-04-20 13:31:38 +00:00
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint8Array, 16, 3);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint8Array, 16 - 3, 3);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint16Array, 8, 3);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint16Array, 8 - 1, 3);
|
|
|
|
TestRightTrimFixedTypedArray(i::kExternalUint32Array, 4, 3);
|
2015-04-02 11:26:11 +00:00
|
|
|
}
|
2015-04-27 12:59:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(WeakFixedArray) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
|
|
|
|
Handle<HeapNumber> number = CcTest::i_isolate()->factory()->NewHeapNumber(1);
|
|
|
|
Handle<WeakFixedArray> array = WeakFixedArray::Add(Handle<Object>(), number);
|
|
|
|
array->Remove(number);
|
2015-08-08 22:56:15 +00:00
|
|
|
array->Compact<WeakFixedArray::NullCallback>();
|
2015-04-27 12:59:55 +00:00
|
|
|
WeakFixedArray::Add(array, number);
|
|
|
|
}
|
2015-04-28 11:13:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(PreprocessStackTrace) {
|
|
|
|
// Do not automatically trigger early GC.
|
|
|
|
FLAG_gc_interval = -1;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-05-28 12:49:31 +00:00
|
|
|
v8::TryCatch try_catch(CcTest::isolate());
|
2015-04-28 11:13:22 +00:00
|
|
|
CompileRun("throw new Error();");
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Handle<Object> exception = v8::Utils::OpenHandle(*try_catch.Exception());
|
|
|
|
Handle<Name> key = isolate->factory()->stack_trace_symbol();
|
|
|
|
Handle<Object> stack_trace =
|
2016-03-08 17:29:05 +00:00
|
|
|
Object::GetProperty(exception, key).ToHandleChecked();
|
2015-04-28 11:13:22 +00:00
|
|
|
Handle<Object> code =
|
|
|
|
Object::GetElement(isolate, stack_trace, 3).ToHandleChecked();
|
|
|
|
CHECK(code->IsCode());
|
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-04-28 11:13:22 +00:00
|
|
|
|
|
|
|
Handle<Object> pos =
|
|
|
|
Object::GetElement(isolate, stack_trace, 3).ToHandleChecked();
|
|
|
|
CHECK(pos->IsSmi());
|
|
|
|
|
|
|
|
Handle<JSArray> stack_trace_array = Handle<JSArray>::cast(stack_trace);
|
|
|
|
int array_length = Smi::cast(stack_trace_array->length())->value();
|
|
|
|
for (int i = 0; i < array_length; i++) {
|
|
|
|
Handle<Object> element =
|
|
|
|
Object::GetElement(isolate, stack_trace, i).ToHandleChecked();
|
|
|
|
CHECK(!element->IsCode());
|
|
|
|
}
|
|
|
|
}
|
2015-05-12 14:00:47 +00:00
|
|
|
|
|
|
|
|
2015-05-21 06:15:33 +00:00
|
|
|
static bool utils_has_been_collected = false;
|
2015-05-12 14:00:47 +00:00
|
|
|
|
2015-05-21 06:15:33 +00:00
|
|
|
static void UtilsHasBeenCollected(
|
2015-05-12 14:00:47 +00:00
|
|
|
const v8::WeakCallbackInfo<v8::Persistent<v8::Object>>& data) {
|
2015-05-21 06:15:33 +00:00
|
|
|
utils_has_been_collected = true;
|
2015-05-12 14:00:47 +00:00
|
|
|
data.GetParameter()->Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(BootstrappingExports) {
|
2015-10-16 11:27:14 +00:00
|
|
|
// Expose utils object and delete it to observe that it is indeed
|
|
|
|
// being garbage-collected.
|
|
|
|
FLAG_expose_natives_as = "utils";
|
2015-05-12 14:00:47 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
2015-05-12 14:00:47 +00:00
|
|
|
|
2016-06-28 13:47:35 +00:00
|
|
|
if (Snapshot::HasContextSnapshot(CcTest::i_isolate(), 0)) return;
|
2015-05-12 14:00:47 +00:00
|
|
|
|
2015-05-21 06:15:33 +00:00
|
|
|
utils_has_been_collected = false;
|
2015-05-12 14:00:47 +00:00
|
|
|
|
2015-05-21 06:15:33 +00:00
|
|
|
v8::Persistent<v8::Object> utils;
|
2015-05-12 14:00:47 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-10-16 11:27:14 +00:00
|
|
|
v8::Local<v8::String> name = v8_str("utils");
|
2015-11-09 19:48:08 +00:00
|
|
|
utils.Reset(isolate, CcTest::global()
|
|
|
|
->Get(env.local(), name)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->ToObject(env.local())
|
|
|
|
.ToLocalChecked());
|
|
|
|
CHECK(CcTest::global()->Delete(env.local(), name).FromJust());
|
2015-05-12 14:00:47 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 06:15:33 +00:00
|
|
|
utils.SetWeak(&utils, UtilsHasBeenCollected,
|
|
|
|
v8::WeakCallbackType::kParameter);
|
2015-05-12 14:00:47 +00:00
|
|
|
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-05-12 14:00:47 +00:00
|
|
|
|
2015-05-21 06:15:33 +00:00
|
|
|
CHECK(utils_has_been_collected);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(Regress1878) {
|
|
|
|
FLAG_allow_natives_syntax = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-10-26 13:36:36 +00:00
|
|
|
v8::Local<v8::Function> constructor = v8::Utils::CallableToLocal(
|
2015-10-23 12:26:49 +00:00
|
|
|
CcTest::i_isolate()->internal_array_function());
|
2015-11-09 19:48:08 +00:00
|
|
|
LocalContext env;
|
|
|
|
CHECK(CcTest::global()
|
|
|
|
->Set(env.local(), v8_str("InternalArray"), constructor)
|
|
|
|
.FromJust());
|
2015-05-21 06:15:33 +00:00
|
|
|
|
2015-05-28 12:49:31 +00:00
|
|
|
v8::TryCatch try_catch(isolate);
|
2015-05-21 06:15:33 +00:00
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"var a = Array();"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" var ai = new InternalArray(10000);"
|
|
|
|
" if (%HaveSameMap(ai, a)) throw Error();"
|
2017-06-30 18:00:44 +00:00
|
|
|
" if (!%HasObjectElements(ai)) throw Error();"
|
2015-05-21 06:15:33 +00:00
|
|
|
"}"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" var ai = new InternalArray(10000);"
|
|
|
|
" if (%HaveSameMap(ai, a)) throw Error();"
|
2017-06-30 18:00:44 +00:00
|
|
|
" if (!%HasObjectElements(ai)) throw Error();"
|
2015-05-21 06:15:33 +00:00
|
|
|
"}");
|
|
|
|
|
|
|
|
CHECK(!try_catch.HasCaught());
|
2015-05-12 14:00:47 +00:00
|
|
|
}
|
2015-05-21 10:19:09 +00:00
|
|
|
|
|
|
|
|
2015-05-26 11:51:18 +00:00
|
|
|
void AllocateInSpace(Isolate* isolate, size_t bytes, AllocationSpace space) {
|
2015-05-21 10:19:09 +00:00
|
|
|
CHECK(bytes >= FixedArray::kHeaderSize);
|
|
|
|
CHECK(bytes % kPointerSize == 0);
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
AlwaysAllocateScope always_allocate(isolate);
|
|
|
|
int elements =
|
|
|
|
static_cast<int>((bytes - FixedArray::kHeaderSize) / kPointerSize);
|
2015-05-26 11:51:18 +00:00
|
|
|
Handle<FixedArray> array = factory->NewFixedArray(
|
|
|
|
elements, space == NEW_SPACE ? NOT_TENURED : TENURED);
|
|
|
|
CHECK((space == NEW_SPACE) == isolate->heap()->InNewSpace(*array));
|
2015-05-21 10:19:09 +00:00
|
|
|
CHECK_EQ(bytes, static_cast<size_t>(array->Size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(NewSpaceAllocationCounter) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
size_t counter1 = heap->NewSpaceAllocationCounter();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2017-01-25 07:41:34 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE); // Ensure new space is empty.
|
2015-05-21 10:19:09 +00:00
|
|
|
const size_t kSize = 1024;
|
2015-05-26 11:51:18 +00:00
|
|
|
AllocateInSpace(isolate, kSize, NEW_SPACE);
|
2015-05-21 10:19:09 +00:00
|
|
|
size_t counter2 = heap->NewSpaceAllocationCounter();
|
|
|
|
CHECK_EQ(kSize, counter2 - counter1);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-05-21 10:19:09 +00:00
|
|
|
size_t counter3 = heap->NewSpaceAllocationCounter();
|
2015-06-04 01:28:14 +00:00
|
|
|
CHECK_EQ(0U, counter3 - counter2);
|
2015-05-21 10:19:09 +00:00
|
|
|
// Test counter overflow.
|
2017-03-17 15:18:18 +00:00
|
|
|
size_t max_counter = static_cast<size_t>(-1);
|
2015-05-21 10:19:09 +00:00
|
|
|
heap->set_new_space_allocation_counter(max_counter - 10 * kSize);
|
|
|
|
size_t start = heap->NewSpaceAllocationCounter();
|
|
|
|
for (int i = 0; i < 20; i++) {
|
2015-05-26 11:51:18 +00:00
|
|
|
AllocateInSpace(isolate, kSize, NEW_SPACE);
|
2015-05-21 10:19:09 +00:00
|
|
|
size_t counter = heap->NewSpaceAllocationCounter();
|
|
|
|
CHECK_EQ(kSize, counter - start);
|
|
|
|
start = counter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-26 11:51:18 +00:00
|
|
|
TEST(OldSpaceAllocationCounter) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
size_t counter1 = heap->OldGenerationAllocationCounter();
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-05-26 11:51:18 +00:00
|
|
|
const size_t kSize = 1024;
|
|
|
|
AllocateInSpace(isolate, kSize, OLD_SPACE);
|
|
|
|
size_t counter2 = heap->OldGenerationAllocationCounter();
|
2015-05-26 15:42:20 +00:00
|
|
|
// TODO(ulan): replace all CHECK_LE with CHECK_EQ after v8:4148 is fixed.
|
|
|
|
CHECK_LE(kSize, counter2 - counter1);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2015-05-26 11:51:18 +00:00
|
|
|
size_t counter3 = heap->OldGenerationAllocationCounter();
|
2015-05-26 15:48:20 +00:00
|
|
|
CHECK_EQ(0u, counter3 - counter2);
|
2015-05-26 11:51:18 +00:00
|
|
|
AllocateInSpace(isolate, kSize, OLD_SPACE);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2015-05-26 11:51:18 +00:00
|
|
|
size_t counter4 = heap->OldGenerationAllocationCounter();
|
2015-05-26 15:42:20 +00:00
|
|
|
CHECK_LE(kSize, counter4 - counter3);
|
2015-05-26 11:51:18 +00:00
|
|
|
// Test counter overflow.
|
2017-03-17 15:18:18 +00:00
|
|
|
size_t max_counter = static_cast<size_t>(-1);
|
2016-09-28 13:27:44 +00:00
|
|
|
heap->set_old_generation_allocation_counter_at_last_gc(max_counter -
|
|
|
|
10 * kSize);
|
2015-05-26 11:51:18 +00:00
|
|
|
size_t start = heap->OldGenerationAllocationCounter();
|
|
|
|
for (int i = 0; i < 20; i++) {
|
|
|
|
AllocateInSpace(isolate, kSize, OLD_SPACE);
|
|
|
|
size_t counter = heap->OldGenerationAllocationCounter();
|
2015-05-26 15:42:20 +00:00
|
|
|
CHECK_LE(kSize, counter - start);
|
2015-05-26 11:51:18 +00:00
|
|
|
start = counter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-26 08:00:04 +00:00
|
|
|
static void CheckLeak(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Object* message =
|
|
|
|
*reinterpret_cast<Object**>(isolate->pending_message_obj_address());
|
2016-06-06 12:58:10 +00:00
|
|
|
CHECK(message->IsTheHole(isolate));
|
2015-05-26 08:00:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(MessageObjectLeak) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
|
|
|
|
global->Set(
|
|
|
|
v8::String::NewFromUtf8(isolate, "check", v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked(),
|
|
|
|
v8::FunctionTemplate::New(isolate, CheckLeak));
|
2015-05-26 08:00:04 +00:00
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate, NULL, global);
|
|
|
|
v8::Context::Scope cscope(context);
|
|
|
|
|
|
|
|
const char* test =
|
|
|
|
"try {"
|
|
|
|
" throw 'message 1';"
|
|
|
|
"} catch (e) {"
|
|
|
|
"}"
|
|
|
|
"check();"
|
|
|
|
"L: try {"
|
|
|
|
" throw 'message 2';"
|
|
|
|
"} finally {"
|
|
|
|
" break L;"
|
|
|
|
"}"
|
|
|
|
"check();";
|
|
|
|
CompileRun(test);
|
|
|
|
|
|
|
|
const char* flag = "--turbo-filter=*";
|
|
|
|
FlagList::SetFlagsFromString(flag, StrLength(flag));
|
|
|
|
FLAG_always_opt = true;
|
|
|
|
|
|
|
|
CompileRun(test);
|
|
|
|
}
|
2015-05-26 11:51:18 +00:00
|
|
|
|
|
|
|
|
2015-06-25 12:19:55 +00:00
|
|
|
static void CheckEqualSharedFunctionInfos(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
Handle<Object> obj1 = v8::Utils::OpenHandle(*args[0]);
|
|
|
|
Handle<Object> obj2 = v8::Utils::OpenHandle(*args[1]);
|
|
|
|
Handle<JSFunction> fun1 = Handle<JSFunction>::cast(obj1);
|
|
|
|
Handle<JSFunction> fun2 = Handle<JSFunction>::cast(obj2);
|
|
|
|
CHECK(fun1->shared() == fun2->shared());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void RemoveCodeAndGC(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Handle<Object> obj = v8::Utils::OpenHandle(*args[0]);
|
|
|
|
Handle<JSFunction> fun = Handle<JSFunction>::cast(obj);
|
2016-11-24 17:26:33 +00:00
|
|
|
fun->shared()->ClearBytecodeArray(); // Bytecode is code too.
|
2015-06-25 12:19:55 +00:00
|
|
|
fun->ReplaceCode(*isolate->builtins()->CompileLazy());
|
|
|
|
fun->shared()->ReplaceCode(*isolate->builtins()->CompileLazy());
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectAllAvailableGarbage();
|
2015-06-25 12:19:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(CanonicalSharedFunctionInfo) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-11-09 19:48:08 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
|
2015-06-25 12:19:55 +00:00
|
|
|
global->Set(isolate, "check", v8::FunctionTemplate::New(
|
|
|
|
isolate, CheckEqualSharedFunctionInfos));
|
|
|
|
global->Set(isolate, "remove",
|
|
|
|
v8::FunctionTemplate::New(isolate, RemoveCodeAndGC));
|
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate, NULL, global);
|
|
|
|
v8::Context::Scope cscope(context);
|
|
|
|
CompileRun(
|
|
|
|
"function f() { return function g() {}; }"
|
|
|
|
"var g1 = f();"
|
|
|
|
"remove(f);"
|
|
|
|
"var g2 = f();"
|
|
|
|
"check(g1, g2);");
|
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"function f() { return (function() { return function g() {}; })(); }"
|
|
|
|
"var g1 = f();"
|
|
|
|
"remove(f);"
|
|
|
|
"var g2 = f();"
|
|
|
|
"check(g1, g2);");
|
|
|
|
}
|
|
|
|
|
2016-04-22 11:12:55 +00:00
|
|
|
TEST(RemoveCodeFromSharedFunctionInfoButNotFromClosure) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
|
|
|
|
global->Set(isolate, "check", v8::FunctionTemplate::New(
|
|
|
|
isolate, CheckEqualSharedFunctionInfos));
|
|
|
|
global->Set(isolate, "remove",
|
|
|
|
v8::FunctionTemplate::New(isolate, RemoveCodeAndGC));
|
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate, NULL, global);
|
|
|
|
v8::Context::Scope cscope(context);
|
|
|
|
CompileRun(
|
|
|
|
"function f() { return function g() {}; }"
|
|
|
|
"var g1 = f();"
|
|
|
|
"var g2 = f();"
|
|
|
|
"check(g1, g2);"
|
|
|
|
"g1();"
|
|
|
|
"g2();"
|
|
|
|
"remove(g1);"
|
|
|
|
"g2();"
|
|
|
|
"check(g1, g2);");
|
|
|
|
}
|
2015-06-25 12:19:55 +00:00
|
|
|
|
2015-08-21 08:12:11 +00:00
|
|
|
TEST(ScriptIterator) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
LocalContext context;
|
|
|
|
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-08-21 08:12:11 +00:00
|
|
|
|
|
|
|
int script_count = 0;
|
|
|
|
{
|
|
|
|
HeapIterator it(heap);
|
|
|
|
for (HeapObject* obj = it.next(); obj != NULL; obj = it.next()) {
|
|
|
|
if (obj->IsScript()) script_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Script::Iterator iterator(isolate);
|
|
|
|
while (iterator.Next()) script_count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_EQ(0, script_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(SharedFunctionInfoIterator) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
LocalContext context;
|
|
|
|
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
CcTest::CollectAllGarbage();
|
2015-08-21 08:12:11 +00:00
|
|
|
|
|
|
|
int sfi_count = 0;
|
|
|
|
{
|
|
|
|
HeapIterator it(heap);
|
|
|
|
for (HeapObject* obj = it.next(); obj != NULL; obj = it.next()) {
|
|
|
|
if (!obj->IsSharedFunctionInfo()) continue;
|
2015-10-27 11:40:31 +00:00
|
|
|
sfi_count++;
|
2015-08-21 08:12:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-12-15 17:19:55 +00:00
|
|
|
SharedFunctionInfo::GlobalIterator iterator(isolate);
|
2015-08-21 08:12:11 +00:00
|
|
|
while (iterator.Next()) sfi_count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_EQ(0, sfi_count);
|
|
|
|
}
|
|
|
|
|
2016-02-17 11:52:31 +00:00
|
|
|
HEAP_TEST(Regress587004) {
|
2017-05-29 14:43:05 +00:00
|
|
|
FLAG_concurrent_marking = false;
|
2016-02-17 11:52:31 +00:00
|
|
|
FLAG_concurrent_sweeping = false;
|
|
|
|
#ifdef VERIFY_HEAP
|
|
|
|
FLAG_verify_heap = false;
|
|
|
|
#endif
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
2016-09-06 12:58:59 +00:00
|
|
|
const int N =
|
|
|
|
(kMaxRegularHeapObjectSize - FixedArray::kHeaderSize) / kPointerSize;
|
2016-02-17 11:52:31 +00:00
|
|
|
Handle<FixedArray> array = factory->NewFixedArray(N, TENURED);
|
|
|
|
CHECK(heap->old_space()->Contains(*array));
|
|
|
|
Handle<Object> number = factory->NewHeapNumber(1.0);
|
|
|
|
CHECK(heap->InNewSpace(*number));
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
array->set(i, *number);
|
|
|
|
}
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
2016-11-18 11:11:30 +00:00
|
|
|
heap->RightTrimFixedArray(*array, N - 1);
|
2016-02-17 11:52:31 +00:00
|
|
|
heap->mark_compact_collector()->EnsureSweepingCompleted();
|
|
|
|
ByteArray* byte_array;
|
|
|
|
const int M = 256;
|
|
|
|
// Don't allow old space expansion. The test works without this flag too,
|
|
|
|
// but becomes very slow.
|
|
|
|
heap->set_force_oom(true);
|
|
|
|
while (heap->AllocateByteArray(M, TENURED).To(&byte_array)) {
|
|
|
|
for (int j = 0; j < M; j++) {
|
|
|
|
byte_array->set(j, 0x31);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Re-enable old space expansion to avoid OOM crash.
|
|
|
|
heap->set_force_oom(false);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2016-02-17 11:52:31 +00:00
|
|
|
}
|
2015-10-29 13:59:34 +00:00
|
|
|
|
2016-02-25 17:28:50 +00:00
|
|
|
HEAP_TEST(Regress589413) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-02-25 17:28:50 +00:00
|
|
|
FLAG_stress_compaction = true;
|
|
|
|
FLAG_manual_evacuation_candidates_selection = true;
|
|
|
|
FLAG_parallel_compaction = false;
|
2017-05-29 14:43:05 +00:00
|
|
|
FLAG_concurrent_marking = false;
|
2016-02-25 17:28:50 +00:00
|
|
|
FLAG_concurrent_sweeping = false;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
// Get the heap in clean state.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2016-02-25 17:28:50 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
// Fill the new space with byte arrays with elements looking like pointers.
|
|
|
|
const int M = 256;
|
|
|
|
ByteArray* byte_array;
|
|
|
|
while (heap->AllocateByteArray(M).To(&byte_array)) {
|
|
|
|
for (int j = 0; j < M; j++) {
|
|
|
|
byte_array->set(j, 0x31);
|
|
|
|
}
|
|
|
|
// Add the array in root set.
|
|
|
|
handle(byte_array);
|
|
|
|
}
|
|
|
|
// Make sure the byte arrays will be promoted on the next GC.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2016-02-25 17:28:50 +00:00
|
|
|
// This number is close to large free list category threshold.
|
|
|
|
const int N = 0x3eee;
|
|
|
|
{
|
|
|
|
std::vector<FixedArray*> arrays;
|
|
|
|
std::set<Page*> pages;
|
|
|
|
FixedArray* array;
|
|
|
|
// Fill all pages with fixed arrays.
|
|
|
|
heap->set_force_oom(true);
|
|
|
|
while (heap->AllocateFixedArray(N, TENURED).To(&array)) {
|
|
|
|
arrays.push_back(array);
|
|
|
|
pages.insert(Page::FromAddress(array->address()));
|
|
|
|
// Add the array in root set.
|
|
|
|
handle(array);
|
|
|
|
}
|
|
|
|
// Expand and full one complete page with fixed arrays.
|
|
|
|
heap->set_force_oom(false);
|
|
|
|
while (heap->AllocateFixedArray(N, TENURED).To(&array)) {
|
|
|
|
arrays.push_back(array);
|
|
|
|
pages.insert(Page::FromAddress(array->address()));
|
|
|
|
// Add the array in root set.
|
|
|
|
handle(array);
|
|
|
|
// Do not expand anymore.
|
|
|
|
heap->set_force_oom(true);
|
|
|
|
}
|
|
|
|
// Expand and mark the new page as evacuation candidate.
|
|
|
|
heap->set_force_oom(false);
|
|
|
|
{
|
|
|
|
AlwaysAllocateScope always_allocate(isolate);
|
|
|
|
Handle<HeapObject> ec_obj = factory->NewFixedArray(5000, TENURED);
|
|
|
|
Page* ec_page = Page::FromAddress(ec_obj->address());
|
2016-11-03 12:12:38 +00:00
|
|
|
heap::ForceEvacuationCandidate(ec_page);
|
2016-02-25 17:28:50 +00:00
|
|
|
// Make all arrays point to evacuation candidate so that
|
|
|
|
// slots are recorded for them.
|
|
|
|
for (size_t j = 0; j < arrays.size(); j++) {
|
|
|
|
array = arrays[j];
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
array->set(i, *ec_obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateIncrementalMarking(heap);
|
2016-02-25 17:28:50 +00:00
|
|
|
for (size_t j = 0; j < arrays.size(); j++) {
|
2016-11-18 11:11:30 +00:00
|
|
|
heap->RightTrimFixedArray(arrays[j], N - 1);
|
2016-02-25 17:28:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Force allocation from the free list.
|
|
|
|
heap->set_force_oom(true);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2016-02-25 17:28:50 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 09:33:05 +00:00
|
|
|
TEST(Regress598319) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-06-13 14:39:46 +00:00
|
|
|
ManualGCScope manual_gc_scope;
|
2016-05-04 09:33:05 +00:00
|
|
|
// This test ensures that no white objects can cross the progress bar of large
|
|
|
|
// objects during incremental marking. It checks this by using Shift() during
|
|
|
|
// incremental marking.
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
|
|
|
|
2016-09-06 12:58:59 +00:00
|
|
|
const int kNumberOfObjects = kMaxRegularHeapObjectSize / kPointerSize;
|
2016-05-04 09:33:05 +00:00
|
|
|
|
|
|
|
struct Arr {
|
|
|
|
Arr(Isolate* isolate, int number_of_objects) {
|
|
|
|
root = isolate->factory()->NewFixedArray(1, TENURED);
|
|
|
|
{
|
|
|
|
// Temporary scope to avoid getting any other objects into the root set.
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Handle<FixedArray> tmp =
|
|
|
|
isolate->factory()->NewFixedArray(number_of_objects);
|
|
|
|
root->set(0, *tmp);
|
|
|
|
for (int i = 0; i < get()->length(); i++) {
|
|
|
|
tmp = isolate->factory()->NewFixedArray(100, TENURED);
|
|
|
|
get()->set(i, *tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FixedArray* get() { return FixedArray::cast(root->get(0)); }
|
|
|
|
|
|
|
|
Handle<FixedArray> root;
|
|
|
|
} arr(isolate, kNumberOfObjects);
|
|
|
|
|
|
|
|
CHECK_EQ(arr.get()->length(), kNumberOfObjects);
|
|
|
|
CHECK(heap->lo_space()->Contains(arr.get()));
|
|
|
|
LargePage* page = heap->lo_space()->FindPage(arr.get()->address());
|
|
|
|
CHECK_NOT_NULL(page);
|
|
|
|
|
|
|
|
// GC to cleanup state
|
2016-12-05 10:15:02 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2016-05-04 09:33:05 +00:00
|
|
|
MarkCompactCollector* collector = heap->mark_compact_collector();
|
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK(heap->lo_space()->Contains(arr.get()));
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsWhite(arr.get(), MarkingState::Internal(arr.get())));
|
2016-05-04 09:33:05 +00:00
|
|
|
for (int i = 0; i < arr.get()->length(); i++) {
|
2017-03-24 18:54:04 +00:00
|
|
|
HeapObject* arr_value = HeapObject::cast(arr.get()->get(i));
|
|
|
|
CHECK(ObjectMarking::IsWhite(arr_value, MarkingState::Internal(arr_value)));
|
2016-05-04 09:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start incremental marking.
|
|
|
|
IncrementalMarking* marking = heap->incremental_marking();
|
|
|
|
CHECK(marking->IsMarking() || marking->IsStopped());
|
|
|
|
if (marking->IsStopped()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2016-05-04 09:33:05 +00:00
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
|
|
|
|
// Check that we have not marked the interesting array during root scanning.
|
|
|
|
for (int i = 0; i < arr.get()->length(); i++) {
|
2017-03-24 18:54:04 +00:00
|
|
|
HeapObject* arr_value = HeapObject::cast(arr.get()->get(i));
|
|
|
|
CHECK(ObjectMarking::IsWhite(arr_value, MarkingState::Internal(arr_value)));
|
2016-05-04 09:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now we search for a state where we are in incremental marking and have
|
|
|
|
// only partially marked the large object.
|
|
|
|
while (!marking->IsComplete()) {
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(i::KB, i::IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2016-05-04 09:33:05 +00:00
|
|
|
if (page->IsFlagSet(Page::HAS_PROGRESS_BAR) && page->progress_bar() > 0) {
|
|
|
|
CHECK_NE(page->progress_bar(), arr.get()->Size());
|
|
|
|
{
|
|
|
|
// Shift by 1, effectively moving one white object across the progress
|
|
|
|
// bar, meaning that we will miss marking it.
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Handle<JSArray> js_array = isolate->factory()->NewJSArrayWithElements(
|
|
|
|
Handle<FixedArray>(arr.get()));
|
|
|
|
js_array->GetElementsAccessor()->Shift(js_array);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finish marking with bigger steps to speed up test.
|
|
|
|
while (!marking->IsComplete()) {
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(10 * i::MB, i::IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2016-05-04 09:33:05 +00:00
|
|
|
if (marking->IsReadyToOverApproximateWeakClosure()) {
|
|
|
|
marking->FinalizeIncrementally();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CHECK(marking->IsComplete());
|
|
|
|
|
|
|
|
// All objects need to be black after marking. If a white object crossed the
|
|
|
|
// progress bar, we would fail here.
|
|
|
|
for (int i = 0; i < arr.get()->length(); i++) {
|
2017-03-24 18:54:04 +00:00
|
|
|
HeapObject* arr_value = HeapObject::cast(arr.get()->get(i));
|
|
|
|
CHECK(ObjectMarking::IsBlack(arr_value, MarkingState::Internal(arr_value)));
|
2016-05-04 09:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 16:56:34 +00:00
|
|
|
TEST(Regress609761) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
|
|
|
|
|
|
|
intptr_t size_before = heap->SizeOfObjects();
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(200000);
|
|
|
|
array->Shrink(1);
|
|
|
|
intptr_t size_after = heap->SizeOfObjects();
|
|
|
|
CHECK_EQ(size_after, size_before + array->Size());
|
|
|
|
}
|
|
|
|
|
2016-05-30 13:09:28 +00:00
|
|
|
TEST(Regress615489) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-05-30 13:09:28 +00:00
|
|
|
FLAG_black_allocation = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-30 13:09:28 +00:00
|
|
|
|
|
|
|
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()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2016-05-30 13:09:28 +00:00
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
marking->StartBlackAllocationForTesting();
|
|
|
|
{
|
|
|
|
AlwaysAllocateScope always_allocate(CcTest::i_isolate());
|
|
|
|
v8::HandleScope inner(CcTest::isolate());
|
|
|
|
isolate->factory()->NewFixedArray(500, TENURED)->Size();
|
|
|
|
}
|
|
|
|
while (!marking->IsComplete()) {
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(i::MB, i::IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2016-05-30 13:09:28 +00:00
|
|
|
if (marking->IsReadyToOverApproximateWeakClosure()) {
|
|
|
|
marking->FinalizeIncrementally();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CHECK(marking->IsComplete());
|
|
|
|
intptr_t size_before = heap->SizeOfObjects();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-05-30 13:09:28 +00:00
|
|
|
intptr_t size_after = heap->SizeOfObjects();
|
|
|
|
// Live size does not increase after garbage collection.
|
|
|
|
CHECK_LE(size_after, size_before);
|
|
|
|
}
|
|
|
|
|
2016-08-16 11:59:10 +00:00
|
|
|
class StaticOneByteResource : public v8::String::ExternalOneByteStringResource {
|
|
|
|
public:
|
|
|
|
explicit StaticOneByteResource(const char* data) : data_(data) {}
|
|
|
|
|
|
|
|
~StaticOneByteResource() {}
|
|
|
|
|
|
|
|
const char* data() const { return data_; }
|
|
|
|
|
|
|
|
size_t length() const { return strlen(data_); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char* data_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(Regress631969) {
|
2016-11-18 12:55:53 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-08-16 11:59:10 +00:00
|
|
|
FLAG_manual_evacuation_candidates_selection = true;
|
|
|
|
FLAG_parallel_compaction = false;
|
2017-05-29 14:43:05 +00:00
|
|
|
FLAG_concurrent_marking = false;
|
2016-08-16 11:59:10 +00:00
|
|
|
FLAG_concurrent_sweeping = false;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
// Get the heap in clean state.
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2016-08-16 11:59:10 +00:00
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
// Allocate two strings in a fresh page and mark the page as evacuation
|
|
|
|
// candidate.
|
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
|
|
|
Handle<String> s1 = factory->NewStringFromStaticChars("123456789", TENURED);
|
|
|
|
Handle<String> s2 = factory->NewStringFromStaticChars("01234", TENURED);
|
2016-11-03 12:12:38 +00:00
|
|
|
heap::ForceEvacuationCandidate(Page::FromAddress(s1->address()));
|
2016-08-16 11:59:10 +00:00
|
|
|
|
|
|
|
heap::SimulateIncrementalMarking(heap, false);
|
|
|
|
|
|
|
|
// Allocate a cons string and promote it to a fresh page in the old space.
|
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
|
|
|
Handle<String> s3;
|
|
|
|
factory->NewConsString(s1, s2).ToHandle(&s3);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
|
|
|
CcTest::CollectGarbage(NEW_SPACE);
|
2016-08-16 11:59:10 +00:00
|
|
|
|
|
|
|
// Finish incremental marking.
|
|
|
|
IncrementalMarking* marking = heap->incremental_marking();
|
|
|
|
while (!marking->IsComplete()) {
|
2016-09-06 15:28:54 +00:00
|
|
|
marking->Step(MB, i::IncrementalMarking::NO_GC_VIA_STACK_GUARD,
|
2016-09-12 11:46:14 +00:00
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
2016-08-16 11:59:10 +00:00
|
|
|
if (marking->IsReadyToOverApproximateWeakClosure()) {
|
|
|
|
marking->FinalizeIncrementally();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
StaticOneByteResource external_string("12345678901234");
|
|
|
|
s3->MakeExternal(&external_string);
|
2016-09-07 10:02:58 +00:00
|
|
|
CcTest::CollectGarbage(OLD_SPACE);
|
2016-08-16 11:59:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-09 10:50:28 +00:00
|
|
|
TEST(LeftTrimFixedArrayInBlackArea) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-08-09 10:50:28 +00:00
|
|
|
FLAG_black_allocation = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-08-09 10:50:28 +00:00
|
|
|
|
|
|
|
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()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2016-08-09 10:50:28 +00:00
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
marking->StartBlackAllocationForTesting();
|
|
|
|
|
|
|
|
// Ensure that we allocate a new page, set up a bump pointer area, and
|
|
|
|
// perform the allocation in a black area.
|
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
|
|
|
isolate->factory()->NewFixedArray(4, TENURED);
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(50, TENURED);
|
|
|
|
CHECK(heap->old_space()->Contains(*array));
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsBlack(*array, MarkingState::Internal(*array)));
|
2016-08-09 10:50:28 +00:00
|
|
|
|
|
|
|
// Now left trim the allocated black area. A filler has to be installed
|
|
|
|
// for the trimmed area and all mark bits of the trimmed area have to be
|
|
|
|
// cleared.
|
|
|
|
FixedArrayBase* trimmed = heap->LeftTrimFixedArray(*array, 10);
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsBlack(trimmed, MarkingState::Internal(trimmed)));
|
2016-08-09 10:50:28 +00:00
|
|
|
|
|
|
|
heap::GcAndSweep(heap, OLD_SPACE);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ContinuousLeftTrimFixedArrayInBlackArea) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-08-09 10:50:28 +00:00
|
|
|
FLAG_black_allocation = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-08-09 10:50:28 +00:00
|
|
|
|
|
|
|
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()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2016-08-09 10:50:28 +00:00
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
marking->StartBlackAllocationForTesting();
|
|
|
|
|
|
|
|
// Ensure that we allocate a new page, set up a bump pointer area, and
|
|
|
|
// perform the allocation in a black area.
|
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
|
|
|
isolate->factory()->NewFixedArray(10, TENURED);
|
|
|
|
|
|
|
|
// Allocate the fixed array that will be trimmed later.
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(100, TENURED);
|
|
|
|
Address start_address = array->address();
|
|
|
|
Address end_address = start_address + array->Size();
|
|
|
|
Page* page = Page::FromAddress(start_address);
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsBlack(*array, MarkingState::Internal(*array)));
|
|
|
|
CHECK(MarkingState::Internal(page).bitmap()->AllBitsSetInRange(
|
2016-08-09 10:50:28 +00:00
|
|
|
page->AddressToMarkbitIndex(start_address),
|
|
|
|
page->AddressToMarkbitIndex(end_address)));
|
|
|
|
CHECK(heap->old_space()->Contains(*array));
|
|
|
|
|
|
|
|
FixedArrayBase* previous = *array;
|
|
|
|
FixedArrayBase* trimmed;
|
|
|
|
|
|
|
|
// First trim in one word steps.
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
|
|
trimmed = heap->LeftTrimFixedArray(previous, 1);
|
|
|
|
HeapObject* filler = HeapObject::FromAddress(previous->address());
|
|
|
|
CHECK(filler->IsFiller());
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsBlack(trimmed, MarkingState::Internal(trimmed)));
|
|
|
|
CHECK(ObjectMarking::IsBlack(previous, MarkingState::Internal(previous)));
|
2016-08-09 10:50:28 +00:00
|
|
|
previous = trimmed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then trim in two and three word steps.
|
|
|
|
for (int i = 2; i <= 3; i++) {
|
|
|
|
for (int j = 0; j < 10; j++) {
|
|
|
|
trimmed = heap->LeftTrimFixedArray(previous, i);
|
|
|
|
HeapObject* filler = HeapObject::FromAddress(previous->address());
|
|
|
|
CHECK(filler->IsFiller());
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsBlack(trimmed, MarkingState::Internal(trimmed)));
|
|
|
|
CHECK(ObjectMarking::IsBlack(previous, MarkingState::Internal(previous)));
|
2016-08-09 10:50:28 +00:00
|
|
|
previous = trimmed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
heap::GcAndSweep(heap, OLD_SPACE);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ContinuousRightTrimFixedArrayInBlackArea) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-08-09 10:50:28 +00:00
|
|
|
FLAG_black_allocation = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-08-09 10:50:28 +00:00
|
|
|
|
|
|
|
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()) {
|
2016-09-07 10:02:58 +00:00
|
|
|
heap->StartIncrementalMarking(i::Heap::kNoGCFlags,
|
|
|
|
i::GarbageCollectionReason::kTesting);
|
2016-08-09 10:50:28 +00:00
|
|
|
}
|
|
|
|
CHECK(marking->IsMarking());
|
|
|
|
marking->StartBlackAllocationForTesting();
|
|
|
|
|
|
|
|
// Ensure that we allocate a new page, set up a bump pointer area, and
|
|
|
|
// perform the allocation in a black area.
|
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
|
|
|
isolate->factory()->NewFixedArray(10, TENURED);
|
|
|
|
|
|
|
|
// Allocate the fixed array that will be trimmed later.
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(100, TENURED);
|
|
|
|
Address start_address = array->address();
|
|
|
|
Address end_address = start_address + array->Size();
|
|
|
|
Page* page = Page::FromAddress(start_address);
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsBlack(*array, MarkingState::Internal(*array)));
|
|
|
|
|
|
|
|
CHECK(MarkingState::Internal(page).bitmap()->AllBitsSetInRange(
|
2016-08-09 10:50:28 +00:00
|
|
|
page->AddressToMarkbitIndex(start_address),
|
|
|
|
page->AddressToMarkbitIndex(end_address)));
|
|
|
|
CHECK(heap->old_space()->Contains(*array));
|
|
|
|
|
|
|
|
// Trim it once by one word to make checking for white marking color uniform.
|
|
|
|
Address previous = end_address - kPointerSize;
|
2016-11-18 11:11:30 +00:00
|
|
|
heap->RightTrimFixedArray(*array, 1);
|
2016-08-09 10:50:28 +00:00
|
|
|
HeapObject* filler = HeapObject::FromAddress(previous);
|
|
|
|
CHECK(filler->IsFiller());
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsImpossible(filler, MarkingState::Internal(filler)));
|
2016-08-09 10:50:28 +00:00
|
|
|
|
|
|
|
// Trim 10 times by one, two, and three word.
|
|
|
|
for (int i = 1; i <= 3; i++) {
|
|
|
|
for (int j = 0; j < 10; j++) {
|
|
|
|
previous -= kPointerSize * i;
|
2016-11-18 11:11:30 +00:00
|
|
|
heap->RightTrimFixedArray(*array, i);
|
2016-08-09 10:50:28 +00:00
|
|
|
HeapObject* filler = HeapObject::FromAddress(previous);
|
|
|
|
CHECK(filler->IsFiller());
|
2017-03-24 18:54:04 +00:00
|
|
|
CHECK(ObjectMarking::IsWhite(filler, MarkingState::Internal(filler)));
|
2016-08-09 10:50:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
heap::GcAndSweep(heap, OLD_SPACE);
|
|
|
|
}
|
|
|
|
|
2016-06-10 13:17:10 +00:00
|
|
|
TEST(Regress618958) {
|
2017-05-29 11:06:13 +00:00
|
|
|
if (!FLAG_incremental_marking) return;
|
2016-06-10 13:17:10 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
bool isolate_is_locked = true;
|
2016-06-21 09:25:08 +00:00
|
|
|
heap->update_external_memory(100 * MB);
|
2016-06-10 13:17:10 +00:00
|
|
|
int mark_sweep_count_before = heap->ms_count();
|
|
|
|
heap->MemoryPressureNotification(MemoryPressureLevel::kCritical,
|
|
|
|
isolate_is_locked);
|
|
|
|
int mark_sweep_count_after = heap->ms_count();
|
|
|
|
int mark_sweeps_performed = mark_sweep_count_after - mark_sweep_count_before;
|
|
|
|
// The memory pressuer handler either performed two GCs or performed one and
|
|
|
|
// started incremental marking.
|
|
|
|
CHECK(mark_sweeps_performed == 2 ||
|
|
|
|
(mark_sweeps_performed == 1 &&
|
|
|
|
!heap->incremental_marking()->IsStopped()));
|
|
|
|
}
|
|
|
|
|
2016-06-29 09:36:57 +00:00
|
|
|
TEST(UncommitUnusedLargeObjectMemory) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
|
|
|
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(200000);
|
|
|
|
MemoryChunk* chunk = MemoryChunk::FromAddress(array->address());
|
|
|
|
CHECK(chunk->owner()->identity() == LO_SPACE);
|
|
|
|
|
|
|
|
intptr_t size_before = array->Size();
|
|
|
|
size_t committed_memory_before = chunk->CommittedPhysicalMemory();
|
|
|
|
|
|
|
|
array->Shrink(1);
|
|
|
|
CHECK(array->Size() < size_before);
|
|
|
|
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-06-29 09:36:57 +00:00
|
|
|
CHECK(chunk->CommittedPhysicalMemory() < committed_memory_before);
|
|
|
|
size_t shrinked_size =
|
|
|
|
RoundUp((array->address() - chunk->address()) + array->Size(),
|
|
|
|
base::OS::CommitPageSize());
|
|
|
|
CHECK_EQ(shrinked_size, chunk->CommittedPhysicalMemory());
|
|
|
|
}
|
2016-06-30 15:00:54 +00:00
|
|
|
|
|
|
|
TEST(RememberedSetRemoveRange) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
|
|
|
|
2016-07-26 15:07:51 +00:00
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(Page::kPageSize /
|
|
|
|
kPointerSize);
|
2016-06-30 15:00:54 +00:00
|
|
|
MemoryChunk* chunk = MemoryChunk::FromAddress(array->address());
|
|
|
|
CHECK(chunk->owner()->identity() == LO_SPACE);
|
|
|
|
Address start = array->address();
|
|
|
|
// Maps slot to boolean indicator of whether the slot should be in the set.
|
|
|
|
std::map<Address, bool> slots;
|
|
|
|
slots[start + 0] = true;
|
|
|
|
slots[start + kPointerSize] = true;
|
|
|
|
slots[start + Page::kPageSize - kPointerSize] = true;
|
|
|
|
slots[start + Page::kPageSize] = true;
|
|
|
|
slots[start + Page::kPageSize + kPointerSize] = true;
|
|
|
|
slots[chunk->area_end() - kPointerSize] = true;
|
|
|
|
|
|
|
|
for (auto x : slots) {
|
|
|
|
RememberedSet<OLD_TO_NEW>::Insert(chunk, x.first);
|
|
|
|
}
|
|
|
|
|
|
|
|
RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) {
|
|
|
|
CHECK(slots[addr]);
|
|
|
|
return KEEP_SLOT;
|
|
|
|
});
|
|
|
|
|
2016-10-07 09:15:45 +00:00
|
|
|
RememberedSet<OLD_TO_NEW>::RemoveRange(chunk, start, start + kPointerSize,
|
|
|
|
SlotSet::FREE_EMPTY_BUCKETS);
|
2016-06-30 15:00:54 +00:00
|
|
|
slots[start] = false;
|
|
|
|
RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) {
|
|
|
|
CHECK(slots[addr]);
|
|
|
|
return KEEP_SLOT;
|
|
|
|
});
|
|
|
|
|
|
|
|
RememberedSet<OLD_TO_NEW>::RemoveRange(chunk, start + kPointerSize,
|
2016-10-07 09:15:45 +00:00
|
|
|
start + Page::kPageSize,
|
|
|
|
SlotSet::FREE_EMPTY_BUCKETS);
|
2016-06-30 15:00:54 +00:00
|
|
|
slots[start + kPointerSize] = false;
|
|
|
|
slots[start + Page::kPageSize - kPointerSize] = false;
|
|
|
|
RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) {
|
|
|
|
CHECK(slots[addr]);
|
|
|
|
return KEEP_SLOT;
|
|
|
|
});
|
|
|
|
|
2016-10-07 09:15:45 +00:00
|
|
|
RememberedSet<OLD_TO_NEW>::RemoveRange(chunk, start,
|
|
|
|
start + Page::kPageSize + kPointerSize,
|
|
|
|
SlotSet::FREE_EMPTY_BUCKETS);
|
2016-06-30 15:00:54 +00:00
|
|
|
slots[start + Page::kPageSize] = false;
|
|
|
|
RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) {
|
|
|
|
CHECK(slots[addr]);
|
|
|
|
return KEEP_SLOT;
|
|
|
|
});
|
|
|
|
|
|
|
|
RememberedSet<OLD_TO_NEW>::RemoveRange(
|
2016-10-07 09:15:45 +00:00
|
|
|
chunk, chunk->area_end() - kPointerSize, chunk->area_end(),
|
|
|
|
SlotSet::FREE_EMPTY_BUCKETS);
|
2016-06-30 15:00:54 +00:00
|
|
|
slots[chunk->area_end() - kPointerSize] = false;
|
|
|
|
RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) {
|
|
|
|
CHECK(slots[addr]);
|
|
|
|
return KEEP_SLOT;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-06 14:06:10 +00:00
|
|
|
HEAP_TEST(Regress670675) {
|
|
|
|
if (!FLAG_incremental_marking) return;
|
2017-05-29 11:06:13 +00:00
|
|
|
FLAG_stress_incremental_marking = false;
|
2016-12-06 14:06:10 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
|
|
|
i::MarkCompactCollector* collector = heap->mark_compact_collector();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2016-12-06 14:06:10 +00:00
|
|
|
|
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
|
|
|
}
|
|
|
|
i::IncrementalMarking* marking = CcTest::heap()->incremental_marking();
|
|
|
|
if (marking->IsStopped()) {
|
|
|
|
marking->Start(i::GarbageCollectionReason::kTesting);
|
|
|
|
}
|
|
|
|
size_t array_length = Page::kPageSize / kPointerSize + 100;
|
|
|
|
size_t n = heap->OldGenerationSpaceAvailable() / array_length;
|
2016-12-13 10:25:33 +00:00
|
|
|
for (size_t i = 0; i < n + 40; i++) {
|
2016-12-06 14:06:10 +00:00
|
|
|
{
|
|
|
|
HandleScope inner_scope(isolate);
|
|
|
|
isolate->factory()->NewFixedArray(static_cast<int>(array_length));
|
|
|
|
}
|
|
|
|
if (marking->IsStopped()) break;
|
|
|
|
double deadline = heap->MonotonicallyIncreasingTimeInMs() + 1;
|
|
|
|
marking->AdvanceIncrementalMarking(
|
|
|
|
deadline, IncrementalMarking::GC_VIA_STACK_GUARD,
|
|
|
|
IncrementalMarking::FORCE_COMPLETION, StepOrigin::kV8);
|
|
|
|
}
|
|
|
|
DCHECK(marking->IsStopped());
|
|
|
|
}
|
|
|
|
|
2017-01-17 14:19:58 +00:00
|
|
|
HEAP_TEST(Regress5831) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = CcTest::i_isolate();
|
|
|
|
HandleScope handle_scope(isolate);
|
|
|
|
|
|
|
|
// Used to ensure that the first code space page remains filled.
|
|
|
|
Handle<FixedArray> array = isolate->factory()->NewFixedArray(32);
|
|
|
|
|
|
|
|
{
|
|
|
|
// Ensure that the first code space page is full.
|
|
|
|
CEntryStub stub(isolate, 1);
|
|
|
|
Handle<Code> code = stub.GetCode();
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
array = FixedArray::SetAndGrow(array, i++, code);
|
|
|
|
|
|
|
|
while (heap->code_space()->FirstPage()->Contains(code->address())) {
|
|
|
|
code = isolate->factory()->CopyCode(code);
|
|
|
|
array = FixedArray::SetAndGrow(array, i++, code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ImmovableCEntryStub : public i::CEntryStub {
|
|
|
|
public:
|
|
|
|
explicit ImmovableCEntryStub(i::Isolate* isolate)
|
|
|
|
: i::CEntryStub(isolate, 3, i::kSaveFPRegs, i::kArgvOnStack, true) {}
|
|
|
|
bool NeedsImmovableCode() override { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
ImmovableCEntryStub stub(isolate);
|
|
|
|
|
|
|
|
{
|
|
|
|
// Make sure the code object has not yet been generated.
|
|
|
|
Code* code;
|
|
|
|
CHECK(!stub.FindCodeInCache(&code));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fake a serializer run.
|
|
|
|
isolate->serializer_enabled_ = true;
|
|
|
|
|
|
|
|
// Generate the code.
|
|
|
|
Handle<Code> code = stub.GetCode();
|
|
|
|
CHECK(code->Size() <= i::kMaxRegularHeapObjectSize);
|
|
|
|
CHECK(!heap->code_space()->FirstPage()->Contains(code->address()));
|
|
|
|
|
|
|
|
// Ensure it's not in large object space.
|
|
|
|
MemoryChunk* chunk = MemoryChunk::FromAddress(code->address());
|
|
|
|
CHECK(chunk->owner()->identity() != LO_SPACE);
|
|
|
|
CHECK(chunk->NeverEvacuate());
|
|
|
|
}
|
|
|
|
|
2017-05-29 15:03:50 +00:00
|
|
|
HEAP_TEST(RegressMissingWriteBarrierInAllocate) {
|
|
|
|
if (!FLAG_incremental_marking) return;
|
|
|
|
FLAG_black_allocation = true;
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
Heap* heap = CcTest::heap();
|
|
|
|
Isolate* isolate = heap->isolate();
|
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
heap::SimulateIncrementalMarking(heap, false);
|
|
|
|
Map* map;
|
|
|
|
{
|
|
|
|
AlwaysAllocateScope always_allocate(isolate);
|
|
|
|
map = Map::cast(heap->AllocateMap(HEAP_NUMBER_TYPE, HeapNumber::kSize)
|
|
|
|
.ToObjectChecked());
|
|
|
|
}
|
|
|
|
heap->incremental_marking()->StartBlackAllocationForTesting();
|
|
|
|
Handle<HeapObject> object;
|
|
|
|
{
|
|
|
|
AlwaysAllocateScope always_allocate(isolate);
|
|
|
|
object = Handle<HeapObject>(
|
|
|
|
heap->Allocate(map, OLD_SPACE).ToObjectChecked(), isolate);
|
|
|
|
}
|
|
|
|
// The object is black. If Heap::Allocate sets the map without write-barrier,
|
|
|
|
// then the map is white and will be freed prematurely.
|
|
|
|
heap::SimulateIncrementalMarking(heap, true);
|
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
MarkCompactCollector* collector = heap->mark_compact_collector();
|
|
|
|
if (collector->sweeping_in_progress()) {
|
|
|
|
collector->EnsureSweepingCompleted();
|
|
|
|
}
|
|
|
|
CHECK(object->map()->IsMap());
|
|
|
|
}
|
|
|
|
|
2015-08-21 07:09:08 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|