blob: ee5c37bf081a406cc803df1a9c50a5f556fa3d6c [file] [log] [blame]
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001// Copyright 2011 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"
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000037#include "scopeinfo.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000038
kasperl@chromium.org71affb52009-05-26 05:44:31 +000039namespace v8 {
40namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041
42
43Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
44 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000045 CALL_HEAP_FUNCTION(
46 isolate(),
47 isolate()->heap()->AllocateFixedArray(size, pretenure),
48 FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000049}
50
51
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000052Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
53 PretenureFlag pretenure) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000054 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000055 CALL_HEAP_FUNCTION(
56 isolate(),
57 isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure),
58 FixedArray);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000059}
60
61
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000062Handle<FixedArray> Factory::NewFixedDoubleArray(int size,
63 PretenureFlag pretenure) {
64 ASSERT(0 <= size);
65 CALL_HEAP_FUNCTION(
66 isolate(),
67 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure),
68 FixedArray);
69}
70
71
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000072Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000073 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000074 CALL_HEAP_FUNCTION(isolate(),
75 StringDictionary::Allocate(at_least_space_for),
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000076 StringDictionary);
77}
78
79
80Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
81 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000082 CALL_HEAP_FUNCTION(isolate(),
83 NumberDictionary::Allocate(at_least_space_for),
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000084 NumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000085}
86
87
vegorov@chromium.org7943d462011-08-01 11:41:52 +000088Handle<ObjectHashTable> Factory::NewObjectHashTable(int at_least_space_for) {
89 ASSERT(0 <= at_least_space_for);
90 CALL_HEAP_FUNCTION(isolate(),
91 ObjectHashTable::Allocate(at_least_space_for),
92 ObjectHashTable);
93}
94
95
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000096Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
97 ASSERT(0 <= number_of_descriptors);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000098 CALL_HEAP_FUNCTION(isolate(),
99 DescriptorArray::Allocate(number_of_descriptors),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000100 DescriptorArray);
101}
102
103
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000104Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
105 int deopt_entry_count,
106 PretenureFlag pretenure) {
107 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000108 CALL_HEAP_FUNCTION(isolate(),
109 DeoptimizationInputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000110 pretenure),
111 DeoptimizationInputData);
112}
113
114
115Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
116 int deopt_entry_count,
117 PretenureFlag pretenure) {
118 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000119 CALL_HEAP_FUNCTION(isolate(),
120 DeoptimizationOutputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000121 pretenure),
122 DeoptimizationOutputData);
123}
124
125
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000126// Symbols are created in the old generation (data space).
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000127Handle<String> Factory::LookupSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000128 CALL_HEAP_FUNCTION(isolate(),
129 isolate()->heap()->LookupSymbol(string),
130 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131}
132
danno@chromium.org40cb8782011-05-25 07:58:50 +0000133// Symbols are created in the old generation (data space).
134Handle<String> Factory::LookupSymbol(Handle<String> string) {
135 CALL_HEAP_FUNCTION(isolate(),
136 isolate()->heap()->LookupSymbol(*string),
137 String);
138}
139
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000140Handle<String> Factory::LookupAsciiSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000141 CALL_HEAP_FUNCTION(isolate(),
142 isolate()->heap()->LookupAsciiSymbol(string),
143 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000144}
145
danno@chromium.org40cb8782011-05-25 07:58:50 +0000146
147Handle<String> Factory::LookupAsciiSymbol(Handle<SeqAsciiString> string,
148 int from,
149 int length) {
150 CALL_HEAP_FUNCTION(isolate(),
151 isolate()->heap()->LookupAsciiSymbol(string,
152 from,
153 length),
154 String);
155}
156
157
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000158Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000159 CALL_HEAP_FUNCTION(isolate(),
160 isolate()->heap()->LookupTwoByteSymbol(string),
161 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000162}
163
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000164
165Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
166 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000167 CALL_HEAP_FUNCTION(
168 isolate(),
169 isolate()->heap()->AllocateStringFromAscii(string, pretenure),
170 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000171}
172
173Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
174 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000175 CALL_HEAP_FUNCTION(
176 isolate(),
177 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
178 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000179}
180
181
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000182Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
183 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000184 CALL_HEAP_FUNCTION(
185 isolate(),
186 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
187 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000188}
189
190
ager@chromium.org04921a82011-06-27 13:21:41 +0000191Handle<SeqAsciiString> Factory::NewRawAsciiString(int length,
192 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000193 CALL_HEAP_FUNCTION(
194 isolate(),
195 isolate()->heap()->AllocateRawAsciiString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000196 SeqAsciiString);
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +0000197}
198
199
ager@chromium.org04921a82011-06-27 13:21:41 +0000200Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
201 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000202 CALL_HEAP_FUNCTION(
203 isolate(),
204 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000205 SeqTwoByteString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000206}
207
208
209Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000210 Handle<String> second) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000211 CALL_HEAP_FUNCTION(isolate(),
212 isolate()->heap()->AllocateConsString(*first, *second),
213 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000214}
215
216
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000217Handle<String> Factory::NewSubString(Handle<String> str,
218 int begin,
219 int end) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000220 CALL_HEAP_FUNCTION(isolate(),
221 str->SubString(begin, end),
222 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000223}
224
225
ager@chromium.org04921a82011-06-27 13:21:41 +0000226Handle<String> Factory::NewProperSubString(Handle<String> str,
227 int begin,
228 int end) {
229 ASSERT(begin > 0 || end < str->length());
230 CALL_HEAP_FUNCTION(isolate(),
231 isolate()->heap()->AllocateSubString(*str, begin, end),
232 String);
233}
234
235
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000236Handle<String> Factory::NewExternalStringFromAscii(
237 ExternalAsciiString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000238 CALL_HEAP_FUNCTION(
239 isolate(),
240 isolate()->heap()->AllocateExternalStringFromAscii(resource),
241 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000242}
243
244
245Handle<String> Factory::NewExternalStringFromTwoByte(
246 ExternalTwoByteString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000247 CALL_HEAP_FUNCTION(
248 isolate(),
249 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
250 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000251}
252
253
254Handle<Context> Factory::NewGlobalContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000255 CALL_HEAP_FUNCTION(
256 isolate(),
257 isolate()->heap()->AllocateGlobalContext(),
258 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000259}
260
261
262Handle<Context> Factory::NewFunctionContext(int length,
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000263 Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000264 CALL_HEAP_FUNCTION(
265 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000266 isolate()->heap()->AllocateFunctionContext(length, *function),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000267 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000268}
269
270
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000271Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
272 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000273 Handle<String> name,
274 Handle<Object> thrown_object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000275 CALL_HEAP_FUNCTION(
276 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000277 isolate()->heap()->AllocateCatchContext(*function,
278 *previous,
279 *name,
280 *thrown_object),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000281 Context);
282}
283
284
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000285Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
286 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000287 Handle<JSObject> extension) {
288 CALL_HEAP_FUNCTION(
289 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000290 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000291 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000292}
293
294
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000295Handle<Context> Factory::NewBlockContext(
296 Handle<JSFunction> function,
297 Handle<Context> previous,
298 Handle<SerializedScopeInfo> scope_info) {
299 CALL_HEAP_FUNCTION(
300 isolate(),
301 isolate()->heap()->AllocateBlockContext(*function,
302 *previous,
303 *scope_info),
304 Context);
305}
306
307
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000308Handle<Struct> Factory::NewStruct(InstanceType type) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000309 CALL_HEAP_FUNCTION(
310 isolate(),
311 isolate()->heap()->AllocateStruct(type),
312 Struct);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000313}
314
315
316Handle<AccessorInfo> Factory::NewAccessorInfo() {
317 Handle<AccessorInfo> info =
318 Handle<AccessorInfo>::cast(NewStruct(ACCESSOR_INFO_TYPE));
319 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
320 return info;
321}
322
323
324Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000325 // Generate id for this script.
326 int id;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000327 Heap* heap = isolate()->heap();
328 if (heap->last_script_id()->IsUndefined()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000329 // Script ids start from one.
330 id = 1;
331 } else {
332 // Increment id, wrap when positive smi is exhausted.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000333 id = Smi::cast(heap->last_script_id())->value();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000334 id++;
335 if (!Smi::IsValid(id)) {
336 id = 0;
337 }
338 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000339 heap->SetLastScriptId(Smi::FromInt(id));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000340
341 // Create and initialize script object.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000342 Handle<Foreign> wrapper = NewForeign(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000343 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
344 script->set_source(*source);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000345 script->set_name(heap->undefined_value());
346 script->set_id(heap->last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000347 script->set_line_offset(Smi::FromInt(0));
348 script->set_column_offset(Smi::FromInt(0));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000349 script->set_data(heap->undefined_value());
350 script->set_context_data(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000351 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
352 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
ager@chromium.org9085a012009-05-11 19:22:57 +0000353 script->set_wrapper(*wrapper);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000354 script->set_line_ends(heap->undefined_value());
355 script->set_eval_from_shared(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000356 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000357
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000358 return script;
359}
360
361
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000362Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000363 CALL_HEAP_FUNCTION(isolate(),
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000364 isolate()->heap()->AllocateForeign(addr, pretenure),
365 Foreign);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000366}
367
368
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000369Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
370 return NewForeign((Address) desc, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000371}
372
373
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000374Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000375 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000376 CALL_HEAP_FUNCTION(
377 isolate(),
378 isolate()->heap()->AllocateByteArray(length, pretenure),
379 ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000380}
381
382
ager@chromium.org3811b432009-10-28 14:53:37 +0000383Handle<ExternalArray> Factory::NewExternalArray(int length,
384 ExternalArrayType array_type,
385 void* external_pointer,
386 PretenureFlag pretenure) {
387 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000388 CALL_HEAP_FUNCTION(
389 isolate(),
390 isolate()->heap()->AllocateExternalArray(length,
391 array_type,
392 external_pointer,
393 pretenure),
394 ExternalArray);
ager@chromium.org3811b432009-10-28 14:53:37 +0000395}
396
397
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000398Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
399 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000400 CALL_HEAP_FUNCTION(
401 isolate(),
402 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
403 JSGlobalPropertyCell);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000404}
405
406
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000407Handle<Map> Factory::NewMap(InstanceType type, int instance_size) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000408 CALL_HEAP_FUNCTION(
409 isolate(),
410 isolate()->heap()->AllocateMap(type, instance_size),
411 Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000412}
413
414
415Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000416 CALL_HEAP_FUNCTION(
417 isolate(),
418 isolate()->heap()->AllocateFunctionPrototype(*function),
419 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000420}
421
422
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000423Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000424 CALL_HEAP_FUNCTION(isolate(), src->CopyDropDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000425}
426
427
ager@chromium.org32912102009-01-16 10:38:43 +0000428Handle<Map> Factory::CopyMap(Handle<Map> src,
429 int extra_inobject_properties) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000430 Handle<Map> copy = CopyMapDropDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000431 // Check that we do not overflow the instance size when adding the
432 // extra inobject properties.
433 int instance_size_delta = extra_inobject_properties * kPointerSize;
434 int max_instance_size_delta =
435 JSObject::kMaxInstanceSize - copy->instance_size();
436 if (instance_size_delta > max_instance_size_delta) {
437 // If the instance size overflows, we allocate as many properties
438 // as we can as inobject properties.
439 instance_size_delta = max_instance_size_delta;
440 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
441 }
442 // Adjust the map with the extra inobject properties.
443 int inobject_properties =
444 copy->inobject_properties() + extra_inobject_properties;
445 copy->set_inobject_properties(inobject_properties);
446 copy->set_unused_property_fields(inobject_properties);
447 copy->set_instance_size(copy->instance_size() + instance_size_delta);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000448 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
ager@chromium.org32912102009-01-16 10:38:43 +0000449 return copy;
450}
451
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000452
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000453Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000454 CALL_HEAP_FUNCTION(isolate(), src->CopyDropTransitions(), Map);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000455}
456
457
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000458Handle<Map> Factory::GetFastElementsMap(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000459 CALL_HEAP_FUNCTION(isolate(), src->GetFastElementsMap(), Map);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000460}
461
462
463Handle<Map> Factory::GetSlowElementsMap(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000464 CALL_HEAP_FUNCTION(isolate(), src->GetSlowElementsMap(), Map);
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000465}
466
467
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000468Handle<Map> Factory::GetExternalArrayElementsMap(
469 Handle<Map> src,
470 ExternalArrayType array_type,
471 bool safe_to_add_transition) {
472 CALL_HEAP_FUNCTION(isolate(),
473 src->GetExternalArrayElementsMap(array_type,
474 safe_to_add_transition),
475 Map);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000476}
477
478
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000479Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000480 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000481}
482
483
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000484Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
485 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000486 Handle<Map> function_map,
487 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000488 CALL_HEAP_FUNCTION(
489 isolate(),
490 isolate()->heap()->AllocateFunction(*function_map,
491 *function_info,
492 isolate()->heap()->the_hole_value(),
493 pretenure),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000494 JSFunction);
495}
496
497
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000498Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
499 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000500 Handle<Context> context,
501 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000502 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000503 function_info,
504 function_info->strict_mode()
505 ? isolate()->strict_mode_function_map()
506 : isolate()->function_map(),
507 pretenure);
508
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000509 result->set_context(*context);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000510 int number_of_literals = function_info->num_literals();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000511 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000512 if (number_of_literals > 0) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000513 // Store the object, regexp and array functions in the literals
514 // array prefix. These functions will be used when creating
515 // object, regexp and array literals in this function.
ager@chromium.org236ad962008-09-25 09:45:57 +0000516 literals->set(JSFunction::kLiteralGlobalContextIndex,
517 context->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000518 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000519 result->set_literals(*literals);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000520 result->set_next_function_link(isolate()->heap()->undefined_value());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000521
522 if (V8::UseCrankshaft() &&
523 FLAG_always_opt &&
524 result->is_compiled() &&
525 !function_info->is_toplevel() &&
526 function_info->allows_lazy_compilation()) {
527 result->MarkForLazyRecompilation();
528 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000529 return result;
530}
531
532
533Handle<Object> Factory::NewNumber(double value,
534 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000535 CALL_HEAP_FUNCTION(
536 isolate(),
537 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000538}
539
540
541Handle<Object> Factory::NewNumberFromInt(int value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000542 CALL_HEAP_FUNCTION(
543 isolate(),
544 isolate()->heap()->NumberFromInt32(value), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000545}
546
547
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000548Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000549 CALL_HEAP_FUNCTION(
550 isolate(),
551 isolate()->heap()->NumberFromUint32(value), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000552}
553
554
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000555Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000556 CALL_HEAP_FUNCTION(
557 isolate(),
558 isolate()->heap()->AllocateJSObjectFromMap(
559 isolate()->heap()->neander_map()),
560 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000561}
562
563
564Handle<Object> Factory::NewTypeError(const char* type,
565 Vector< Handle<Object> > args) {
566 return NewError("MakeTypeError", type, args);
567}
568
569
570Handle<Object> Factory::NewTypeError(Handle<String> message) {
571 return NewError("$TypeError", message);
572}
573
574
575Handle<Object> Factory::NewRangeError(const char* type,
576 Vector< Handle<Object> > args) {
577 return NewError("MakeRangeError", type, args);
578}
579
580
581Handle<Object> Factory::NewRangeError(Handle<String> message) {
582 return NewError("$RangeError", message);
583}
584
585
586Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
587 return NewError("MakeSyntaxError", type, args);
588}
589
590
591Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
592 return NewError("$SyntaxError", message);
593}
594
595
596Handle<Object> Factory::NewReferenceError(const char* type,
597 Vector< Handle<Object> > args) {
598 return NewError("MakeReferenceError", type, args);
599}
600
601
602Handle<Object> Factory::NewReferenceError(Handle<String> message) {
603 return NewError("$ReferenceError", message);
604}
605
606
607Handle<Object> Factory::NewError(const char* maker, const char* type,
608 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000609 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000610 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000611 for (int i = 0; i < args.length(); i++) {
612 array->set(i, *args[i]);
613 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000614 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000615 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000616 return result.EscapeFrom(&scope);
617}
618
619
620Handle<Object> Factory::NewEvalError(const char* type,
621 Vector< Handle<Object> > args) {
622 return NewError("MakeEvalError", type, args);
623}
624
625
626Handle<Object> Factory::NewError(const char* type,
627 Vector< Handle<Object> > args) {
628 return NewError("MakeError", type, args);
629}
630
631
632Handle<Object> Factory::NewError(const char* maker,
633 const char* type,
634 Handle<JSArray> args) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000635 Handle<String> make_str = LookupAsciiSymbol(maker);
636 Handle<Object> fun_obj(
637 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000638 // If the builtins haven't been properly configured yet this error
639 // constructor may not have been defined. Bail out.
640 if (!fun_obj->IsJSFunction())
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000641 return undefined_value();
ager@chromium.org4af710e2009-09-15 12:20:11 +0000642 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000643 Handle<Object> type_obj = LookupAsciiSymbol(type);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000644 Object** argv[2] = { type_obj.location(),
645 Handle<Object>::cast(args).location() };
646
647 // Invoke the JavaScript factory method. If an exception is thrown while
648 // running the factory method, use the exception as the result.
649 bool caught_exception;
650 Handle<Object> result = Execution::TryCall(fun,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000651 isolate()->js_builtins_object(), 2, argv, &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000652 return result;
653}
654
655
656Handle<Object> Factory::NewError(Handle<String> message) {
657 return NewError("$Error", message);
658}
659
660
661Handle<Object> Factory::NewError(const char* constructor,
662 Handle<String> message) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000663 Handle<String> constr = LookupAsciiSymbol(constructor);
664 Handle<JSFunction> fun = Handle<JSFunction>(
665 JSFunction::cast(isolate()->js_builtins_object()->
666 GetPropertyNoExceptionThrown(*constr)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000667 Object** argv[1] = { Handle<Object>::cast(message).location() };
668
669 // Invoke the JavaScript factory method. If an exception is thrown while
670 // running the factory method, use the exception as the result.
671 bool caught_exception;
672 Handle<Object> result = Execution::TryCall(fun,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000673 isolate()->js_builtins_object(), 1, argv, &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000674 return result;
675}
676
677
678Handle<JSFunction> Factory::NewFunction(Handle<String> name,
679 InstanceType type,
680 int instance_size,
681 Handle<Code> code,
682 bool force_initial_map) {
683 // Allocate the function
684 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000685
686 // Setup the code pointer in both the shared function info and in
687 // the function itself.
688 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000689 function->set_code(*code);
690
691 if (force_initial_map ||
692 type != JS_OBJECT_TYPE ||
693 instance_size != JSObject::kHeaderSize) {
694 Handle<Map> initial_map = NewMap(type, instance_size);
695 Handle<JSObject> prototype = NewFunctionPrototype(function);
696 initial_map->set_prototype(*prototype);
697 function->set_initial_map(*initial_map);
698 initial_map->set_constructor(*function);
699 } else {
700 ASSERT(!function->has_initial_map());
701 ASSERT(!function->has_prototype());
702 }
703
704 return function;
705}
706
707
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000708Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
709 InstanceType type,
710 int instance_size,
711 Handle<JSObject> prototype,
712 Handle<Code> code,
713 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000714 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000715 Handle<JSFunction> function = NewFunction(name, prototype);
716
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000717 // Setup the code pointer in both the shared function info and in
718 // the function itself.
719 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000720 function->set_code(*code);
721
722 if (force_initial_map ||
723 type != JS_OBJECT_TYPE ||
724 instance_size != JSObject::kHeaderSize) {
725 Handle<Map> initial_map = NewMap(type, instance_size);
726 function->set_initial_map(*initial_map);
727 initial_map->set_constructor(*function);
728 }
729
730 // Set function.prototype and give the prototype a constructor
731 // property that refers to the function.
732 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000733 // Currently safe because it is only invoked from Genesis.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000734 SetLocalPropertyNoThrow(prototype, constructor_symbol(), function, DONT_ENUM);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000735 return function;
736}
737
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000738
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000739Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
740 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000741 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
742 kNonStrictMode);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000743 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000744 function->set_code(*code);
745 ASSERT(!function->has_initial_map());
746 ASSERT(!function->has_prototype());
747 return function;
748}
749
750
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000751Handle<SerializedScopeInfo> Factory::NewSerializedScopeInfo(int length) {
752 CALL_HEAP_FUNCTION(
753 isolate(),
754 isolate()->heap()->AllocateSerializedScopeInfo(length),
755 SerializedScopeInfo);
756}
757
758
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000759Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000760 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000761 Handle<Object> self_ref,
762 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000763 CALL_HEAP_FUNCTION(isolate(),
764 isolate()->heap()->CreateCode(
765 desc, flags, self_ref, immovable),
766 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000767}
768
769
770Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000771 CALL_HEAP_FUNCTION(isolate(),
772 isolate()->heap()->CopyCode(*code),
773 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000774}
775
776
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000777Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000778 CALL_HEAP_FUNCTION(isolate(),
779 isolate()->heap()->CopyCode(*code, reloc_info),
780 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000781}
782
783
lrn@chromium.org303ada72010-10-27 09:33:13 +0000784MUST_USE_RESULT static inline MaybeObject* DoCopyInsert(
785 DescriptorArray* array,
786 String* key,
787 Object* value,
788 PropertyAttributes attributes) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000789 CallbacksDescriptor desc(key, value, attributes);
lrn@chromium.org303ada72010-10-27 09:33:13 +0000790 MaybeObject* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000791 return obj;
792}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000793
794
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000795// Allocate the new array.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000796Handle<DescriptorArray> Factory::CopyAppendForeignDescriptor(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000797 Handle<DescriptorArray> array,
798 Handle<String> key,
799 Handle<Object> value,
800 PropertyAttributes attributes) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000801 CALL_HEAP_FUNCTION(isolate(),
802 DoCopyInsert(*array, *key, *value, attributes),
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000803 DescriptorArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000804}
805
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000806
807Handle<String> Factory::SymbolFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000808 CALL_HEAP_FUNCTION(isolate(),
809 isolate()->heap()->LookupSymbol(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000810}
811
812
813Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
814 Handle<DescriptorArray> array,
815 Handle<Object> descriptors) {
816 v8::NeanderArray callbacks(descriptors);
817 int nof_callbacks = callbacks.length();
818 Handle<DescriptorArray> result =
819 NewDescriptorArray(array->number_of_descriptors() + nof_callbacks);
820
821 // Number of descriptors added to the result so far.
822 int descriptor_count = 0;
823
824 // Copy the descriptors from the array.
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000825 for (int i = 0; i < array->number_of_descriptors(); i++) {
826 if (array->GetType(i) != NULL_DESCRIPTOR) {
827 result->CopyFrom(descriptor_count++, *array, i);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000828 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000829 }
830
831 // Number of duplicates detected.
832 int duplicates = 0;
833
834 // Fill in new callback descriptors. Process the callbacks from
835 // back to front so that the last callback with a given name takes
836 // precedence over previously added callbacks with that name.
837 for (int i = nof_callbacks - 1; i >= 0; i--) {
838 Handle<AccessorInfo> entry =
839 Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
840 // Ensure the key is a symbol before writing into the instance descriptor.
841 Handle<String> key =
842 SymbolFromString(Handle<String>(String::cast(entry->name())));
843 // Check if a descriptor with this name already exists before writing.
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000844 if (result->LinearSearch(*key, descriptor_count) ==
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000845 DescriptorArray::kNotFound) {
846 CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000847 result->Set(descriptor_count, &desc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000848 descriptor_count++;
849 } else {
850 duplicates++;
851 }
852 }
853
854 // If duplicates were detected, allocate a result of the right size
855 // and transfer the elements.
856 if (duplicates > 0) {
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000857 int number_of_descriptors = result->number_of_descriptors() - duplicates;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000858 Handle<DescriptorArray> new_result =
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000859 NewDescriptorArray(number_of_descriptors);
860 for (int i = 0; i < number_of_descriptors; i++) {
861 new_result->CopyFrom(i, *result, i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000862 }
863 result = new_result;
864 }
865
866 // Sort the result before returning.
867 result->Sort();
868 return result;
869}
870
871
872Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
873 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000874 CALL_HEAP_FUNCTION(
875 isolate(),
876 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000877}
878
879
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000880Handle<GlobalObject> Factory::NewGlobalObject(
881 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000882 CALL_HEAP_FUNCTION(isolate(),
883 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000884 GlobalObject);
885}
886
887
888
ager@chromium.org236ad962008-09-25 09:45:57 +0000889Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000890 CALL_HEAP_FUNCTION(
891 isolate(),
892 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
893 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000894}
895
896
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000897Handle<JSArray> Factory::NewJSArray(int capacity,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000898 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000899 Handle<JSObject> obj = NewJSObject(isolate()->array_function(), pretenure);
900 CALL_HEAP_FUNCTION(isolate(),
901 Handle<JSArray>::cast(obj)->Initialize(capacity),
902 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000903}
904
905
906Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArray> elements,
907 PretenureFlag pretenure) {
908 Handle<JSArray> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000909 Handle<JSArray>::cast(NewJSObject(isolate()->array_function(),
910 pretenure));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000911 result->SetContent(*elements);
912 return result;
913}
914
915
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000916Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
917 Handle<Object> prototype) {
918 CALL_HEAP_FUNCTION(
919 isolate(),
920 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
921 JSProxy);
922}
923
924
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000925void Factory::BecomeJSObject(Handle<JSProxy> object) {
926 CALL_HEAP_FUNCTION_VOID(
927 isolate(),
928 isolate()->heap()->ReinitializeJSProxyAsJSObject(*object));
929}
930
931
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000932Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000933 Handle<String> name,
934 int number_of_literals,
935 Handle<Code> code,
ager@chromium.orgb5737492010-07-15 09:29:43 +0000936 Handle<SerializedScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000937 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
938 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000939 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000940 int literals_array_size = number_of_literals;
941 // If the function contains object, regexp or array literals,
942 // allocate extra space for a literals array prefix containing the
943 // context.
944 if (number_of_literals > 0) {
945 literals_array_size += JSFunction::kLiteralsPrefixSize;
946 }
947 shared->set_num_literals(literals_array_size);
948 return shared;
949}
950
951
kmillikin@chromium.org31b12772011-02-02 16:08:26 +0000952Handle<JSMessageObject> Factory::NewJSMessageObject(
953 Handle<String> type,
954 Handle<JSArray> arguments,
955 int start_position,
956 int end_position,
957 Handle<Object> script,
958 Handle<Object> stack_trace,
959 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000960 CALL_HEAP_FUNCTION(isolate(),
961 isolate()->heap()->AllocateJSMessageObject(*type,
962 *arguments,
963 start_position,
964 end_position,
965 *script,
966 *stack_trace,
967 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +0000968 JSMessageObject);
969}
970
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000971Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000972 CALL_HEAP_FUNCTION(isolate(),
973 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000974 SharedFunctionInfo);
975}
976
977
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000978Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000979 CALL_HEAP_FUNCTION(isolate(),
980 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000981}
982
983
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000984Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
985 Handle<NumberDictionary> dictionary,
986 uint32_t key,
987 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000988 CALL_HEAP_FUNCTION(isolate(),
989 dictionary->AtNumberPut(key, *value),
990 NumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000991}
992
993
994Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
995 Handle<Object> prototype) {
996 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000997 CALL_HEAP_FUNCTION(
998 isolate(),
999 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1000 *function_share,
1001 *prototype),
1002 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001003}
1004
1005
1006Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1007 Handle<Object> prototype) {
1008 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001009 fun->set_context(isolate()->context()->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001010 return fun;
1011}
1012
1013
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001014Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001015 Handle<String> name,
1016 StrictModeFlag strict_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001017 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001018 Handle<Map> map = strict_mode == kStrictMode
1019 ? isolate()->strict_mode_function_without_prototype_map()
1020 : isolate()->function_without_prototype_map();
1021 CALL_HEAP_FUNCTION(isolate(),
1022 isolate()->heap()->AllocateFunction(
1023 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001024 *function_share,
1025 *the_hole_value()),
1026 JSFunction);
1027}
1028
1029
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001030Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1031 Handle<String> name,
1032 StrictModeFlag strict_mode) {
1033 Handle<JSFunction> fun = NewFunctionWithoutPrototypeHelper(name, strict_mode);
1034 fun->set_context(isolate()->context()->global_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001035 return fun;
1036}
1037
1038
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001039Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001040 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001041}
1042
1043
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001044Handle<Object> Factory::ToObject(Handle<Object> object,
1045 Handle<Context> global_context) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001046 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*global_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001047}
1048
1049
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001050#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001051Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1052 // Get the original code of the function.
1053 Handle<Code> code(shared->code());
1054
1055 // Create a copy of the code before allocating the debug info object to avoid
1056 // allocation while setting up the debug info object.
1057 Handle<Code> original_code(*Factory::CopyCode(code));
1058
1059 // Allocate initial fixed array for active break points before allocating the
1060 // debug info object to avoid allocation while setting up the debug info
1061 // object.
1062 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001063 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001064
1065 // Create and set up the debug info object. Debug info contains function, a
1066 // copy of the original code, the executing code and initial fixed array for
1067 // active break points.
1068 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001069 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001070 debug_info->set_shared(*shared);
1071 debug_info->set_original_code(*original_code);
1072 debug_info->set_code(*code);
1073 debug_info->set_break_points(*break_points);
1074
1075 // Link debug info to function.
1076 shared->set_debug_info(*debug_info);
1077
1078 return debug_info;
1079}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001080#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001081
1082
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001083Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1084 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001085 CALL_HEAP_FUNCTION(
1086 isolate(),
1087 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001088}
1089
1090
1091Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001092 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001093 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1094 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001095
kasper.lund212ac232008-07-16 07:07:30 +00001096 int internal_field_count = 0;
1097 if (!obj->instance_template()->IsUndefined()) {
1098 Handle<ObjectTemplateInfo> instance_template =
1099 Handle<ObjectTemplateInfo>(
1100 ObjectTemplateInfo::cast(obj->instance_template()));
1101 internal_field_count =
1102 Smi::cast(instance_template->internal_field_count())->value();
1103 }
1104
1105 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001106 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001107 switch (instance_type) {
1108 case JavaScriptObject:
1109 type = JS_OBJECT_TYPE;
1110 instance_size += JSObject::kHeaderSize;
1111 break;
1112 case InnerGlobalObject:
1113 type = JS_GLOBAL_OBJECT_TYPE;
1114 instance_size += JSGlobalObject::kSize;
1115 break;
1116 case OuterGlobalObject:
1117 type = JS_GLOBAL_PROXY_TYPE;
1118 instance_size += JSGlobalProxy::kSize;
1119 break;
1120 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001121 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001122 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001123 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001124
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001125 Handle<JSFunction> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001126 NewFunction(Factory::empty_symbol(),
1127 type,
1128 instance_size,
1129 code,
1130 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001131 // Set class name.
1132 Handle<Object> class_name = Handle<Object>(obj->class_name());
1133 if (class_name->IsString()) {
1134 result->shared()->set_instance_class_name(*class_name);
1135 result->shared()->set_name(*class_name);
1136 }
1137
1138 Handle<Map> map = Handle<Map>(result->initial_map());
1139
1140 // Mark as undetectable if needed.
1141 if (obj->undetectable()) {
1142 map->set_is_undetectable();
1143 }
1144
1145 // Mark as hidden for the __proto__ accessor if needed.
1146 if (obj->hidden_prototype()) {
1147 map->set_is_hidden_prototype();
1148 }
1149
1150 // Mark as needs_access_check if needed.
1151 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001152 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001153 }
1154
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001155 // Set interceptor information in the map.
1156 if (!obj->named_property_handler()->IsUndefined()) {
1157 map->set_has_named_interceptor();
1158 }
1159 if (!obj->indexed_property_handler()->IsUndefined()) {
1160 map->set_has_indexed_interceptor();
1161 }
1162
1163 // Set instance call-as-function information in the map.
1164 if (!obj->instance_call_handler()->IsUndefined()) {
1165 map->set_has_instance_call_handler();
1166 }
1167
1168 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001169 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001170 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001171
1172 // Recursively copy parent templates' accessors, 'data' may be modified.
1173 Handle<DescriptorArray> array =
1174 Handle<DescriptorArray>(map->instance_descriptors());
1175 while (true) {
1176 Handle<Object> props = Handle<Object>(obj->property_accessors());
1177 if (!props->IsUndefined()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001178 array = CopyAppendCallbackDescriptors(array, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001179 }
1180 Handle<Object> parent = Handle<Object>(obj->parent_template());
1181 if (parent->IsUndefined()) break;
1182 obj = Handle<FunctionTemplateInfo>::cast(parent);
1183 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001184 if (!array->IsEmpty()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001185 map->set_instance_descriptors(*array);
1186 }
1187
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001188 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001189 return result;
1190}
1191
1192
ager@chromium.org236ad962008-09-25 09:45:57 +00001193Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001194 CALL_HEAP_FUNCTION(isolate(),
1195 MapCache::Allocate(at_least_space_for), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001196}
1197
1198
lrn@chromium.org303ada72010-10-27 09:33:13 +00001199MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1200 FixedArray* keys,
1201 Map* map) {
1202 Object* result;
1203 { MaybeObject* maybe_result =
1204 MapCache::cast(context->map_cache())->Put(keys, map);
1205 if (!maybe_result->ToObject(&result)) return maybe_result;
1206 }
1207 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001208 return result;
1209}
1210
1211
1212Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1213 Handle<FixedArray> keys,
1214 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001215 CALL_HEAP_FUNCTION(isolate(),
1216 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001217}
1218
1219
1220Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1221 Handle<FixedArray> keys) {
1222 if (context->map_cache()->IsUndefined()) {
1223 // Allocate the new map cache for the global context.
1224 Handle<MapCache> new_cache = NewMapCache(24);
1225 context->set_map_cache(*new_cache);
1226 }
ager@chromium.org32912102009-01-16 10:38:43 +00001227 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001228 Handle<MapCache> cache =
1229 Handle<MapCache>(MapCache::cast(context->map_cache()));
1230 Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
1231 if (result->IsMap()) return Handle<Map>::cast(result);
1232 // Create a new map and add it to the cache.
1233 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001234 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1235 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001236 AddToMapCache(context, keys, map);
1237 return Handle<Map>(map);
1238}
1239
1240
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001241void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1242 JSRegExp::Type type,
1243 Handle<String> source,
1244 JSRegExp::Flags flags,
1245 Handle<Object> data) {
1246 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1247
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001248 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1249 store->set(JSRegExp::kSourceIndex, *source);
1250 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1251 store->set(JSRegExp::kAtomPatternIndex, *data);
1252 regexp->set_data(*store);
1253}
1254
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001255void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1256 JSRegExp::Type type,
1257 Handle<String> source,
1258 JSRegExp::Flags flags,
1259 int capture_count) {
1260 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001261 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001262 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1263 store->set(JSRegExp::kSourceIndex, *source);
1264 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001265 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1266 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1267 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1268 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001269 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1270 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1271 Smi::FromInt(capture_count));
1272 regexp->set_data(*store);
1273}
1274
1275
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001276
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001277void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1278 Handle<JSObject> instance,
1279 bool* pending_exception) {
1280 // Configure the instance by adding the properties specified by the
1281 // instance template.
1282 Handle<Object> instance_template = Handle<Object>(desc->instance_template());
1283 if (!instance_template->IsUndefined()) {
1284 Execution::ConfigureInstance(instance,
1285 instance_template,
1286 pending_exception);
1287 } else {
1288 *pending_exception = false;
1289 }
1290}
1291
1292
1293} } // namespace v8::internal