2012-07-19 14:45:19 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2008-10-30 09:15:58 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#include "v8.h"
|
2008-10-30 14:16:02 +00:00
|
|
|
#include "accessors.h"
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
#include "cctest.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace v8::internal;
|
|
|
|
|
|
|
|
|
2010-10-25 15:22:03 +00:00
|
|
|
static MaybeObject* AllocateAfterFailures() {
|
2008-10-30 09:15:58 +00:00
|
|
|
static int attempts = 0;
|
2010-10-18 12:58:56 +00:00
|
|
|
if (++attempts < 3) return Failure::RetryAfterGC();
|
2013-09-19 09:46:15 +00:00
|
|
|
Heap* heap = CcTest::heap();
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
// New space.
|
2012-12-10 15:14:20 +00:00
|
|
|
SimulateFullSpace(heap->new_space());
|
2011-03-18 20:35:07 +00:00
|
|
|
CHECK(!heap->AllocateByteArray(100)->IsFailure());
|
|
|
|
CHECK(!heap->AllocateFixedArray(100, NOT_TENURED)->IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
// Make sure we can allocate through optimized allocation functions
|
|
|
|
// for specific kinds.
|
2011-03-18 20:35:07 +00:00
|
|
|
CHECK(!heap->AllocateFixedArray(100)->IsFailure());
|
|
|
|
CHECK(!heap->AllocateHeapNumber(0.42)->IsFailure());
|
|
|
|
CHECK(!heap->AllocateArgumentsObject(Smi::FromInt(87), 10)->IsFailure());
|
|
|
|
Object* object = heap->AllocateJSObject(
|
2013-09-19 09:17:13 +00:00
|
|
|
*CcTest::i_isolate()->object_function())->ToObjectChecked();
|
2011-03-18 20:35:07 +00:00
|
|
|
CHECK(!heap->CopyJSObject(JSObject::cast(object))->IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
// Old data space.
|
2012-04-12 10:06:32 +00:00
|
|
|
SimulateFullSpace(heap->old_data_space());
|
2012-11-21 10:01:05 +00:00
|
|
|
CHECK(!heap->AllocateRawOneByteString(100, TENURED)->IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
|
2011-09-19 18:36:47 +00:00
|
|
|
// Old pointer space.
|
2012-04-12 10:06:32 +00:00
|
|
|
SimulateFullSpace(heap->old_pointer_space());
|
|
|
|
CHECK(!heap->AllocateFixedArray(10000, TENURED)->IsFailure());
|
2011-09-19 18:36:47 +00:00
|
|
|
|
2008-10-30 09:15:58 +00:00
|
|
|
// Large object space.
|
2011-09-19 18:36:47 +00:00
|
|
|
static const int kLargeObjectSpaceFillerLength = 300000;
|
|
|
|
static const int kLargeObjectSpaceFillerSize = FixedArray::SizeFor(
|
|
|
|
kLargeObjectSpaceFillerLength);
|
2012-02-23 12:11:24 +00:00
|
|
|
ASSERT(kLargeObjectSpaceFillerSize > heap->old_pointer_space()->AreaSize());
|
2011-09-19 18:36:47 +00:00
|
|
|
while (heap->OldGenerationSpaceAvailable() > kLargeObjectSpaceFillerSize) {
|
|
|
|
CHECK(!heap->AllocateFixedArray(kLargeObjectSpaceFillerLength, TENURED)->
|
|
|
|
IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
}
|
2011-09-19 18:36:47 +00:00
|
|
|
CHECK(!heap->AllocateFixedArray(kLargeObjectSpaceFillerLength, TENURED)->
|
|
|
|
IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
// Map space.
|
2012-04-12 10:06:32 +00:00
|
|
|
SimulateFullSpace(heap->map_space());
|
2008-10-30 09:15:58 +00:00
|
|
|
int instance_size = JSObject::kHeaderSize;
|
2012-04-12 10:06:32 +00:00
|
|
|
CHECK(!heap->AllocateMap(JS_OBJECT_TYPE, instance_size)->IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
// Test that we can allocate in old pointer space and code space.
|
2012-12-10 15:14:20 +00:00
|
|
|
SimulateFullSpace(heap->code_space());
|
2011-03-18 20:35:07 +00:00
|
|
|
CHECK(!heap->AllocateFixedArray(100, TENURED)->IsFailure());
|
2013-09-19 09:17:13 +00:00
|
|
|
CHECK(!heap->CopyCode(CcTest::i_isolate()->builtins()->builtin(
|
2011-03-23 13:40:07 +00:00
|
|
|
Builtins::kIllegal))->IsFailure());
|
2008-10-30 09:15:58 +00:00
|
|
|
|
|
|
|
// Return success.
|
|
|
|
return Smi::FromInt(42);
|
|
|
|
}
|
|
|
|
|
2008-10-30 14:16:02 +00:00
|
|
|
|
2008-10-30 09:15:58 +00:00
|
|
|
static Handle<Object> Test() {
|
2013-09-19 09:17:13 +00:00
|
|
|
CALL_HEAP_FUNCTION(CcTest::i_isolate(), AllocateAfterFailures(), Object);
|
2008-10-30 09:15:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-30 14:16:02 +00:00
|
|
|
TEST(StressHandles) {
|
2013-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Handle<v8::Context> env = v8::Context::New(CcTest::isolate());
|
2008-10-30 09:15:58 +00:00
|
|
|
env->Enter();
|
|
|
|
Handle<Object> o = Test();
|
|
|
|
CHECK(o->IsSmi() && Smi::cast(*o)->value() == 42);
|
|
|
|
env->Exit();
|
|
|
|
}
|
2008-10-30 14:16:02 +00:00
|
|
|
|
|
|
|
|
2013-09-02 09:25:20 +00:00
|
|
|
static MaybeObject* TestAccessorGet(Isolate* isolate, Object* object, void*) {
|
2008-10-30 14:16:02 +00:00
|
|
|
return AllocateAfterFailures();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const AccessorDescriptor kDescriptor = {
|
|
|
|
TestAccessorGet,
|
|
|
|
0,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
TEST(StressJS) {
|
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-09-19 08:54:58 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Handle<v8::Context> env = v8::Context::New(CcTest::isolate());
|
2008-10-30 14:16:02 +00:00
|
|
|
env->Enter();
|
|
|
|
Handle<JSFunction> function =
|
2013-06-04 10:30:05 +00:00
|
|
|
factory->NewFunction(factory->function_string(), factory->null_value());
|
2008-10-30 14:16:02 +00:00
|
|
|
// Force the creation of an initial map and set the code to
|
|
|
|
// something empty.
|
2013-06-04 10:30:05 +00:00
|
|
|
factory->NewJSObject(function);
|
2013-09-19 09:17:13 +00:00
|
|
|
function->ReplaceCode(CcTest::i_isolate()->builtins()->builtin(
|
2011-03-23 13:40:07 +00:00
|
|
|
Builtins::kEmptyFunction));
|
2008-10-30 14:16:02 +00:00
|
|
|
// Patch the map to have an accessor for "get".
|
|
|
|
Handle<Map> map(function->initial_map());
|
|
|
|
Handle<DescriptorArray> instance_descriptors(map->instance_descriptors());
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<Foreign> foreign = factory->NewForeign(&kDescriptor);
|
2012-07-18 14:00:58 +00:00
|
|
|
Handle<String> name =
|
2013-06-04 10:30:05 +00:00
|
|
|
factory->NewStringFromAscii(Vector<const char>("get", 3));
|
2012-07-18 14:00:58 +00:00
|
|
|
ASSERT(instance_descriptors->IsEmpty());
|
|
|
|
|
2013-06-04 10:30:05 +00:00
|
|
|
Handle<DescriptorArray> new_descriptors = factory->NewDescriptorArray(0, 1);
|
2012-07-18 14:00:58 +00:00
|
|
|
|
|
|
|
v8::internal::DescriptorArray::WhitenessWitness witness(*new_descriptors);
|
2012-10-17 13:04:49 +00:00
|
|
|
map->set_instance_descriptors(*new_descriptors);
|
2012-07-18 14:00:58 +00:00
|
|
|
|
|
|
|
CallbacksDescriptor d(*name,
|
|
|
|
*foreign,
|
2013-05-07 13:09:23 +00:00
|
|
|
static_cast<PropertyAttributes>(0));
|
2012-07-19 14:45:19 +00:00
|
|
|
map->AppendDescriptor(&d, witness);
|
2012-07-18 14:00:58 +00:00
|
|
|
|
2008-10-30 14:16:02 +00:00
|
|
|
// Add the Foo constructor the global object.
|
|
|
|
env->Global()->Set(v8::String::New("Foo"), v8::Utils::ToLocal(function));
|
|
|
|
// Call the accessor through JavaScript.
|
|
|
|
v8::Handle<v8::Value> result =
|
|
|
|
v8::Script::Compile(v8::String::New("(new Foo).get"))->Run();
|
|
|
|
CHECK_EQ(42, result->Int32Value());
|
|
|
|
env->Exit();
|
|
|
|
}
|
2009-10-05 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
// CodeRange test.
|
|
|
|
// Tests memory management in a CodeRange by allocating and freeing blocks,
|
|
|
|
// using a pseudorandom generator to choose block sizes geometrically
|
|
|
|
// distributed between 2 * Page::kPageSize and 2^5 + 1 * Page::kPageSize.
|
|
|
|
// Ensure that the freed chunks are collected and reused by allocating (in
|
|
|
|
// total) more than the size of the CodeRange.
|
|
|
|
|
|
|
|
// This pseudorandom generator does not need to be particularly good.
|
|
|
|
// Use the lower half of the V8::Random() generator.
|
|
|
|
unsigned int Pseudorandom() {
|
|
|
|
static uint32_t lo = 2345;
|
|
|
|
lo = 18273 * (lo & 0xFFFF) + (lo >> 16); // Provably not 0.
|
|
|
|
return lo & 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Plain old data class. Represents a block of allocated memory.
|
|
|
|
class Block {
|
|
|
|
public:
|
2011-09-19 18:36:47 +00:00
|
|
|
Block(Address base_arg, int size_arg)
|
2009-10-05 11:16:25 +00:00
|
|
|
: base(base_arg), size(size_arg) {}
|
|
|
|
|
2011-09-19 18:36:47 +00:00
|
|
|
Address base;
|
2009-10-05 11:16:25 +00:00
|
|
|
int size;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
TEST(CodeRange) {
|
2011-09-19 18:36:47 +00:00
|
|
|
const int code_range_size = 32*MB;
|
2013-09-05 08:17:57 +00:00
|
|
|
CcTest::InitializeVM();
|
|
|
|
CodeRange code_range(reinterpret_cast<Isolate*>(CcTest::isolate()));
|
|
|
|
code_range.SetUp(code_range_size);
|
2009-10-05 11:16:25 +00:00
|
|
|
int current_allocated = 0;
|
|
|
|
int total_allocated = 0;
|
|
|
|
List<Block> blocks(1000);
|
|
|
|
|
|
|
|
while (total_allocated < 5 * code_range_size) {
|
|
|
|
if (current_allocated < code_range_size / 10) {
|
|
|
|
// Allocate a block.
|
2012-02-23 12:11:24 +00:00
|
|
|
// Geometrically distributed sizes, greater than
|
|
|
|
// Page::kMaxNonCodeHeapObjectSize (which is greater than code page area).
|
2011-09-19 18:36:47 +00:00
|
|
|
// TODO(gc): instead of using 3 use some contant based on code_range_size
|
|
|
|
// kMaxHeapObjectSize.
|
2012-02-23 12:11:24 +00:00
|
|
|
size_t requested =
|
|
|
|
(Page::kMaxNonCodeHeapObjectSize << (Pseudorandom() % 3)) +
|
|
|
|
Pseudorandom() % 5000 + 1;
|
2009-10-05 11:16:25 +00:00
|
|
|
size_t allocated = 0;
|
2013-09-05 08:17:57 +00:00
|
|
|
Address base = code_range.AllocateRawMemory(requested,
|
|
|
|
requested,
|
|
|
|
&allocated);
|
2011-03-30 17:16:36 +00:00
|
|
|
CHECK(base != NULL);
|
2009-11-11 09:50:06 +00:00
|
|
|
blocks.Add(Block(base, static_cast<int>(allocated)));
|
|
|
|
current_allocated += static_cast<int>(allocated);
|
|
|
|
total_allocated += static_cast<int>(allocated);
|
2009-10-05 11:16:25 +00:00
|
|
|
} else {
|
|
|
|
// Free a block.
|
|
|
|
int index = Pseudorandom() % blocks.length();
|
2013-09-05 08:17:57 +00:00
|
|
|
code_range.FreeRawMemory(blocks[index].base, blocks[index].size);
|
2009-10-05 11:16:25 +00:00
|
|
|
current_allocated -= blocks[index].size;
|
|
|
|
if (index < blocks.length() - 1) {
|
|
|
|
blocks[index] = blocks.RemoveLast();
|
|
|
|
} else {
|
|
|
|
blocks.RemoveLast();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 08:17:57 +00:00
|
|
|
code_range.TearDown();
|
2009-10-05 11:16:25 +00:00
|
|
|
}
|