blob: 8be9f4c085aa1c51e0fef8972c26e40ddc7f235c [file] [log] [blame]
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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
28#include "v8.h"
29
30#include "api.h"
v8.team.kasperl727e9952008-09-02 14:56:44 +000031#include "debug.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000032#include "execution.h"
33#include "factory.h"
34#include "macro-assembler.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000035#include "objects.h"
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000036#include "objects-visiting.h"
verwaest@chromium.org37141392012-05-31 13:27:02 +000037#include "platform.h"
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000038#include "scopeinfo.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039
kasperl@chromium.org71affb52009-05-26 05:44:31 +000040namespace v8 {
41namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042
43
44Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
45 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000046 CALL_HEAP_FUNCTION(
47 isolate(),
48 isolate()->heap()->AllocateFixedArray(size, pretenure),
49 FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050}
51
52
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000053Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
54 PretenureFlag pretenure) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000055 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000056 CALL_HEAP_FUNCTION(
57 isolate(),
58 isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure),
59 FixedArray);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000060}
61
62
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000063Handle<FixedDoubleArray> Factory::NewFixedDoubleArray(int size,
64 PretenureFlag pretenure) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000065 ASSERT(0 <= size);
66 CALL_HEAP_FUNCTION(
67 isolate(),
68 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure),
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000069 FixedDoubleArray);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000070}
71
72
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000073Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000074 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000075 CALL_HEAP_FUNCTION(isolate(),
76 StringDictionary::Allocate(at_least_space_for),
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000077 StringDictionary);
78}
79
80
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000081Handle<SeededNumberDictionary> Factory::NewSeededNumberDictionary(
82 int at_least_space_for) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000083 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000084 CALL_HEAP_FUNCTION(isolate(),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000085 SeededNumberDictionary::Allocate(at_least_space_for),
86 SeededNumberDictionary);
87}
88
89
90Handle<UnseededNumberDictionary> Factory::NewUnseededNumberDictionary(
91 int at_least_space_for) {
92 ASSERT(0 <= at_least_space_for);
93 CALL_HEAP_FUNCTION(isolate(),
94 UnseededNumberDictionary::Allocate(at_least_space_for),
95 UnseededNumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000096}
97
98
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000099Handle<ObjectHashSet> Factory::NewObjectHashSet(int at_least_space_for) {
100 ASSERT(0 <= at_least_space_for);
101 CALL_HEAP_FUNCTION(isolate(),
102 ObjectHashSet::Allocate(at_least_space_for),
103 ObjectHashSet);
104}
105
106
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000107Handle<ObjectHashTable> Factory::NewObjectHashTable(int at_least_space_for) {
108 ASSERT(0 <= at_least_space_for);
109 CALL_HEAP_FUNCTION(isolate(),
110 ObjectHashTable::Allocate(at_least_space_for),
111 ObjectHashTable);
112}
113
114
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000115Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors,
116 int slack) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000117 ASSERT(0 <= number_of_descriptors);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000118 CALL_HEAP_FUNCTION(isolate(),
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000119 DescriptorArray::Allocate(number_of_descriptors, slack),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000120 DescriptorArray);
121}
122
123
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000124Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
125 int deopt_entry_count,
126 PretenureFlag pretenure) {
127 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000128 CALL_HEAP_FUNCTION(isolate(),
129 DeoptimizationInputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000130 pretenure),
131 DeoptimizationInputData);
132}
133
134
135Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
136 int deopt_entry_count,
137 PretenureFlag pretenure) {
138 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000139 CALL_HEAP_FUNCTION(isolate(),
140 DeoptimizationOutputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000141 pretenure),
142 DeoptimizationOutputData);
143}
144
145
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000146Handle<AccessorPair> Factory::NewAccessorPair() {
147 CALL_HEAP_FUNCTION(isolate(),
148 isolate()->heap()->AllocateAccessorPair(),
149 AccessorPair);
150}
151
152
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000153Handle<TypeFeedbackInfo> Factory::NewTypeFeedbackInfo() {
154 CALL_HEAP_FUNCTION(isolate(),
155 isolate()->heap()->AllocateTypeFeedbackInfo(),
156 TypeFeedbackInfo);
157}
158
159
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000160// Symbols are created in the old generation (data space).
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000161Handle<String> Factory::LookupUtf8Symbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000162 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000163 isolate()->heap()->LookupUtf8Symbol(string),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000164 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165}
166
danno@chromium.org40cb8782011-05-25 07:58:50 +0000167// Symbols are created in the old generation (data space).
168Handle<String> Factory::LookupSymbol(Handle<String> string) {
169 CALL_HEAP_FUNCTION(isolate(),
170 isolate()->heap()->LookupSymbol(*string),
171 String);
172}
173
jkummerow@chromium.org59297c72013-01-09 16:32:23 +0000174Handle<String> Factory::LookupOneByteSymbol(Vector<const uint8_t> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000175 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000176 isolate()->heap()->LookupOneByteSymbol(string),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000177 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000178}
179
danno@chromium.org40cb8782011-05-25 07:58:50 +0000180
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000181Handle<String> Factory::LookupOneByteSymbol(Handle<SeqOneByteString> string,
danno@chromium.org40cb8782011-05-25 07:58:50 +0000182 int from,
183 int length) {
184 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000185 isolate()->heap()->LookupOneByteSymbol(string,
danno@chromium.org40cb8782011-05-25 07:58:50 +0000186 from,
187 length),
188 String);
189}
190
191
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000192Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000193 CALL_HEAP_FUNCTION(isolate(),
194 isolate()->heap()->LookupTwoByteSymbol(string),
195 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000196}
197
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000198
jkummerow@chromium.org59297c72013-01-09 16:32:23 +0000199Handle<String> Factory::NewStringFromOneByte(Vector<const uint8_t> string,
200 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000201 CALL_HEAP_FUNCTION(
202 isolate(),
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000203 isolate()->heap()->AllocateStringFromOneByte(string, pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000204 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000205}
206
207Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
208 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000209 CALL_HEAP_FUNCTION(
210 isolate(),
211 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
212 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000213}
214
215
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000216Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
217 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000218 CALL_HEAP_FUNCTION(
219 isolate(),
220 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
221 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000222}
223
224
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000225Handle<SeqOneByteString> Factory::NewRawOneByteString(int length,
ager@chromium.org04921a82011-06-27 13:21:41 +0000226 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000227 CALL_HEAP_FUNCTION(
228 isolate(),
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000229 isolate()->heap()->AllocateRawOneByteString(length, pretenure),
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000230 SeqOneByteString);
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +0000231}
232
233
ager@chromium.org04921a82011-06-27 13:21:41 +0000234Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
235 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000236 CALL_HEAP_FUNCTION(
237 isolate(),
238 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000239 SeqTwoByteString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000240}
241
242
243Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000244 Handle<String> second) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000245 CALL_HEAP_FUNCTION(isolate(),
246 isolate()->heap()->AllocateConsString(*first, *second),
247 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000248}
249
250
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000251Handle<String> Factory::NewSubString(Handle<String> str,
252 int begin,
253 int end) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000254 CALL_HEAP_FUNCTION(isolate(),
255 str->SubString(begin, end),
256 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000257}
258
259
ager@chromium.org04921a82011-06-27 13:21:41 +0000260Handle<String> Factory::NewProperSubString(Handle<String> str,
261 int begin,
262 int end) {
263 ASSERT(begin > 0 || end < str->length());
264 CALL_HEAP_FUNCTION(isolate(),
265 isolate()->heap()->AllocateSubString(*str, begin, end),
266 String);
267}
268
269
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000270Handle<String> Factory::NewExternalStringFromAscii(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000271 const ExternalAsciiString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000272 CALL_HEAP_FUNCTION(
273 isolate(),
274 isolate()->heap()->AllocateExternalStringFromAscii(resource),
275 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000276}
277
278
279Handle<String> Factory::NewExternalStringFromTwoByte(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000280 const ExternalTwoByteString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000281 CALL_HEAP_FUNCTION(
282 isolate(),
283 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
284 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000285}
286
287
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000288Handle<Context> Factory::NewNativeContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000289 CALL_HEAP_FUNCTION(
290 isolate(),
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000291 isolate()->heap()->AllocateNativeContext(),
292 Context);
293}
294
295
296Handle<Context> Factory::NewGlobalContext(Handle<JSFunction> function,
297 Handle<ScopeInfo> scope_info) {
298 CALL_HEAP_FUNCTION(
299 isolate(),
300 isolate()->heap()->AllocateGlobalContext(*function, *scope_info),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000301 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000302}
303
304
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000305Handle<Context> Factory::NewModuleContext(Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000306 CALL_HEAP_FUNCTION(
307 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000308 isolate()->heap()->AllocateModuleContext(*scope_info),
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000309 Context);
310}
311
312
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000313Handle<Context> Factory::NewFunctionContext(int length,
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000314 Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000315 CALL_HEAP_FUNCTION(
316 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000317 isolate()->heap()->AllocateFunctionContext(length, *function),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000318 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000319}
320
321
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000322Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
323 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000324 Handle<String> name,
325 Handle<Object> thrown_object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000326 CALL_HEAP_FUNCTION(
327 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000328 isolate()->heap()->AllocateCatchContext(*function,
329 *previous,
330 *name,
331 *thrown_object),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000332 Context);
333}
334
335
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000336Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
337 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000338 Handle<JSObject> extension) {
339 CALL_HEAP_FUNCTION(
340 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000341 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000342 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000343}
344
345
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000346Handle<Context> Factory::NewBlockContext(Handle<JSFunction> function,
347 Handle<Context> previous,
348 Handle<ScopeInfo> scope_info) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000349 CALL_HEAP_FUNCTION(
350 isolate(),
351 isolate()->heap()->AllocateBlockContext(*function,
352 *previous,
353 *scope_info),
354 Context);
355}
356
357
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000358Handle<Struct> Factory::NewStruct(InstanceType type) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000359 CALL_HEAP_FUNCTION(
360 isolate(),
361 isolate()->heap()->AllocateStruct(type),
362 Struct);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000363}
364
365
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +0000366Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() {
367 Handle<DeclaredAccessorInfo> info =
368 Handle<DeclaredAccessorInfo>::cast(
369 NewStruct(DECLARED_ACCESSOR_INFO_TYPE));
370 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
371 return info;
372}
373
374
375Handle<ExecutableAccessorInfo> Factory::NewExecutableAccessorInfo() {
376 Handle<ExecutableAccessorInfo> info =
377 Handle<ExecutableAccessorInfo>::cast(
378 NewStruct(EXECUTABLE_ACCESSOR_INFO_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000379 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
380 return info;
381}
382
383
384Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000385 // Generate id for this script.
386 int id;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000387 Heap* heap = isolate()->heap();
388 if (heap->last_script_id()->IsUndefined()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000389 // Script ids start from one.
390 id = 1;
391 } else {
392 // Increment id, wrap when positive smi is exhausted.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000393 id = Smi::cast(heap->last_script_id())->value();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000394 id++;
395 if (!Smi::IsValid(id)) {
396 id = 0;
397 }
398 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000399 heap->SetLastScriptId(Smi::FromInt(id));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000400
401 // Create and initialize script object.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000402 Handle<Foreign> wrapper = NewForeign(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000403 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
404 script->set_source(*source);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000405 script->set_name(heap->undefined_value());
406 script->set_id(heap->last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000407 script->set_line_offset(Smi::FromInt(0));
408 script->set_column_offset(Smi::FromInt(0));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000409 script->set_data(heap->undefined_value());
410 script->set_context_data(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000411 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
412 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000413 script->set_compilation_state(
414 Smi::FromInt(Script::COMPILATION_STATE_INITIAL));
ager@chromium.org9085a012009-05-11 19:22:57 +0000415 script->set_wrapper(*wrapper);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000416 script->set_line_ends(heap->undefined_value());
417 script->set_eval_from_shared(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000418 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000419
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000420 return script;
421}
422
423
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000424Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000425 CALL_HEAP_FUNCTION(isolate(),
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000426 isolate()->heap()->AllocateForeign(addr, pretenure),
427 Foreign);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000428}
429
430
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000431Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
432 return NewForeign((Address) desc, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000433}
434
435
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000436Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000437 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000438 CALL_HEAP_FUNCTION(
439 isolate(),
440 isolate()->heap()->AllocateByteArray(length, pretenure),
441 ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000442}
443
444
ager@chromium.org3811b432009-10-28 14:53:37 +0000445Handle<ExternalArray> Factory::NewExternalArray(int length,
446 ExternalArrayType array_type,
447 void* external_pointer,
448 PretenureFlag pretenure) {
449 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000450 CALL_HEAP_FUNCTION(
451 isolate(),
452 isolate()->heap()->AllocateExternalArray(length,
453 array_type,
454 external_pointer,
455 pretenure),
456 ExternalArray);
ager@chromium.org3811b432009-10-28 14:53:37 +0000457}
458
459
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000460Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
461 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000462 CALL_HEAP_FUNCTION(
463 isolate(),
464 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
465 JSGlobalPropertyCell);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000466}
467
468
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000469Handle<Map> Factory::NewMap(InstanceType type,
470 int instance_size,
471 ElementsKind elements_kind) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000472 CALL_HEAP_FUNCTION(
473 isolate(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000474 isolate()->heap()->AllocateMap(type, instance_size, elements_kind),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000475 Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000476}
477
478
479Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000480 CALL_HEAP_FUNCTION(
481 isolate(),
482 isolate()->heap()->AllocateFunctionPrototype(*function),
483 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000484}
485
486
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000487Handle<Map> Factory::CopyWithPreallocatedFieldDescriptors(Handle<Map> src) {
488 CALL_HEAP_FUNCTION(
489 isolate(), src->CopyWithPreallocatedFieldDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000490}
491
492
ager@chromium.org32912102009-01-16 10:38:43 +0000493Handle<Map> Factory::CopyMap(Handle<Map> src,
494 int extra_inobject_properties) {
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000495 Handle<Map> copy = CopyWithPreallocatedFieldDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000496 // Check that we do not overflow the instance size when adding the
497 // extra inobject properties.
498 int instance_size_delta = extra_inobject_properties * kPointerSize;
499 int max_instance_size_delta =
500 JSObject::kMaxInstanceSize - copy->instance_size();
501 if (instance_size_delta > max_instance_size_delta) {
502 // If the instance size overflows, we allocate as many properties
503 // as we can as inobject properties.
504 instance_size_delta = max_instance_size_delta;
505 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
506 }
507 // Adjust the map with the extra inobject properties.
508 int inobject_properties =
509 copy->inobject_properties() + extra_inobject_properties;
510 copy->set_inobject_properties(inobject_properties);
511 copy->set_unused_property_fields(inobject_properties);
512 copy->set_instance_size(copy->instance_size() + instance_size_delta);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000513 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
ager@chromium.org32912102009-01-16 10:38:43 +0000514 return copy;
515}
516
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000517
verwaest@chromium.org753aee42012-07-17 16:15:42 +0000518Handle<Map> Factory::CopyMap(Handle<Map> src) {
verwaest@chromium.orgde64f722012-08-16 15:44:54 +0000519 CALL_HEAP_FUNCTION(isolate(), src->Copy(), Map);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000520}
521
522
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000523Handle<Map> Factory::GetElementsTransitionMap(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000524 Handle<JSObject> src,
525 ElementsKind elements_kind) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000526 Isolate* i = isolate();
527 CALL_HEAP_FUNCTION(i,
528 src->GetElementsTransitionMap(i, elements_kind),
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000529 Map);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000530}
531
532
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000533Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000534 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000535}
536
537
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +0000538Handle<FixedArray> Factory::CopySizeFixedArray(Handle<FixedArray> array,
539 int new_length) {
540 CALL_HEAP_FUNCTION(isolate(), array->CopySize(new_length), FixedArray);
541}
542
543
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000544Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray(
545 Handle<FixedDoubleArray> array) {
546 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray);
547}
548
549
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000550Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
551 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000552 Handle<Map> function_map,
553 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000554 CALL_HEAP_FUNCTION(
555 isolate(),
556 isolate()->heap()->AllocateFunction(*function_map,
557 *function_info,
558 isolate()->heap()->the_hole_value(),
559 pretenure),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000560 JSFunction);
561}
562
563
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000564Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
565 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000566 Handle<Context> context,
567 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000568 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000569 function_info,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000570 function_info->is_classic_mode()
571 ? isolate()->function_map()
572 : isolate()->strict_mode_function_map(),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000573 pretenure);
574
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000575 if (function_info->ic_age() != isolate()->heap()->global_ic_age()) {
576 function_info->ResetForNewContext(isolate()->heap()->global_ic_age());
577 }
578
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000579 result->set_context(*context);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000580
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000581 int index = function_info->SearchOptimizedCodeMap(context->native_context());
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000582 if (!function_info->bound() && index < 0) {
583 int number_of_literals = function_info->num_literals();
584 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
585 if (number_of_literals > 0) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000586 // Store the native context in the literals array prefix. This
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000587 // context will be used when creating object, regexp and array
588 // literals in this function.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000589 literals->set(JSFunction::kLiteralNativeContextIndex,
590 context->native_context());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000591 }
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000592 result->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000593 }
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000594
595 if (index > 0) {
596 // Caching of optimized code enabled and optimized code found.
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000597 function_info->InstallFromOptimizedCodeMap(*result, index);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000598 return result;
599 }
600
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000601 if (V8::UseCrankshaft() &&
602 FLAG_always_opt &&
603 result->is_compiled() &&
604 !function_info->is_toplevel() &&
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000605 function_info->allows_lazy_compilation() &&
606 !function_info->optimization_disabled()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000607 result->MarkForLazyRecompilation();
608 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000609 return result;
610}
611
612
613Handle<Object> Factory::NewNumber(double value,
614 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000615 CALL_HEAP_FUNCTION(
616 isolate(),
617 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000618}
619
620
erikcorry0ad885c2011-11-21 13:51:57 +0000621Handle<Object> Factory::NewNumberFromInt(int32_t value,
622 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000623 CALL_HEAP_FUNCTION(
624 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000625 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000626}
627
628
erikcorry0ad885c2011-11-21 13:51:57 +0000629Handle<Object> Factory::NewNumberFromUint(uint32_t value,
630 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000631 CALL_HEAP_FUNCTION(
632 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000633 isolate()->heap()->NumberFromUint32(value, pretenure), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000634}
635
636
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000637Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000638 CALL_HEAP_FUNCTION(
639 isolate(),
640 isolate()->heap()->AllocateJSObjectFromMap(
641 isolate()->heap()->neander_map()),
642 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000643}
644
645
646Handle<Object> Factory::NewTypeError(const char* type,
647 Vector< Handle<Object> > args) {
648 return NewError("MakeTypeError", type, args);
649}
650
651
652Handle<Object> Factory::NewTypeError(Handle<String> message) {
653 return NewError("$TypeError", message);
654}
655
656
657Handle<Object> Factory::NewRangeError(const char* type,
658 Vector< Handle<Object> > args) {
659 return NewError("MakeRangeError", type, args);
660}
661
662
663Handle<Object> Factory::NewRangeError(Handle<String> message) {
664 return NewError("$RangeError", message);
665}
666
667
668Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
669 return NewError("MakeSyntaxError", type, args);
670}
671
672
673Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
674 return NewError("$SyntaxError", message);
675}
676
677
678Handle<Object> Factory::NewReferenceError(const char* type,
679 Vector< Handle<Object> > args) {
680 return NewError("MakeReferenceError", type, args);
681}
682
683
684Handle<Object> Factory::NewReferenceError(Handle<String> message) {
685 return NewError("$ReferenceError", message);
686}
687
688
689Handle<Object> Factory::NewError(const char* maker, const char* type,
690 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000691 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000692 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000693 for (int i = 0; i < args.length(); i++) {
694 array->set(i, *args[i]);
695 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000696 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000697 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000698 return result.EscapeFrom(&scope);
699}
700
701
702Handle<Object> Factory::NewEvalError(const char* type,
703 Vector< Handle<Object> > args) {
704 return NewError("MakeEvalError", type, args);
705}
706
707
708Handle<Object> Factory::NewError(const char* type,
709 Vector< Handle<Object> > args) {
710 return NewError("MakeError", type, args);
711}
712
713
verwaest@chromium.org37141392012-05-31 13:27:02 +0000714Handle<String> Factory::EmergencyNewError(const char* type,
715 Handle<JSArray> args) {
716 const int kBufferSize = 1000;
717 char buffer[kBufferSize];
718 size_t space = kBufferSize;
719 char* p = &buffer[0];
720
721 Vector<char> v(buffer, kBufferSize);
722 OS::StrNCpy(v, type, space);
723 space -= Min(space, strlen(type));
724 p = &buffer[kBufferSize] - space;
725
726 for (unsigned i = 0; i < ARRAY_SIZE(args); i++) {
727 if (space > 0) {
728 *p++ = ' ';
729 space--;
730 if (space > 0) {
731 MaybeObject* maybe_arg = args->GetElement(i);
732 Handle<String> arg_str(reinterpret_cast<String*>(maybe_arg));
733 const char* arg = *arg_str->ToCString();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000734 Vector<char> v2(p, static_cast<int>(space));
verwaest@chromium.org37141392012-05-31 13:27:02 +0000735 OS::StrNCpy(v2, arg, space);
736 space -= Min(space, strlen(arg));
737 p = &buffer[kBufferSize] - space;
738 }
739 }
740 }
741 if (space > 0) {
742 *p = '\0';
743 } else {
744 buffer[kBufferSize - 1] = '\0';
745 }
746 Handle<String> error_string = NewStringFromUtf8(CStrVector(buffer), TENURED);
747 return error_string;
748}
749
750
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000751Handle<Object> Factory::NewError(const char* maker,
752 const char* type,
753 Handle<JSArray> args) {
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000754 Handle<String> make_str = LookupUtf8Symbol(maker);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000755 Handle<Object> fun_obj(
ulan@chromium.org09d7ab52013-02-25 15:50:35 +0000756 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str),
757 isolate());
ager@chromium.org4af710e2009-09-15 12:20:11 +0000758 // If the builtins haven't been properly configured yet this error
759 // constructor may not have been defined. Bail out.
verwaest@chromium.org37141392012-05-31 13:27:02 +0000760 if (!fun_obj->IsJSFunction()) {
761 return EmergencyNewError(type, args);
762 }
ager@chromium.org4af710e2009-09-15 12:20:11 +0000763 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000764 Handle<Object> type_obj = LookupUtf8Symbol(type);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000765 Handle<Object> argv[] = { type_obj, args };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000766
767 // Invoke the JavaScript factory method. If an exception is thrown while
768 // running the factory method, use the exception as the result.
769 bool caught_exception;
770 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000771 isolate()->js_builtins_object(),
772 ARRAY_SIZE(argv),
773 argv,
774 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000775 return result;
776}
777
778
779Handle<Object> Factory::NewError(Handle<String> message) {
780 return NewError("$Error", message);
781}
782
783
784Handle<Object> Factory::NewError(const char* constructor,
785 Handle<String> message) {
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000786 Handle<String> constr = LookupUtf8Symbol(constructor);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000787 Handle<JSFunction> fun = Handle<JSFunction>(
788 JSFunction::cast(isolate()->js_builtins_object()->
789 GetPropertyNoExceptionThrown(*constr)));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000790 Handle<Object> argv[] = { message };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000791
792 // Invoke the JavaScript factory method. If an exception is thrown while
793 // running the factory method, use the exception as the result.
794 bool caught_exception;
795 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000796 isolate()->js_builtins_object(),
797 ARRAY_SIZE(argv),
798 argv,
799 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000800 return result;
801}
802
803
804Handle<JSFunction> Factory::NewFunction(Handle<String> name,
805 InstanceType type,
806 int instance_size,
807 Handle<Code> code,
808 bool force_initial_map) {
809 // Allocate the function
810 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000811
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000812 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000813 // the function itself.
814 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000815 function->set_code(*code);
816
817 if (force_initial_map ||
818 type != JS_OBJECT_TYPE ||
819 instance_size != JSObject::kHeaderSize) {
820 Handle<Map> initial_map = NewMap(type, instance_size);
821 Handle<JSObject> prototype = NewFunctionPrototype(function);
822 initial_map->set_prototype(*prototype);
823 function->set_initial_map(*initial_map);
824 initial_map->set_constructor(*function);
825 } else {
826 ASSERT(!function->has_initial_map());
827 ASSERT(!function->has_prototype());
828 }
829
830 return function;
831}
832
833
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000834Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
835 InstanceType type,
836 int instance_size,
837 Handle<JSObject> prototype,
838 Handle<Code> code,
839 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000840 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000841 Handle<JSFunction> function = NewFunction(name, prototype);
842
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000843 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000844 // the function itself.
845 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000846 function->set_code(*code);
847
848 if (force_initial_map ||
849 type != JS_OBJECT_TYPE ||
850 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000851 Handle<Map> initial_map = NewMap(type,
852 instance_size,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000853 GetInitialFastElementsKind());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000854 function->set_initial_map(*initial_map);
855 initial_map->set_constructor(*function);
856 }
857
858 // Set function.prototype and give the prototype a constructor
859 // property that refers to the function.
860 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000861 // Currently safe because it is only invoked from Genesis.
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000862 CHECK_NOT_EMPTY_HANDLE(isolate(),
863 JSObject::SetLocalPropertyIgnoreAttributes(
864 prototype, constructor_symbol(),
865 function, DONT_ENUM));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000866 return function;
867}
868
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000869
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000870Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
871 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000872 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000873 CLASSIC_MODE);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000874 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000875 function->set_code(*code);
876 ASSERT(!function->has_initial_map());
877 ASSERT(!function->has_prototype());
878 return function;
879}
880
881
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000882Handle<ScopeInfo> Factory::NewScopeInfo(int length) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000883 CALL_HEAP_FUNCTION(
884 isolate(),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000885 isolate()->heap()->AllocateScopeInfo(length),
886 ScopeInfo);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000887}
888
889
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +0000890Handle<JSObject> Factory::NewExternal(void* value) {
891 CALL_HEAP_FUNCTION(isolate(),
892 isolate()->heap()->AllocateExternal(value),
893 JSObject);
894}
895
896
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000897Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000898 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000899 Handle<Object> self_ref,
900 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000901 CALL_HEAP_FUNCTION(isolate(),
902 isolate()->heap()->CreateCode(
903 desc, flags, self_ref, immovable),
904 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000905}
906
907
908Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000909 CALL_HEAP_FUNCTION(isolate(),
910 isolate()->heap()->CopyCode(*code),
911 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000912}
913
914
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000915Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000916 CALL_HEAP_FUNCTION(isolate(),
917 isolate()->heap()->CopyCode(*code, reloc_info),
918 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000919}
920
921
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000922Handle<String> Factory::SymbolFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000923 CALL_HEAP_FUNCTION(isolate(),
924 isolate()->heap()->LookupSymbol(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000925}
926
927
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000928Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
929 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000930 CALL_HEAP_FUNCTION(
931 isolate(),
932 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000933}
934
935
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000936Handle<JSModule> Factory::NewJSModule(Handle<Context> context,
937 Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000938 CALL_HEAP_FUNCTION(
939 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000940 isolate()->heap()->AllocateJSModule(*context, *scope_info), JSModule);
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000941}
942
943
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000944Handle<GlobalObject> Factory::NewGlobalObject(
945 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000946 CALL_HEAP_FUNCTION(isolate(),
947 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000948 GlobalObject);
949}
950
951
952
ager@chromium.org236ad962008-09-25 09:45:57 +0000953Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000954 CALL_HEAP_FUNCTION(
955 isolate(),
956 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
957 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000958}
959
960
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000961Handle<JSArray> Factory::NewJSArray(int capacity,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000962 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000963 PretenureFlag pretenure) {
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000964 if (capacity != 0) {
965 elements_kind = GetHoleyElementsKind(elements_kind);
966 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000967 CALL_HEAP_FUNCTION(isolate(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000968 isolate()->heap()->AllocateJSArrayAndStorage(
969 elements_kind,
970 0,
971 capacity,
972 INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
973 pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000974 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000975}
976
977
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000978Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000979 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000980 PretenureFlag pretenure) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000981 CALL_HEAP_FUNCTION(
982 isolate(),
983 isolate()->heap()->AllocateJSArrayWithElements(*elements,
984 elements_kind,
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000985 elements->length(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000986 pretenure),
987 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000988}
989
990
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000991void Factory::SetElementsCapacityAndLength(Handle<JSArray> array,
992 int capacity,
993 int length) {
994 ElementsAccessor* accessor = array->GetElementsAccessor();
995 CALL_HEAP_FUNCTION_VOID(
996 isolate(),
997 accessor->SetCapacityAndLength(*array, capacity, length));
998}
999
1000
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001001void Factory::SetContent(Handle<JSArray> array,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001002 Handle<FixedArrayBase> elements) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001003 CALL_HEAP_FUNCTION_VOID(
1004 isolate(),
1005 array->SetContent(*elements));
1006}
1007
1008
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001009void Factory::EnsureCanContainHeapObjectElements(Handle<JSArray> array) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001010 CALL_HEAP_FUNCTION_VOID(
1011 isolate(),
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001012 array->EnsureCanContainHeapObjectElements());
1013}
1014
1015
1016void Factory::EnsureCanContainElements(Handle<JSArray> array,
1017 Handle<FixedArrayBase> elements,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001018 uint32_t length,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001019 EnsureElementsMode mode) {
1020 CALL_HEAP_FUNCTION_VOID(
1021 isolate(),
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001022 array->EnsureCanContainElements(*elements, length, mode));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001023}
1024
1025
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00001026Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
1027 Handle<Object> prototype) {
1028 CALL_HEAP_FUNCTION(
1029 isolate(),
1030 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
1031 JSProxy);
1032}
1033
1034
lrn@chromium.org34e60782011-09-15 07:25:40 +00001035void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001036 CALL_HEAP_FUNCTION_VOID(
1037 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +00001038 isolate()->heap()->ReinitializeJSReceiver(
1039 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
1040}
1041
1042
1043void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1044 CALL_HEAP_FUNCTION_VOID(
1045 isolate(),
1046 isolate()->heap()->ReinitializeJSReceiver(
1047 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001048}
1049
1050
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00001051void Factory::SetIdentityHash(Handle<JSObject> object, Smi* hash) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001052 CALL_HEAP_FUNCTION_VOID(
1053 isolate(),
1054 object->SetIdentityHash(hash, ALLOW_CREATION));
1055}
1056
1057
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001058Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001059 Handle<String> name,
1060 int number_of_literals,
1061 Handle<Code> code,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001062 Handle<ScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001063 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
1064 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001065 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001066 int literals_array_size = number_of_literals;
1067 // If the function contains object, regexp or array literals,
1068 // allocate extra space for a literals array prefix containing the
1069 // context.
1070 if (number_of_literals > 0) {
1071 literals_array_size += JSFunction::kLiteralsPrefixSize;
1072 }
1073 shared->set_num_literals(literals_array_size);
1074 return shared;
1075}
1076
1077
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001078Handle<JSMessageObject> Factory::NewJSMessageObject(
1079 Handle<String> type,
1080 Handle<JSArray> arguments,
1081 int start_position,
1082 int end_position,
1083 Handle<Object> script,
1084 Handle<Object> stack_trace,
1085 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001086 CALL_HEAP_FUNCTION(isolate(),
1087 isolate()->heap()->AllocateJSMessageObject(*type,
1088 *arguments,
1089 start_position,
1090 end_position,
1091 *script,
1092 *stack_trace,
1093 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001094 JSMessageObject);
1095}
1096
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001097Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001098 CALL_HEAP_FUNCTION(isolate(),
1099 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001100 SharedFunctionInfo);
1101}
1102
1103
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001104Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001105 CALL_HEAP_FUNCTION(isolate(),
1106 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001107}
1108
1109
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001110Handle<String> Factory::Uint32ToString(uint32_t value) {
1111 CALL_HEAP_FUNCTION(isolate(),
1112 isolate()->heap()->Uint32ToString(value), String);
1113}
1114
1115
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001116Handle<SeededNumberDictionary> Factory::DictionaryAtNumberPut(
1117 Handle<SeededNumberDictionary> dictionary,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001118 uint32_t key,
1119 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001120 CALL_HEAP_FUNCTION(isolate(),
1121 dictionary->AtNumberPut(key, *value),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001122 SeededNumberDictionary);
1123}
1124
1125
1126Handle<UnseededNumberDictionary> Factory::DictionaryAtNumberPut(
1127 Handle<UnseededNumberDictionary> dictionary,
1128 uint32_t key,
1129 Handle<Object> value) {
1130 CALL_HEAP_FUNCTION(isolate(),
1131 dictionary->AtNumberPut(key, *value),
1132 UnseededNumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001133}
1134
1135
1136Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1137 Handle<Object> prototype) {
1138 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001139 CALL_HEAP_FUNCTION(
1140 isolate(),
1141 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1142 *function_share,
1143 *prototype),
1144 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001145}
1146
1147
1148Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1149 Handle<Object> prototype) {
1150 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001151 fun->set_context(isolate()->context()->native_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001152 return fun;
1153}
1154
1155
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001156Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001157 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001158 LanguageMode language_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001159 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001160 Handle<Map> map = (language_mode == CLASSIC_MODE)
1161 ? isolate()->function_without_prototype_map()
1162 : isolate()->strict_mode_function_without_prototype_map();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001163 CALL_HEAP_FUNCTION(isolate(),
1164 isolate()->heap()->AllocateFunction(
1165 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001166 *function_share,
1167 *the_hole_value()),
1168 JSFunction);
1169}
1170
1171
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001172Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1173 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001174 LanguageMode language_mode) {
1175 Handle<JSFunction> fun =
1176 NewFunctionWithoutPrototypeHelper(name, language_mode);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001177 fun->set_context(isolate()->context()->native_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001178 return fun;
1179}
1180
1181
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001182Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001183 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001184}
1185
1186
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001187Handle<Object> Factory::ToObject(Handle<Object> object,
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001188 Handle<Context> native_context) {
1189 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*native_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001190}
1191
1192
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001193#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001194Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1195 // Get the original code of the function.
1196 Handle<Code> code(shared->code());
1197
1198 // Create a copy of the code before allocating the debug info object to avoid
1199 // allocation while setting up the debug info object.
1200 Handle<Code> original_code(*Factory::CopyCode(code));
1201
1202 // Allocate initial fixed array for active break points before allocating the
1203 // debug info object to avoid allocation while setting up the debug info
1204 // object.
1205 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001206 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001207
1208 // Create and set up the debug info object. Debug info contains function, a
1209 // copy of the original code, the executing code and initial fixed array for
1210 // active break points.
1211 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001212 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001213 debug_info->set_shared(*shared);
1214 debug_info->set_original_code(*original_code);
1215 debug_info->set_code(*code);
1216 debug_info->set_break_points(*break_points);
1217
1218 // Link debug info to function.
1219 shared->set_debug_info(*debug_info);
1220
1221 return debug_info;
1222}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001223#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001224
1225
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001226Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1227 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001228 CALL_HEAP_FUNCTION(
1229 isolate(),
1230 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001231}
1232
1233
1234Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001235 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001236 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1237 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001238
kasper.lund212ac232008-07-16 07:07:30 +00001239 int internal_field_count = 0;
1240 if (!obj->instance_template()->IsUndefined()) {
1241 Handle<ObjectTemplateInfo> instance_template =
1242 Handle<ObjectTemplateInfo>(
1243 ObjectTemplateInfo::cast(obj->instance_template()));
1244 internal_field_count =
1245 Smi::cast(instance_template->internal_field_count())->value();
1246 }
1247
1248 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001249 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001250 switch (instance_type) {
1251 case JavaScriptObject:
1252 type = JS_OBJECT_TYPE;
1253 instance_size += JSObject::kHeaderSize;
1254 break;
1255 case InnerGlobalObject:
1256 type = JS_GLOBAL_OBJECT_TYPE;
1257 instance_size += JSGlobalObject::kSize;
1258 break;
1259 case OuterGlobalObject:
1260 type = JS_GLOBAL_PROXY_TYPE;
1261 instance_size += JSGlobalProxy::kSize;
1262 break;
1263 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001264 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001265 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001266 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001267
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001268 Handle<JSFunction> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001269 NewFunction(Factory::empty_symbol(),
1270 type,
1271 instance_size,
1272 code,
1273 true);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00001274
1275 // Set length.
1276 result->shared()->set_length(obj->length());
1277
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001278 // Set class name.
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001279 Handle<Object> class_name = Handle<Object>(obj->class_name(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001280 if (class_name->IsString()) {
1281 result->shared()->set_instance_class_name(*class_name);
1282 result->shared()->set_name(*class_name);
1283 }
1284
1285 Handle<Map> map = Handle<Map>(result->initial_map());
1286
1287 // Mark as undetectable if needed.
1288 if (obj->undetectable()) {
1289 map->set_is_undetectable();
1290 }
1291
1292 // Mark as hidden for the __proto__ accessor if needed.
1293 if (obj->hidden_prototype()) {
1294 map->set_is_hidden_prototype();
1295 }
1296
1297 // Mark as needs_access_check if needed.
1298 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001299 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001300 }
1301
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001302 // Set interceptor information in the map.
1303 if (!obj->named_property_handler()->IsUndefined()) {
1304 map->set_has_named_interceptor();
1305 }
1306 if (!obj->indexed_property_handler()->IsUndefined()) {
1307 map->set_has_indexed_interceptor();
1308 }
1309
1310 // Set instance call-as-function information in the map.
1311 if (!obj->instance_call_handler()->IsUndefined()) {
1312 map->set_has_instance_call_handler();
1313 }
1314
1315 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001316 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001317 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001318
1319 // Recursively copy parent templates' accessors, 'data' may be modified.
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001320 int max_number_of_additional_properties = 0;
1321 FunctionTemplateInfo* info = *obj;
1322 while (true) {
1323 Object* props = info->property_accessors();
1324 if (!props->IsUndefined()) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001325 Handle<Object> props_handle(props, isolate());
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001326 NeanderArray props_array(props_handle);
1327 max_number_of_additional_properties += props_array.length();
1328 }
1329 Object* parent = info->parent_template();
1330 if (parent->IsUndefined()) break;
1331 info = FunctionTemplateInfo::cast(parent);
1332 }
1333
1334 Map::EnsureDescriptorSlack(map, max_number_of_additional_properties);
1335
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001336 while (true) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001337 Handle<Object> props = Handle<Object>(obj->property_accessors(),
1338 isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001339 if (!props->IsUndefined()) {
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001340 Map::AppendCallbackDescriptors(map, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001341 }
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001342 Handle<Object> parent = Handle<Object>(obj->parent_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001343 if (parent->IsUndefined()) break;
1344 obj = Handle<FunctionTemplateInfo>::cast(parent);
1345 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001346
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001347 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001348 return result;
1349}
1350
1351
ager@chromium.org236ad962008-09-25 09:45:57 +00001352Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001353 CALL_HEAP_FUNCTION(isolate(),
1354 MapCache::Allocate(at_least_space_for), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001355}
1356
1357
lrn@chromium.org303ada72010-10-27 09:33:13 +00001358MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1359 FixedArray* keys,
1360 Map* map) {
1361 Object* result;
1362 { MaybeObject* maybe_result =
1363 MapCache::cast(context->map_cache())->Put(keys, map);
1364 if (!maybe_result->ToObject(&result)) return maybe_result;
1365 }
1366 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001367 return result;
1368}
1369
1370
1371Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1372 Handle<FixedArray> keys,
1373 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001374 CALL_HEAP_FUNCTION(isolate(),
1375 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001376}
1377
1378
1379Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1380 Handle<FixedArray> keys) {
1381 if (context->map_cache()->IsUndefined()) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001382 // Allocate the new map cache for the native context.
ager@chromium.org236ad962008-09-25 09:45:57 +00001383 Handle<MapCache> new_cache = NewMapCache(24);
1384 context->set_map_cache(*new_cache);
1385 }
ager@chromium.org32912102009-01-16 10:38:43 +00001386 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001387 Handle<MapCache> cache =
1388 Handle<MapCache>(MapCache::cast(context->map_cache()));
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001389 Handle<Object> result = Handle<Object>(cache->Lookup(*keys), isolate());
ager@chromium.org236ad962008-09-25 09:45:57 +00001390 if (result->IsMap()) return Handle<Map>::cast(result);
1391 // Create a new map and add it to the cache.
1392 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001393 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1394 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001395 AddToMapCache(context, keys, map);
1396 return Handle<Map>(map);
1397}
1398
1399
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001400void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1401 JSRegExp::Type type,
1402 Handle<String> source,
1403 JSRegExp::Flags flags,
1404 Handle<Object> data) {
1405 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1406
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001407 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1408 store->set(JSRegExp::kSourceIndex, *source);
1409 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1410 store->set(JSRegExp::kAtomPatternIndex, *data);
1411 regexp->set_data(*store);
1412}
1413
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001414void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1415 JSRegExp::Type type,
1416 Handle<String> source,
1417 JSRegExp::Flags flags,
1418 int capture_count) {
1419 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001420 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001421 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1422 store->set(JSRegExp::kSourceIndex, *source);
1423 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001424 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1425 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1426 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1427 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001428 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1429 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1430 Smi::FromInt(capture_count));
1431 regexp->set_data(*store);
1432}
1433
1434
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001435
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001436void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1437 Handle<JSObject> instance,
1438 bool* pending_exception) {
1439 // Configure the instance by adding the properties specified by the
1440 // instance template.
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001441 Handle<Object> instance_template(desc->instance_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001442 if (!instance_template->IsUndefined()) {
1443 Execution::ConfigureInstance(instance,
1444 instance_template,
1445 pending_exception);
1446 } else {
1447 *pending_exception = false;
1448 }
1449}
1450
1451
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001452Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1453 Heap* h = isolate()->heap();
1454 if (name->Equals(h->undefined_symbol())) return undefined_value();
1455 if (name->Equals(h->nan_symbol())) return nan_value();
1456 if (name->Equals(h->infinity_symbol())) return infinity_value();
1457 return Handle<Object>::null();
1458}
1459
1460
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001461Handle<Object> Factory::ToBoolean(bool value) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001462 return value ? true_value() : false_value();
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001463}
1464
1465
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001466} } // namespace v8::internal