blob: 4520c20b4e0d8d4eb550ad0e15c690fd6f6e17df [file] [log] [blame]
yangguo@chromium.org304cc332012-07-24 07:59:48 +00001// Copyright 2012 the V8 project authors. All rights reserved.
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
machenbach@chromium.org196eb602014-06-04 00:06:13 +000028#include "src/v8.h"
29#include "src/accessors.h"
30#include "src/api.h"
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000031
machenbach@chromium.org196eb602014-06-04 00:06:13 +000032#include "test/cctest/cctest.h"
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000033
34
35using namespace v8::internal;
36
37
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000038static AllocationResult AllocateAfterFailures() {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000039 static int attempts = 0;
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000040
41 if (++attempts < 3) return AllocationResult::Retry();
rossberg@chromium.org34849642014-04-29 16:30:47 +000042 TestHeap* heap = CcTest::test_heap();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000043
44 // New space.
jkummerow@chromium.org5323a9c2012-12-10 19:00:50 +000045 SimulateFullSpace(heap->new_space());
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000046 heap->AllocateByteArray(100).ToObjectChecked();
47 heap->AllocateFixedArray(100, NOT_TENURED).ToObjectChecked();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000048
49 // Make sure we can allocate through optimized allocation functions
50 // for specific kinds.
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000051 heap->AllocateFixedArray(100).ToObjectChecked();
52 heap->AllocateHeapNumber(0.42).ToObjectChecked();
53 heap->AllocateArgumentsObject(Smi::FromInt(87), 10).ToObjectChecked();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000054 Object* object = heap->AllocateJSObject(
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000055 *CcTest::i_isolate()->object_function()).ToObjectChecked();
56 heap->CopyJSObject(JSObject::cast(object)).ToObjectChecked();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000057
58 // Old data space.
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000059 SimulateFullSpace(heap->old_data_space());
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000060 heap->AllocateByteArray(100, TENURED).ToObjectChecked();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000061
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000062 // Old pointer space.
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000063 SimulateFullSpace(heap->old_pointer_space());
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000064 heap->AllocateFixedArray(10000, TENURED).ToObjectChecked();
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000065
66 // Large object space.
67 static const int kLargeObjectSpaceFillerLength = 300000;
68 static const int kLargeObjectSpaceFillerSize = FixedArray::SizeFor(
69 kLargeObjectSpaceFillerLength);
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000070 ASSERT(kLargeObjectSpaceFillerSize > heap->old_pointer_space()->AreaSize());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000071 while (heap->OldGenerationSpaceAvailable() > kLargeObjectSpaceFillerSize) {
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000072 heap->AllocateFixedArray(
73 kLargeObjectSpaceFillerLength, TENURED).ToObjectChecked();
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000074 }
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000075 heap->AllocateFixedArray(
76 kLargeObjectSpaceFillerLength, TENURED).ToObjectChecked();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000077
78 // Map space.
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000079 SimulateFullSpace(heap->map_space());
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000080 int instance_size = JSObject::kHeaderSize;
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000081 heap->AllocateMap(JS_OBJECT_TYPE, instance_size).ToObjectChecked();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000082
83 // Test that we can allocate in old pointer space and code space.
jkummerow@chromium.org5323a9c2012-12-10 19:00:50 +000084 SimulateFullSpace(heap->code_space());
machenbach@chromium.orga86d4162014-05-01 00:05:11 +000085 heap->AllocateFixedArray(100, TENURED).ToObjectChecked();
86 heap->CopyCode(CcTest::i_isolate()->builtins()->builtin(
87 Builtins::kIllegal)).ToObjectChecked();
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000088
89 // Return success.
90 return Smi::FromInt(42);
91}
92
ager@chromium.org870a0b62008-11-04 11:43:05 +000093
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000094static Handle<Object> Test() {
machenbach@chromium.org528ce022013-09-23 14:09:36 +000095 CALL_HEAP_FUNCTION(CcTest::i_isolate(), AllocateAfterFailures(), Object);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000096}
97
98
ager@chromium.org870a0b62008-11-04 11:43:05 +000099TEST(StressHandles) {
machenbach@chromium.org528ce022013-09-23 14:09:36 +0000100 v8::HandleScope scope(CcTest::isolate());
101 v8::Handle<v8::Context> env = v8::Context::New(CcTest::isolate());
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000102 env->Enter();
103 Handle<Object> o = Test();
104 CHECK(o->IsSmi() && Smi::cast(*o)->value() == 42);
105 env->Exit();
106}
ager@chromium.org870a0b62008-11-04 11:43:05 +0000107
108
rossberg@chromium.org34849642014-04-29 16:30:47 +0000109void TestGetter(
110 v8::Local<v8::String> name,
111 const v8::PropertyCallbackInfo<v8::Value>& info) {
112 i::Isolate* isolate = reinterpret_cast<i::Isolate*>(info.GetIsolate());
113 HandleScope scope(isolate);
114 info.GetReturnValue().Set(v8::Utils::ToLocal(Test()));
ager@chromium.org870a0b62008-11-04 11:43:05 +0000115}
116
117
rossberg@chromium.org34849642014-04-29 16:30:47 +0000118void TestSetter(
119 v8::Local<v8::String> name,
120 v8::Local<v8::Value> value,
121 const v8::PropertyCallbackInfo<void>& info) {
122 UNREACHABLE();
123}
124
125
126Handle<AccessorInfo> TestAccessorInfo(
127 Isolate* isolate, PropertyAttributes attributes) {
128 Handle<String> name = isolate->factory()->NewStringFromStaticAscii("get");
129 return Accessors::MakeAccessor(isolate, name, &TestGetter, &TestSetter,
130 attributes);
131}
ager@chromium.org870a0b62008-11-04 11:43:05 +0000132
133
134TEST(StressJS) {
machenbach@chromium.org528ce022013-09-23 14:09:36 +0000135 Isolate* isolate = CcTest::i_isolate();
verwaest@chromium.orgd4be0f02013-06-05 13:39:03 +0000136 Factory* factory = isolate->factory();
machenbach@chromium.org528ce022013-09-23 14:09:36 +0000137 v8::HandleScope scope(CcTest::isolate());
138 v8::Handle<v8::Context> env = v8::Context::New(CcTest::isolate());
ager@chromium.org870a0b62008-11-04 11:43:05 +0000139 env->Enter();
machenbach@chromium.org3c3c8d72014-05-12 00:05:07 +0000140 Handle<JSFunction> function = factory->NewFunction(
141 factory->function_string());
ager@chromium.org870a0b62008-11-04 11:43:05 +0000142 // Force the creation of an initial map and set the code to
143 // something empty.
verwaest@chromium.orgd4be0f02013-06-05 13:39:03 +0000144 factory->NewJSObject(function);
machenbach@chromium.org528ce022013-09-23 14:09:36 +0000145 function->ReplaceCode(CcTest::i_isolate()->builtins()->builtin(
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000146 Builtins::kEmptyFunction));
ager@chromium.org870a0b62008-11-04 11:43:05 +0000147 // Patch the map to have an accessor for "get".
148 Handle<Map> map(function->initial_map());
149 Handle<DescriptorArray> instance_descriptors(map->instance_descriptors());
yangguo@chromium.org304cc332012-07-24 07:59:48 +0000150 ASSERT(instance_descriptors->IsEmpty());
151
rossberg@chromium.org34849642014-04-29 16:30:47 +0000152 PropertyAttributes attrs = static_cast<PropertyAttributes>(0);
153 Handle<AccessorInfo> foreign = TestAccessorInfo(isolate, attrs);
machenbach@chromium.org2ebef182014-04-14 00:05:03 +0000154 Map::EnsureDescriptorSlack(map, 1);
yangguo@chromium.org304cc332012-07-24 07:59:48 +0000155
rossberg@chromium.org34849642014-04-29 16:30:47 +0000156 CallbacksDescriptor d(Handle<Name>(Name::cast(foreign->name())),
157 foreign, attrs);
machenbach@chromium.org2ebef182014-04-14 00:05:03 +0000158 map->AppendDescriptor(&d);
yangguo@chromium.org304cc332012-07-24 07:59:48 +0000159
ager@chromium.org870a0b62008-11-04 11:43:05 +0000160 // Add the Foo constructor the global object.
machenbach@chromium.orgf9841892013-11-25 12:01:13 +0000161 env->Global()->Set(v8::String::NewFromUtf8(CcTest::isolate(), "Foo"),
162 v8::Utils::ToLocal(function));
ager@chromium.org870a0b62008-11-04 11:43:05 +0000163 // Call the accessor through JavaScript.
machenbach@chromium.orgf9841892013-11-25 12:01:13 +0000164 v8::Handle<v8::Value> result = v8::Script::Compile(
165 v8::String::NewFromUtf8(CcTest::isolate(), "(new Foo).get"))->Run();
ager@chromium.org870a0b62008-11-04 11:43:05 +0000166 CHECK_EQ(42, result->Int32Value());
167 env->Exit();
168}
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000169
170
171// CodeRange test.
172// Tests memory management in a CodeRange by allocating and freeing blocks,
173// using a pseudorandom generator to choose block sizes geometrically
174// distributed between 2 * Page::kPageSize and 2^5 + 1 * Page::kPageSize.
175// Ensure that the freed chunks are collected and reused by allocating (in
176// total) more than the size of the CodeRange.
177
178// This pseudorandom generator does not need to be particularly good.
179// Use the lower half of the V8::Random() generator.
180unsigned int Pseudorandom() {
181 static uint32_t lo = 2345;
182 lo = 18273 * (lo & 0xFFFF) + (lo >> 16); // Provably not 0.
183 return lo & 0xFFFF;
184}
185
186
187// Plain old data class. Represents a block of allocated memory.
188class Block {
189 public:
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000190 Block(Address base_arg, int size_arg)
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000191 : base(base_arg), size(size_arg) {}
192
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000193 Address base;
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000194 int size;
195};
196
197
198TEST(CodeRange) {
bmeurer@chromium.org70ec1a22014-06-16 11:20:10 +0000199 const size_t code_range_size = 32*MB;
jkummerow@chromium.org2c9426b2013-09-05 16:31:13 +0000200 CcTest::InitializeVM();
201 CodeRange code_range(reinterpret_cast<Isolate*>(CcTest::isolate()));
202 code_range.SetUp(code_range_size);
bmeurer@chromium.org70ec1a22014-06-16 11:20:10 +0000203 size_t current_allocated = 0;
204 size_t total_allocated = 0;
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000205 List<Block> blocks(1000);
206
207 while (total_allocated < 5 * code_range_size) {
208 if (current_allocated < code_range_size / 10) {
209 // Allocate a block.
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +0000210 // Geometrically distributed sizes, greater than
machenbach@chromium.orgef9a2b92014-01-24 01:05:19 +0000211 // Page::kMaxRegularHeapObjectSize (which is greater than code page area).
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000212 // TODO(gc): instead of using 3 use some contant based on code_range_size
213 // kMaxHeapObjectSize.
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +0000214 size_t requested =
machenbach@chromium.orgef9a2b92014-01-24 01:05:19 +0000215 (Page::kMaxRegularHeapObjectSize << (Pseudorandom() % 3)) +
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +0000216 Pseudorandom() % 5000 + 1;
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000217 size_t allocated = 0;
jkummerow@chromium.org2c9426b2013-09-05 16:31:13 +0000218 Address base = code_range.AllocateRawMemory(requested,
219 requested,
220 &allocated);
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000221 CHECK(base != NULL);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000222 blocks.Add(Block(base, static_cast<int>(allocated)));
223 current_allocated += static_cast<int>(allocated);
224 total_allocated += static_cast<int>(allocated);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000225 } else {
226 // Free a block.
227 int index = Pseudorandom() % blocks.length();
jkummerow@chromium.org2c9426b2013-09-05 16:31:13 +0000228 code_range.FreeRawMemory(blocks[index].base, blocks[index].size);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000229 current_allocated -= blocks[index].size;
230 if (index < blocks.length() - 1) {
231 blocks[index] = blocks.RemoveLast();
232 } else {
233 blocks.RemoveLast();
234 }
235 }
236 }
237
jkummerow@chromium.org2c9426b2013-09-05 16:31:13 +0000238 code_range.TearDown();
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000239}