blob: 1a275e9609a4a4e159633212cdd37fd46fc7e54f [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(
756 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000757 // If the builtins haven't been properly configured yet this error
758 // constructor may not have been defined. Bail out.
verwaest@chromium.org37141392012-05-31 13:27:02 +0000759 if (!fun_obj->IsJSFunction()) {
760 return EmergencyNewError(type, args);
761 }
ager@chromium.org4af710e2009-09-15 12:20:11 +0000762 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000763 Handle<Object> type_obj = LookupUtf8Symbol(type);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000764 Handle<Object> argv[] = { type_obj, args };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000765
766 // Invoke the JavaScript factory method. If an exception is thrown while
767 // running the factory method, use the exception as the result.
768 bool caught_exception;
769 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000770 isolate()->js_builtins_object(),
771 ARRAY_SIZE(argv),
772 argv,
773 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000774 return result;
775}
776
777
778Handle<Object> Factory::NewError(Handle<String> message) {
779 return NewError("$Error", message);
780}
781
782
783Handle<Object> Factory::NewError(const char* constructor,
784 Handle<String> message) {
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000785 Handle<String> constr = LookupUtf8Symbol(constructor);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000786 Handle<JSFunction> fun = Handle<JSFunction>(
787 JSFunction::cast(isolate()->js_builtins_object()->
788 GetPropertyNoExceptionThrown(*constr)));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000789 Handle<Object> argv[] = { message };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000790
791 // Invoke the JavaScript factory method. If an exception is thrown while
792 // running the factory method, use the exception as the result.
793 bool caught_exception;
794 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000795 isolate()->js_builtins_object(),
796 ARRAY_SIZE(argv),
797 argv,
798 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000799 return result;
800}
801
802
803Handle<JSFunction> Factory::NewFunction(Handle<String> name,
804 InstanceType type,
805 int instance_size,
806 Handle<Code> code,
807 bool force_initial_map) {
808 // Allocate the function
809 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000810
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000811 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000812 // the function itself.
813 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000814 function->set_code(*code);
815
816 if (force_initial_map ||
817 type != JS_OBJECT_TYPE ||
818 instance_size != JSObject::kHeaderSize) {
819 Handle<Map> initial_map = NewMap(type, instance_size);
820 Handle<JSObject> prototype = NewFunctionPrototype(function);
821 initial_map->set_prototype(*prototype);
822 function->set_initial_map(*initial_map);
823 initial_map->set_constructor(*function);
824 } else {
825 ASSERT(!function->has_initial_map());
826 ASSERT(!function->has_prototype());
827 }
828
829 return function;
830}
831
832
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000833Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
834 InstanceType type,
835 int instance_size,
836 Handle<JSObject> prototype,
837 Handle<Code> code,
838 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000839 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000840 Handle<JSFunction> function = NewFunction(name, prototype);
841
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000842 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000843 // the function itself.
844 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000845 function->set_code(*code);
846
847 if (force_initial_map ||
848 type != JS_OBJECT_TYPE ||
849 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000850 Handle<Map> initial_map = NewMap(type,
851 instance_size,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000852 GetInitialFastElementsKind());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000853 function->set_initial_map(*initial_map);
854 initial_map->set_constructor(*function);
855 }
856
857 // Set function.prototype and give the prototype a constructor
858 // property that refers to the function.
859 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000860 // Currently safe because it is only invoked from Genesis.
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000861 CHECK_NOT_EMPTY_HANDLE(isolate(),
862 JSObject::SetLocalPropertyIgnoreAttributes(
863 prototype, constructor_symbol(),
864 function, DONT_ENUM));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000865 return function;
866}
867
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000868
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000869Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
870 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000871 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000872 CLASSIC_MODE);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000873 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000874 function->set_code(*code);
875 ASSERT(!function->has_initial_map());
876 ASSERT(!function->has_prototype());
877 return function;
878}
879
880
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000881Handle<ScopeInfo> Factory::NewScopeInfo(int length) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000882 CALL_HEAP_FUNCTION(
883 isolate(),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000884 isolate()->heap()->AllocateScopeInfo(length),
885 ScopeInfo);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000886}
887
888
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +0000889Handle<JSObject> Factory::NewExternal(void* value) {
890 CALL_HEAP_FUNCTION(isolate(),
891 isolate()->heap()->AllocateExternal(value),
892 JSObject);
893}
894
895
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000896Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000897 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000898 Handle<Object> self_ref,
899 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000900 CALL_HEAP_FUNCTION(isolate(),
901 isolate()->heap()->CreateCode(
902 desc, flags, self_ref, immovable),
903 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904}
905
906
907Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000908 CALL_HEAP_FUNCTION(isolate(),
909 isolate()->heap()->CopyCode(*code),
910 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000911}
912
913
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000914Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000915 CALL_HEAP_FUNCTION(isolate(),
916 isolate()->heap()->CopyCode(*code, reloc_info),
917 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000918}
919
920
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000921Handle<String> Factory::SymbolFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000922 CALL_HEAP_FUNCTION(isolate(),
923 isolate()->heap()->LookupSymbol(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000924}
925
926
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000927Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
928 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000929 CALL_HEAP_FUNCTION(
930 isolate(),
931 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000932}
933
934
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000935Handle<JSModule> Factory::NewJSModule(Handle<Context> context,
936 Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000937 CALL_HEAP_FUNCTION(
938 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000939 isolate()->heap()->AllocateJSModule(*context, *scope_info), JSModule);
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000940}
941
942
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000943Handle<GlobalObject> Factory::NewGlobalObject(
944 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000945 CALL_HEAP_FUNCTION(isolate(),
946 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000947 GlobalObject);
948}
949
950
951
ager@chromium.org236ad962008-09-25 09:45:57 +0000952Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000953 CALL_HEAP_FUNCTION(
954 isolate(),
955 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
956 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000957}
958
959
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000960Handle<JSArray> Factory::NewJSArray(int capacity,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000961 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000962 PretenureFlag pretenure) {
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000963 if (capacity != 0) {
964 elements_kind = GetHoleyElementsKind(elements_kind);
965 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000966 CALL_HEAP_FUNCTION(isolate(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000967 isolate()->heap()->AllocateJSArrayAndStorage(
968 elements_kind,
969 0,
970 capacity,
971 INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
972 pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000973 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000974}
975
976
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000977Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000978 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000979 PretenureFlag pretenure) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000980 CALL_HEAP_FUNCTION(
981 isolate(),
982 isolate()->heap()->AllocateJSArrayWithElements(*elements,
983 elements_kind,
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000984 elements->length(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000985 pretenure),
986 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000987}
988
989
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000990void Factory::SetElementsCapacityAndLength(Handle<JSArray> array,
991 int capacity,
992 int length) {
993 ElementsAccessor* accessor = array->GetElementsAccessor();
994 CALL_HEAP_FUNCTION_VOID(
995 isolate(),
996 accessor->SetCapacityAndLength(*array, capacity, length));
997}
998
999
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001000void Factory::SetContent(Handle<JSArray> array,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001001 Handle<FixedArrayBase> elements) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001002 CALL_HEAP_FUNCTION_VOID(
1003 isolate(),
1004 array->SetContent(*elements));
1005}
1006
1007
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001008void Factory::EnsureCanContainHeapObjectElements(Handle<JSArray> array) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001009 CALL_HEAP_FUNCTION_VOID(
1010 isolate(),
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001011 array->EnsureCanContainHeapObjectElements());
1012}
1013
1014
1015void Factory::EnsureCanContainElements(Handle<JSArray> array,
1016 Handle<FixedArrayBase> elements,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001017 uint32_t length,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001018 EnsureElementsMode mode) {
1019 CALL_HEAP_FUNCTION_VOID(
1020 isolate(),
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001021 array->EnsureCanContainElements(*elements, length, mode));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001022}
1023
1024
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00001025Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
1026 Handle<Object> prototype) {
1027 CALL_HEAP_FUNCTION(
1028 isolate(),
1029 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
1030 JSProxy);
1031}
1032
1033
lrn@chromium.org34e60782011-09-15 07:25:40 +00001034void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001035 CALL_HEAP_FUNCTION_VOID(
1036 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +00001037 isolate()->heap()->ReinitializeJSReceiver(
1038 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
1039}
1040
1041
1042void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1043 CALL_HEAP_FUNCTION_VOID(
1044 isolate(),
1045 isolate()->heap()->ReinitializeJSReceiver(
1046 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001047}
1048
1049
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00001050void Factory::SetIdentityHash(Handle<JSObject> object, Smi* hash) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001051 CALL_HEAP_FUNCTION_VOID(
1052 isolate(),
1053 object->SetIdentityHash(hash, ALLOW_CREATION));
1054}
1055
1056
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001057Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001058 Handle<String> name,
1059 int number_of_literals,
1060 Handle<Code> code,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001061 Handle<ScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001062 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
1063 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001064 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001065 int literals_array_size = number_of_literals;
1066 // If the function contains object, regexp or array literals,
1067 // allocate extra space for a literals array prefix containing the
1068 // context.
1069 if (number_of_literals > 0) {
1070 literals_array_size += JSFunction::kLiteralsPrefixSize;
1071 }
1072 shared->set_num_literals(literals_array_size);
1073 return shared;
1074}
1075
1076
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001077Handle<JSMessageObject> Factory::NewJSMessageObject(
1078 Handle<String> type,
1079 Handle<JSArray> arguments,
1080 int start_position,
1081 int end_position,
1082 Handle<Object> script,
1083 Handle<Object> stack_trace,
1084 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001085 CALL_HEAP_FUNCTION(isolate(),
1086 isolate()->heap()->AllocateJSMessageObject(*type,
1087 *arguments,
1088 start_position,
1089 end_position,
1090 *script,
1091 *stack_trace,
1092 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001093 JSMessageObject);
1094}
1095
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001096Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001097 CALL_HEAP_FUNCTION(isolate(),
1098 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001099 SharedFunctionInfo);
1100}
1101
1102
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001103Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001104 CALL_HEAP_FUNCTION(isolate(),
1105 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001106}
1107
1108
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001109Handle<String> Factory::Uint32ToString(uint32_t value) {
1110 CALL_HEAP_FUNCTION(isolate(),
1111 isolate()->heap()->Uint32ToString(value), String);
1112}
1113
1114
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001115Handle<SeededNumberDictionary> Factory::DictionaryAtNumberPut(
1116 Handle<SeededNumberDictionary> dictionary,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001117 uint32_t key,
1118 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001119 CALL_HEAP_FUNCTION(isolate(),
1120 dictionary->AtNumberPut(key, *value),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001121 SeededNumberDictionary);
1122}
1123
1124
1125Handle<UnseededNumberDictionary> Factory::DictionaryAtNumberPut(
1126 Handle<UnseededNumberDictionary> dictionary,
1127 uint32_t key,
1128 Handle<Object> value) {
1129 CALL_HEAP_FUNCTION(isolate(),
1130 dictionary->AtNumberPut(key, *value),
1131 UnseededNumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001132}
1133
1134
1135Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1136 Handle<Object> prototype) {
1137 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001138 CALL_HEAP_FUNCTION(
1139 isolate(),
1140 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1141 *function_share,
1142 *prototype),
1143 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001144}
1145
1146
1147Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1148 Handle<Object> prototype) {
1149 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001150 fun->set_context(isolate()->context()->native_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001151 return fun;
1152}
1153
1154
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001155Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001156 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001157 LanguageMode language_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001158 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001159 Handle<Map> map = (language_mode == CLASSIC_MODE)
1160 ? isolate()->function_without_prototype_map()
1161 : isolate()->strict_mode_function_without_prototype_map();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001162 CALL_HEAP_FUNCTION(isolate(),
1163 isolate()->heap()->AllocateFunction(
1164 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001165 *function_share,
1166 *the_hole_value()),
1167 JSFunction);
1168}
1169
1170
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001171Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1172 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001173 LanguageMode language_mode) {
1174 Handle<JSFunction> fun =
1175 NewFunctionWithoutPrototypeHelper(name, language_mode);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001176 fun->set_context(isolate()->context()->native_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001177 return fun;
1178}
1179
1180
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001181Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001182 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001183}
1184
1185
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001186Handle<Object> Factory::ToObject(Handle<Object> object,
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001187 Handle<Context> native_context) {
1188 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*native_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001189}
1190
1191
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001192#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001193Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1194 // Get the original code of the function.
1195 Handle<Code> code(shared->code());
1196
1197 // Create a copy of the code before allocating the debug info object to avoid
1198 // allocation while setting up the debug info object.
1199 Handle<Code> original_code(*Factory::CopyCode(code));
1200
1201 // Allocate initial fixed array for active break points before allocating the
1202 // debug info object to avoid allocation while setting up the debug info
1203 // object.
1204 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001205 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001206
1207 // Create and set up the debug info object. Debug info contains function, a
1208 // copy of the original code, the executing code and initial fixed array for
1209 // active break points.
1210 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001211 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001212 debug_info->set_shared(*shared);
1213 debug_info->set_original_code(*original_code);
1214 debug_info->set_code(*code);
1215 debug_info->set_break_points(*break_points);
1216
1217 // Link debug info to function.
1218 shared->set_debug_info(*debug_info);
1219
1220 return debug_info;
1221}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001222#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001223
1224
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001225Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1226 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001227 CALL_HEAP_FUNCTION(
1228 isolate(),
1229 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001230}
1231
1232
1233Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001234 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001235 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1236 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001237
kasper.lund212ac232008-07-16 07:07:30 +00001238 int internal_field_count = 0;
1239 if (!obj->instance_template()->IsUndefined()) {
1240 Handle<ObjectTemplateInfo> instance_template =
1241 Handle<ObjectTemplateInfo>(
1242 ObjectTemplateInfo::cast(obj->instance_template()));
1243 internal_field_count =
1244 Smi::cast(instance_template->internal_field_count())->value();
1245 }
1246
1247 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001248 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001249 switch (instance_type) {
1250 case JavaScriptObject:
1251 type = JS_OBJECT_TYPE;
1252 instance_size += JSObject::kHeaderSize;
1253 break;
1254 case InnerGlobalObject:
1255 type = JS_GLOBAL_OBJECT_TYPE;
1256 instance_size += JSGlobalObject::kSize;
1257 break;
1258 case OuterGlobalObject:
1259 type = JS_GLOBAL_PROXY_TYPE;
1260 instance_size += JSGlobalProxy::kSize;
1261 break;
1262 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001263 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001264 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001265 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001266
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001267 Handle<JSFunction> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001268 NewFunction(Factory::empty_symbol(),
1269 type,
1270 instance_size,
1271 code,
1272 true);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00001273
1274 // Set length.
1275 result->shared()->set_length(obj->length());
1276
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001277 // Set class name.
1278 Handle<Object> class_name = Handle<Object>(obj->class_name());
1279 if (class_name->IsString()) {
1280 result->shared()->set_instance_class_name(*class_name);
1281 result->shared()->set_name(*class_name);
1282 }
1283
1284 Handle<Map> map = Handle<Map>(result->initial_map());
1285
1286 // Mark as undetectable if needed.
1287 if (obj->undetectable()) {
1288 map->set_is_undetectable();
1289 }
1290
1291 // Mark as hidden for the __proto__ accessor if needed.
1292 if (obj->hidden_prototype()) {
1293 map->set_is_hidden_prototype();
1294 }
1295
1296 // Mark as needs_access_check if needed.
1297 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001298 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001299 }
1300
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001301 // Set interceptor information in the map.
1302 if (!obj->named_property_handler()->IsUndefined()) {
1303 map->set_has_named_interceptor();
1304 }
1305 if (!obj->indexed_property_handler()->IsUndefined()) {
1306 map->set_has_indexed_interceptor();
1307 }
1308
1309 // Set instance call-as-function information in the map.
1310 if (!obj->instance_call_handler()->IsUndefined()) {
1311 map->set_has_instance_call_handler();
1312 }
1313
1314 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001315 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001316 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001317
1318 // Recursively copy parent templates' accessors, 'data' may be modified.
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001319 int max_number_of_additional_properties = 0;
1320 FunctionTemplateInfo* info = *obj;
1321 while (true) {
1322 Object* props = info->property_accessors();
1323 if (!props->IsUndefined()) {
1324 Handle<Object> props_handle(props);
1325 NeanderArray props_array(props_handle);
1326 max_number_of_additional_properties += props_array.length();
1327 }
1328 Object* parent = info->parent_template();
1329 if (parent->IsUndefined()) break;
1330 info = FunctionTemplateInfo::cast(parent);
1331 }
1332
1333 Map::EnsureDescriptorSlack(map, max_number_of_additional_properties);
1334
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001335 while (true) {
1336 Handle<Object> props = Handle<Object>(obj->property_accessors());
1337 if (!props->IsUndefined()) {
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001338 Map::AppendCallbackDescriptors(map, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001339 }
1340 Handle<Object> parent = Handle<Object>(obj->parent_template());
1341 if (parent->IsUndefined()) break;
1342 obj = Handle<FunctionTemplateInfo>::cast(parent);
1343 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001344
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001345 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001346 return result;
1347}
1348
1349
ager@chromium.org236ad962008-09-25 09:45:57 +00001350Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001351 CALL_HEAP_FUNCTION(isolate(),
1352 MapCache::Allocate(at_least_space_for), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001353}
1354
1355
lrn@chromium.org303ada72010-10-27 09:33:13 +00001356MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1357 FixedArray* keys,
1358 Map* map) {
1359 Object* result;
1360 { MaybeObject* maybe_result =
1361 MapCache::cast(context->map_cache())->Put(keys, map);
1362 if (!maybe_result->ToObject(&result)) return maybe_result;
1363 }
1364 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001365 return result;
1366}
1367
1368
1369Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1370 Handle<FixedArray> keys,
1371 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001372 CALL_HEAP_FUNCTION(isolate(),
1373 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001374}
1375
1376
1377Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1378 Handle<FixedArray> keys) {
1379 if (context->map_cache()->IsUndefined()) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001380 // Allocate the new map cache for the native context.
ager@chromium.org236ad962008-09-25 09:45:57 +00001381 Handle<MapCache> new_cache = NewMapCache(24);
1382 context->set_map_cache(*new_cache);
1383 }
ager@chromium.org32912102009-01-16 10:38:43 +00001384 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001385 Handle<MapCache> cache =
1386 Handle<MapCache>(MapCache::cast(context->map_cache()));
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001387 Handle<Object> result = Handle<Object>(cache->Lookup(*keys), isolate());
ager@chromium.org236ad962008-09-25 09:45:57 +00001388 if (result->IsMap()) return Handle<Map>::cast(result);
1389 // Create a new map and add it to the cache.
1390 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001391 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1392 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001393 AddToMapCache(context, keys, map);
1394 return Handle<Map>(map);
1395}
1396
1397
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001398void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1399 JSRegExp::Type type,
1400 Handle<String> source,
1401 JSRegExp::Flags flags,
1402 Handle<Object> data) {
1403 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1404
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001405 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1406 store->set(JSRegExp::kSourceIndex, *source);
1407 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1408 store->set(JSRegExp::kAtomPatternIndex, *data);
1409 regexp->set_data(*store);
1410}
1411
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001412void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1413 JSRegExp::Type type,
1414 Handle<String> source,
1415 JSRegExp::Flags flags,
1416 int capture_count) {
1417 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001418 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001419 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1420 store->set(JSRegExp::kSourceIndex, *source);
1421 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001422 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1423 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1424 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1425 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001426 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1427 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1428 Smi::FromInt(capture_count));
1429 regexp->set_data(*store);
1430}
1431
1432
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001433
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001434void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1435 Handle<JSObject> instance,
1436 bool* pending_exception) {
1437 // Configure the instance by adding the properties specified by the
1438 // instance template.
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001439 Handle<Object> instance_template(desc->instance_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001440 if (!instance_template->IsUndefined()) {
1441 Execution::ConfigureInstance(instance,
1442 instance_template,
1443 pending_exception);
1444 } else {
1445 *pending_exception = false;
1446 }
1447}
1448
1449
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001450Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1451 Heap* h = isolate()->heap();
1452 if (name->Equals(h->undefined_symbol())) return undefined_value();
1453 if (name->Equals(h->nan_symbol())) return nan_value();
1454 if (name->Equals(h->infinity_symbol())) return infinity_value();
1455 return Handle<Object>::null();
1456}
1457
1458
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001459Handle<Object> Factory::ToBoolean(bool value) {
1460 return Handle<Object>(value
1461 ? isolate()->heap()->true_value()
1462 : isolate()->heap()->false_value());
1463}
1464
1465
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001466} } // namespace v8::internal