blob: 32b69db3946c0ec25c36c51023caa3e2769d42c9 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 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"
35
kasperl@chromium.org71affb52009-05-26 05:44:31 +000036namespace v8 {
37namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000038
39
40Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
41 ASSERT(0 <= size);
42 CALL_HEAP_FUNCTION(Heap::AllocateFixedArray(size, pretenure), FixedArray);
43}
44
45
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000046Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size) {
47 ASSERT(0 <= size);
48 CALL_HEAP_FUNCTION(Heap::AllocateFixedArrayWithHoles(size), FixedArray);
49}
50
51
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000052Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000053 ASSERT(0 <= at_least_space_for);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000054 CALL_HEAP_FUNCTION(StringDictionary::Allocate(at_least_space_for),
55 StringDictionary);
56}
57
58
59Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
60 ASSERT(0 <= at_least_space_for);
61 CALL_HEAP_FUNCTION(NumberDictionary::Allocate(at_least_space_for),
62 NumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000063}
64
65
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000066Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
67 ASSERT(0 <= number_of_descriptors);
68 CALL_HEAP_FUNCTION(DescriptorArray::Allocate(number_of_descriptors),
69 DescriptorArray);
70}
71
72
ager@chromium.org9258b6b2008-09-11 09:11:10 +000073// Symbols are created in the old generation (data space).
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000074Handle<String> Factory::LookupSymbol(Vector<const char> string) {
75 CALL_HEAP_FUNCTION(Heap::LookupSymbol(string), String);
76}
77
78
79Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
80 PretenureFlag pretenure) {
81 CALL_HEAP_FUNCTION(Heap::AllocateStringFromAscii(string, pretenure), String);
82}
83
84Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
85 PretenureFlag pretenure) {
86 CALL_HEAP_FUNCTION(Heap::AllocateStringFromUtf8(string, pretenure), String);
87}
88
89
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000090Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
91 PretenureFlag pretenure) {
92 CALL_HEAP_FUNCTION(Heap::AllocateStringFromTwoByte(string, pretenure),
93 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094}
95
96
97Handle<String> Factory::NewRawTwoByteString(int length,
98 PretenureFlag pretenure) {
99 CALL_HEAP_FUNCTION(Heap::AllocateRawTwoByteString(length, pretenure), String);
100}
101
102
103Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000104 Handle<String> second) {
ager@chromium.orgc3e50d82008-11-05 11:53:10 +0000105 CALL_HEAP_FUNCTION(Heap::AllocateConsString(*first, *second), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000106}
107
108
ager@chromium.org870a0b62008-11-04 11:43:05 +0000109Handle<String> Factory::NewStringSlice(Handle<String> str,
ager@chromium.org870a0b62008-11-04 11:43:05 +0000110 int begin,
111 int end) {
ager@chromium.orgc3e50d82008-11-05 11:53:10 +0000112 CALL_HEAP_FUNCTION(str->Slice(begin, end), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000113}
114
115
116Handle<String> Factory::NewExternalStringFromAscii(
117 ExternalAsciiString::Resource* resource) {
118 CALL_HEAP_FUNCTION(Heap::AllocateExternalStringFromAscii(resource), String);
119}
120
121
122Handle<String> Factory::NewExternalStringFromTwoByte(
123 ExternalTwoByteString::Resource* resource) {
124 CALL_HEAP_FUNCTION(Heap::AllocateExternalStringFromTwoByte(resource), String);
125}
126
127
128Handle<Context> Factory::NewGlobalContext() {
129 CALL_HEAP_FUNCTION(Heap::AllocateGlobalContext(), Context);
130}
131
132
133Handle<Context> Factory::NewFunctionContext(int length,
134 Handle<JSFunction> closure) {
135 CALL_HEAP_FUNCTION(Heap::AllocateFunctionContext(length, *closure), Context);
136}
137
138
139Handle<Context> Factory::NewWithContext(Handle<Context> previous,
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000140 Handle<JSObject> extension,
141 bool is_catch_context) {
142 CALL_HEAP_FUNCTION(Heap::AllocateWithContext(*previous,
143 *extension,
144 is_catch_context),
145 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000146}
147
148
149Handle<Struct> Factory::NewStruct(InstanceType type) {
150 CALL_HEAP_FUNCTION(Heap::AllocateStruct(type), Struct);
151}
152
153
154Handle<AccessorInfo> Factory::NewAccessorInfo() {
155 Handle<AccessorInfo> info =
156 Handle<AccessorInfo>::cast(NewStruct(ACCESSOR_INFO_TYPE));
157 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
158 return info;
159}
160
161
162Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000163 // Generate id for this script.
164 int id;
165 if (Heap::last_script_id()->IsUndefined()) {
166 // Script ids start from one.
167 id = 1;
168 } else {
169 // Increment id, wrap when positive smi is exhausted.
170 id = Smi::cast(Heap::last_script_id())->value();
171 id++;
172 if (!Smi::IsValid(id)) {
173 id = 0;
174 }
175 }
176 Heap::SetLastScriptId(Smi::FromInt(id));
177
178 // Create and initialize script object.
ager@chromium.org9085a012009-05-11 19:22:57 +0000179 Handle<Proxy> wrapper = Factory::NewProxy(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000180 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
181 script->set_source(*source);
182 script->set_name(Heap::undefined_value());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000183 script->set_id(Heap::last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000184 script->set_line_offset(Smi::FromInt(0));
185 script->set_column_offset(Smi::FromInt(0));
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000186 script->set_data(Heap::undefined_value());
ager@chromium.org9085a012009-05-11 19:22:57 +0000187 script->set_context_data(Heap::undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000188 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
189 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
ager@chromium.org9085a012009-05-11 19:22:57 +0000190 script->set_wrapper(*wrapper);
iposva@chromium.org245aa852009-02-10 00:49:54 +0000191 script->set_line_ends(Heap::undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000192 script->set_eval_from_function(Heap::undefined_value());
193 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000194
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000195 return script;
196}
197
198
199Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) {
200 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy);
201}
202
203
204Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) {
205 return NewProxy((Address) desc, TENURED);
206}
207
208
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000209Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000210 ASSERT(0 <= length);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000211 CALL_HEAP_FUNCTION(Heap::AllocateByteArray(length, pretenure), ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000212}
213
214
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000215Handle<PixelArray> Factory::NewPixelArray(int length,
216 uint8_t* external_pointer,
217 PretenureFlag pretenure) {
218 ASSERT(0 <= length);
219 CALL_HEAP_FUNCTION(Heap::AllocatePixelArray(length,
220 external_pointer,
221 pretenure), PixelArray);
222}
223
224
ager@chromium.org3811b432009-10-28 14:53:37 +0000225Handle<ExternalArray> Factory::NewExternalArray(int length,
226 ExternalArrayType array_type,
227 void* external_pointer,
228 PretenureFlag pretenure) {
229 ASSERT(0 <= length);
230 CALL_HEAP_FUNCTION(Heap::AllocateExternalArray(length,
231 array_type,
232 external_pointer,
233 pretenure), ExternalArray);
234}
235
236
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000237Handle<Map> Factory::NewMap(InstanceType type, int instance_size) {
238 CALL_HEAP_FUNCTION(Heap::AllocateMap(type, instance_size), Map);
239}
240
241
242Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
243 CALL_HEAP_FUNCTION(Heap::AllocateFunctionPrototype(*function), JSObject);
244}
245
246
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000247Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
248 CALL_HEAP_FUNCTION(src->CopyDropDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000249}
250
251
ager@chromium.org32912102009-01-16 10:38:43 +0000252Handle<Map> Factory::CopyMap(Handle<Map> src,
253 int extra_inobject_properties) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000254 Handle<Map> copy = CopyMapDropDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000255 // Check that we do not overflow the instance size when adding the
256 // extra inobject properties.
257 int instance_size_delta = extra_inobject_properties * kPointerSize;
258 int max_instance_size_delta =
259 JSObject::kMaxInstanceSize - copy->instance_size();
260 if (instance_size_delta > max_instance_size_delta) {
261 // If the instance size overflows, we allocate as many properties
262 // as we can as inobject properties.
263 instance_size_delta = max_instance_size_delta;
264 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
265 }
266 // Adjust the map with the extra inobject properties.
267 int inobject_properties =
268 copy->inobject_properties() + extra_inobject_properties;
269 copy->set_inobject_properties(inobject_properties);
270 copy->set_unused_property_fields(inobject_properties);
271 copy->set_instance_size(copy->instance_size() + instance_size_delta);
272 return copy;
273}
274
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000275Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
276 CALL_HEAP_FUNCTION(src->CopyDropTransitions(), Map);
277}
278
279
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000280Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
281 CALL_HEAP_FUNCTION(array->Copy(), FixedArray);
282}
283
284
285Handle<JSFunction> Factory::BaseNewFunctionFromBoilerplate(
286 Handle<JSFunction> boilerplate,
287 Handle<Map> function_map) {
288 ASSERT(boilerplate->IsBoilerplate());
289 ASSERT(!boilerplate->has_initial_map());
290 ASSERT(!boilerplate->has_prototype());
291 ASSERT(boilerplate->properties() == Heap::empty_fixed_array());
292 ASSERT(boilerplate->elements() == Heap::empty_fixed_array());
293 CALL_HEAP_FUNCTION(Heap::AllocateFunction(*function_map,
294 boilerplate->shared(),
295 Heap::the_hole_value()),
296 JSFunction);
297}
298
299
300Handle<JSFunction> Factory::NewFunctionFromBoilerplate(
301 Handle<JSFunction> boilerplate,
302 Handle<Context> context) {
303 Handle<JSFunction> result =
304 BaseNewFunctionFromBoilerplate(boilerplate, Top::function_map());
305 result->set_context(*context);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000306 int number_of_literals = boilerplate->NumberOfLiterals();
307 Handle<FixedArray> literals =
308 Factory::NewFixedArray(number_of_literals, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000309 if (number_of_literals > 0) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000310 // Store the object, regexp and array functions in the literals
311 // array prefix. These functions will be used when creating
312 // object, regexp and array literals in this function.
ager@chromium.org236ad962008-09-25 09:45:57 +0000313 literals->set(JSFunction::kLiteralGlobalContextIndex,
314 context->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000315 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000316 result->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000317 ASSERT(!result->IsBoilerplate());
318 return result;
319}
320
321
322Handle<Object> Factory::NewNumber(double value,
323 PretenureFlag pretenure) {
324 CALL_HEAP_FUNCTION(Heap::NumberFromDouble(value, pretenure), Object);
325}
326
327
328Handle<Object> Factory::NewNumberFromInt(int value) {
329 CALL_HEAP_FUNCTION(Heap::NumberFromInt32(value), Object);
330}
331
332
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000333Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
334 CALL_HEAP_FUNCTION(Heap::NumberFromUint32(value), Object);
335}
336
337
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000338Handle<JSObject> Factory::NewNeanderObject() {
339 CALL_HEAP_FUNCTION(Heap::AllocateJSObjectFromMap(Heap::neander_map()),
340 JSObject);
341}
342
343
344Handle<Object> Factory::NewTypeError(const char* type,
345 Vector< Handle<Object> > args) {
346 return NewError("MakeTypeError", type, args);
347}
348
349
350Handle<Object> Factory::NewTypeError(Handle<String> message) {
351 return NewError("$TypeError", message);
352}
353
354
355Handle<Object> Factory::NewRangeError(const char* type,
356 Vector< Handle<Object> > args) {
357 return NewError("MakeRangeError", type, args);
358}
359
360
361Handle<Object> Factory::NewRangeError(Handle<String> message) {
362 return NewError("$RangeError", message);
363}
364
365
366Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
367 return NewError("MakeSyntaxError", type, args);
368}
369
370
371Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
372 return NewError("$SyntaxError", message);
373}
374
375
376Handle<Object> Factory::NewReferenceError(const char* type,
377 Vector< Handle<Object> > args) {
378 return NewError("MakeReferenceError", type, args);
379}
380
381
382Handle<Object> Factory::NewReferenceError(Handle<String> message) {
383 return NewError("$ReferenceError", message);
384}
385
386
387Handle<Object> Factory::NewError(const char* maker, const char* type,
388 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000389 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000390 Handle<FixedArray> array = Factory::NewFixedArray(args.length());
391 for (int i = 0; i < args.length(); i++) {
392 array->set(i, *args[i]);
393 }
394 Handle<JSArray> object = Factory::NewJSArrayWithElements(array);
395 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000396 return result.EscapeFrom(&scope);
397}
398
399
400Handle<Object> Factory::NewEvalError(const char* type,
401 Vector< Handle<Object> > args) {
402 return NewError("MakeEvalError", type, args);
403}
404
405
406Handle<Object> Factory::NewError(const char* type,
407 Vector< Handle<Object> > args) {
408 return NewError("MakeError", type, args);
409}
410
411
412Handle<Object> Factory::NewError(const char* maker,
413 const char* type,
414 Handle<JSArray> args) {
415 Handle<String> make_str = Factory::LookupAsciiSymbol(maker);
ager@chromium.org4af710e2009-09-15 12:20:11 +0000416 Handle<Object> fun_obj(Top::builtins()->GetProperty(*make_str));
417 // If the builtins haven't been properly configured yet this error
418 // constructor may not have been defined. Bail out.
419 if (!fun_obj->IsJSFunction())
420 return Factory::undefined_value();
421 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000422 Handle<Object> type_obj = Factory::LookupAsciiSymbol(type);
423 Object** argv[2] = { type_obj.location(),
424 Handle<Object>::cast(args).location() };
425
426 // Invoke the JavaScript factory method. If an exception is thrown while
427 // running the factory method, use the exception as the result.
428 bool caught_exception;
429 Handle<Object> result = Execution::TryCall(fun,
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000430 Top::builtins(),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000431 2,
432 argv,
433 &caught_exception);
434 return result;
435}
436
437
438Handle<Object> Factory::NewError(Handle<String> message) {
439 return NewError("$Error", message);
440}
441
442
443Handle<Object> Factory::NewError(const char* constructor,
444 Handle<String> message) {
445 Handle<String> constr = Factory::LookupAsciiSymbol(constructor);
446 Handle<JSFunction> fun =
447 Handle<JSFunction>(
448 JSFunction::cast(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000449 Top::builtins()->GetProperty(*constr)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000450 Object** argv[1] = { Handle<Object>::cast(message).location() };
451
452 // Invoke the JavaScript factory method. If an exception is thrown while
453 // running the factory method, use the exception as the result.
454 bool caught_exception;
455 Handle<Object> result = Execution::TryCall(fun,
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000456 Top::builtins(),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000457 1,
458 argv,
459 &caught_exception);
460 return result;
461}
462
463
464Handle<JSFunction> Factory::NewFunction(Handle<String> name,
465 InstanceType type,
466 int instance_size,
467 Handle<Code> code,
468 bool force_initial_map) {
469 // Allocate the function
470 Handle<JSFunction> function = NewFunction(name, the_hole_value());
471 function->set_code(*code);
472
473 if (force_initial_map ||
474 type != JS_OBJECT_TYPE ||
475 instance_size != JSObject::kHeaderSize) {
476 Handle<Map> initial_map = NewMap(type, instance_size);
477 Handle<JSObject> prototype = NewFunctionPrototype(function);
478 initial_map->set_prototype(*prototype);
479 function->set_initial_map(*initial_map);
480 initial_map->set_constructor(*function);
481 } else {
482 ASSERT(!function->has_initial_map());
483 ASSERT(!function->has_prototype());
484 }
485
486 return function;
487}
488
489
490Handle<JSFunction> Factory::NewFunctionBoilerplate(Handle<String> name,
491 int number_of_literals,
492 Handle<Code> code) {
493 Handle<JSFunction> function = NewFunctionBoilerplate(name);
494 function->set_code(*code);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000495 int literals_array_size = number_of_literals;
496 // If the function contains object, regexp or array literals,
497 // allocate extra space for a literals array prefix containing the
498 // object, regexp and array constructor functions.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000499 if (number_of_literals > 0) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000500 literals_array_size += JSFunction::kLiteralsPrefixSize;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000501 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000502 Handle<FixedArray> literals =
503 Factory::NewFixedArray(literals_array_size, TENURED);
504 function->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000505 ASSERT(!function->has_initial_map());
506 ASSERT(!function->has_prototype());
507 return function;
508}
509
510
511Handle<JSFunction> Factory::NewFunctionBoilerplate(Handle<String> name) {
512 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
513 CALL_HEAP_FUNCTION(Heap::AllocateFunction(Heap::boilerplate_function_map(),
514 *shared,
515 Heap::the_hole_value()),
516 JSFunction);
517}
518
519
520Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
521 InstanceType type,
522 int instance_size,
523 Handle<JSObject> prototype,
524 Handle<Code> code,
525 bool force_initial_map) {
526 // Allocate the function
527 Handle<JSFunction> function = NewFunction(name, prototype);
528
529 function->set_code(*code);
530
531 if (force_initial_map ||
532 type != JS_OBJECT_TYPE ||
533 instance_size != JSObject::kHeaderSize) {
534 Handle<Map> initial_map = NewMap(type, instance_size);
535 function->set_initial_map(*initial_map);
536 initial_map->set_constructor(*function);
537 }
538
539 // Set function.prototype and give the prototype a constructor
540 // property that refers to the function.
541 SetPrototypeProperty(function, prototype);
542 SetProperty(prototype, Factory::constructor_symbol(), function, DONT_ENUM);
543 return function;
544}
545
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000546
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000547Handle<Code> Factory::NewCode(const CodeDesc& desc,
548 ZoneScopeInfo* sinfo,
549 Code::Flags flags,
550 Handle<Object> self_ref) {
kasperl@chromium.org061ef742009-02-27 12:16:20 +0000551 CALL_HEAP_FUNCTION(Heap::CreateCode(desc, sinfo, flags, self_ref), Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552}
553
554
555Handle<Code> Factory::CopyCode(Handle<Code> code) {
556 CALL_HEAP_FUNCTION(Heap::CopyCode(*code), Code);
557}
558
559
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000560static inline Object* DoCopyInsert(DescriptorArray* array,
561 String* key,
562 Object* value,
563 PropertyAttributes attributes) {
564 CallbacksDescriptor desc(key, value, attributes);
565 Object* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
566 return obj;
567}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000568
569
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000570// Allocate the new array.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000571Handle<DescriptorArray> Factory::CopyAppendProxyDescriptor(
572 Handle<DescriptorArray> array,
573 Handle<String> key,
574 Handle<Object> value,
575 PropertyAttributes attributes) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000576 CALL_HEAP_FUNCTION(DoCopyInsert(*array, *key, *value, attributes),
577 DescriptorArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000578}
579
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000580
581Handle<String> Factory::SymbolFromString(Handle<String> value) {
582 CALL_HEAP_FUNCTION(Heap::LookupSymbol(*value), String);
583}
584
585
586Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
587 Handle<DescriptorArray> array,
588 Handle<Object> descriptors) {
589 v8::NeanderArray callbacks(descriptors);
590 int nof_callbacks = callbacks.length();
591 Handle<DescriptorArray> result =
592 NewDescriptorArray(array->number_of_descriptors() + nof_callbacks);
593
594 // Number of descriptors added to the result so far.
595 int descriptor_count = 0;
596
597 // Copy the descriptors from the array.
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000598 for (int i = 0; i < array->number_of_descriptors(); i++) {
599 if (array->GetType(i) != NULL_DESCRIPTOR) {
600 result->CopyFrom(descriptor_count++, *array, i);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000601 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000602 }
603
604 // Number of duplicates detected.
605 int duplicates = 0;
606
607 // Fill in new callback descriptors. Process the callbacks from
608 // back to front so that the last callback with a given name takes
609 // precedence over previously added callbacks with that name.
610 for (int i = nof_callbacks - 1; i >= 0; i--) {
611 Handle<AccessorInfo> entry =
612 Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
613 // Ensure the key is a symbol before writing into the instance descriptor.
614 Handle<String> key =
615 SymbolFromString(Handle<String>(String::cast(entry->name())));
616 // Check if a descriptor with this name already exists before writing.
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000617 if (result->LinearSearch(*key, descriptor_count) ==
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000618 DescriptorArray::kNotFound) {
619 CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000620 result->Set(descriptor_count, &desc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000621 descriptor_count++;
622 } else {
623 duplicates++;
624 }
625 }
626
627 // If duplicates were detected, allocate a result of the right size
628 // and transfer the elements.
629 if (duplicates > 0) {
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000630 int number_of_descriptors = result->number_of_descriptors() - duplicates;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000631 Handle<DescriptorArray> new_result =
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000632 NewDescriptorArray(number_of_descriptors);
633 for (int i = 0; i < number_of_descriptors; i++) {
634 new_result->CopyFrom(i, *result, i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000635 }
636 result = new_result;
637 }
638
639 // Sort the result before returning.
640 result->Sort();
641 return result;
642}
643
644
645Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
646 PretenureFlag pretenure) {
647 CALL_HEAP_FUNCTION(Heap::AllocateJSObject(*constructor, pretenure), JSObject);
648}
649
650
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000651Handle<GlobalObject> Factory::NewGlobalObject(
652 Handle<JSFunction> constructor) {
653 CALL_HEAP_FUNCTION(Heap::AllocateGlobalObject(*constructor),
654 GlobalObject);
655}
656
657
658
ager@chromium.org236ad962008-09-25 09:45:57 +0000659Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
660 CALL_HEAP_FUNCTION(Heap::AllocateJSObjectFromMap(*map, NOT_TENURED),
661 JSObject);
662}
663
664
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000665Handle<JSArray> Factory::NewJSArray(int length,
666 PretenureFlag pretenure) {
667 Handle<JSObject> obj = NewJSObject(Top::array_function(), pretenure);
668 CALL_HEAP_FUNCTION(Handle<JSArray>::cast(obj)->Initialize(length), JSArray);
669}
670
671
672Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArray> elements,
673 PretenureFlag pretenure) {
674 Handle<JSArray> result =
675 Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure));
676 result->SetContent(*elements);
677 return result;
678}
679
680
681Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
682 CALL_HEAP_FUNCTION(Heap::AllocateSharedFunctionInfo(*name),
683 SharedFunctionInfo);
684}
685
686
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000687Handle<String> Factory::NumberToString(Handle<Object> number) {
688 CALL_HEAP_FUNCTION(Heap::NumberToString(*number), String);
689}
690
691
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000692Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
693 Handle<NumberDictionary> dictionary,
694 uint32_t key,
695 Handle<Object> value) {
696 CALL_HEAP_FUNCTION(dictionary->AtNumberPut(key, *value), NumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000697}
698
699
700Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
701 Handle<Object> prototype) {
702 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
703 CALL_HEAP_FUNCTION(Heap::AllocateFunction(*Top::function_map(),
704 *function_share,
705 *prototype),
706 JSFunction);
707}
708
709
710Handle<JSFunction> Factory::NewFunction(Handle<String> name,
711 Handle<Object> prototype) {
712 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
713 fun->set_context(Top::context()->global_context());
714 return fun;
715}
716
717
718Handle<Object> Factory::ToObject(Handle<Object> object,
719 Handle<Context> global_context) {
720 CALL_HEAP_FUNCTION(object->ToObject(*global_context), Object);
721}
722
723
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000724#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +0000725Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
726 // Get the original code of the function.
727 Handle<Code> code(shared->code());
728
729 // Create a copy of the code before allocating the debug info object to avoid
730 // allocation while setting up the debug info object.
731 Handle<Code> original_code(*Factory::CopyCode(code));
732
733 // Allocate initial fixed array for active break points before allocating the
734 // debug info object to avoid allocation while setting up the debug info
735 // object.
736 Handle<FixedArray> break_points(
737 Factory::NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
738
739 // Create and set up the debug info object. Debug info contains function, a
740 // copy of the original code, the executing code and initial fixed array for
741 // active break points.
742 Handle<DebugInfo> debug_info =
743 Handle<DebugInfo>::cast(Factory::NewStruct(DEBUG_INFO_TYPE));
744 debug_info->set_shared(*shared);
745 debug_info->set_original_code(*original_code);
746 debug_info->set_code(*code);
747 debug_info->set_break_points(*break_points);
748
749 // Link debug info to function.
750 shared->set_debug_info(*debug_info);
751
752 return debug_info;
753}
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000754#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +0000755
756
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000757Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
758 int length) {
759 CALL_HEAP_FUNCTION(Heap::AllocateArgumentsObject(*callee, length), JSObject);
760}
761
762
763Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000764 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000765 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::HandleApiCall));
766
kasper.lund212ac232008-07-16 07:07:30 +0000767 int internal_field_count = 0;
768 if (!obj->instance_template()->IsUndefined()) {
769 Handle<ObjectTemplateInfo> instance_template =
770 Handle<ObjectTemplateInfo>(
771 ObjectTemplateInfo::cast(obj->instance_template()));
772 internal_field_count =
773 Smi::cast(instance_template->internal_field_count())->value();
774 }
775
776 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000777 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000778 switch (instance_type) {
779 case JavaScriptObject:
780 type = JS_OBJECT_TYPE;
781 instance_size += JSObject::kHeaderSize;
782 break;
783 case InnerGlobalObject:
784 type = JS_GLOBAL_OBJECT_TYPE;
785 instance_size += JSGlobalObject::kSize;
786 break;
787 case OuterGlobalObject:
788 type = JS_GLOBAL_PROXY_TYPE;
789 instance_size += JSGlobalProxy::kSize;
790 break;
791 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000792 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000793 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000794 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000795
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000796 Handle<JSFunction> result =
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000797 Factory::NewFunction(Factory::empty_symbol(),
798 type,
799 instance_size,
800 code,
801 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000802 // Set class name.
803 Handle<Object> class_name = Handle<Object>(obj->class_name());
804 if (class_name->IsString()) {
805 result->shared()->set_instance_class_name(*class_name);
806 result->shared()->set_name(*class_name);
807 }
808
809 Handle<Map> map = Handle<Map>(result->initial_map());
810
811 // Mark as undetectable if needed.
812 if (obj->undetectable()) {
813 map->set_is_undetectable();
814 }
815
816 // Mark as hidden for the __proto__ accessor if needed.
817 if (obj->hidden_prototype()) {
818 map->set_is_hidden_prototype();
819 }
820
821 // Mark as needs_access_check if needed.
822 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +0000823 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000824 }
825
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000826 // Set interceptor information in the map.
827 if (!obj->named_property_handler()->IsUndefined()) {
828 map->set_has_named_interceptor();
829 }
830 if (!obj->indexed_property_handler()->IsUndefined()) {
831 map->set_has_indexed_interceptor();
832 }
833
834 // Set instance call-as-function information in the map.
835 if (!obj->instance_call_handler()->IsUndefined()) {
836 map->set_has_instance_call_handler();
837 }
838
839 result->shared()->set_function_data(*obj);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000840 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000841
842 // Recursively copy parent templates' accessors, 'data' may be modified.
843 Handle<DescriptorArray> array =
844 Handle<DescriptorArray>(map->instance_descriptors());
845 while (true) {
846 Handle<Object> props = Handle<Object>(obj->property_accessors());
847 if (!props->IsUndefined()) {
848 array = Factory::CopyAppendCallbackDescriptors(array, props);
849 }
850 Handle<Object> parent = Handle<Object>(obj->parent_template());
851 if (parent->IsUndefined()) break;
852 obj = Handle<FunctionTemplateInfo>::cast(parent);
853 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000854 if (!array->IsEmpty()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000855 map->set_instance_descriptors(*array);
856 }
857
858 return result;
859}
860
861
ager@chromium.org236ad962008-09-25 09:45:57 +0000862Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
863 CALL_HEAP_FUNCTION(MapCache::Allocate(at_least_space_for), MapCache);
864}
865
866
867static Object* UpdateMapCacheWith(Context* context,
868 FixedArray* keys,
869 Map* map) {
870 Object* result = MapCache::cast(context->map_cache())->Put(keys, map);
871 if (!result->IsFailure()) context->set_map_cache(MapCache::cast(result));
872 return result;
873}
874
875
876Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
877 Handle<FixedArray> keys,
878 Handle<Map> map) {
879 CALL_HEAP_FUNCTION(UpdateMapCacheWith(*context, *keys, *map), MapCache);
880}
881
882
883Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
884 Handle<FixedArray> keys) {
885 if (context->map_cache()->IsUndefined()) {
886 // Allocate the new map cache for the global context.
887 Handle<MapCache> new_cache = NewMapCache(24);
888 context->set_map_cache(*new_cache);
889 }
ager@chromium.org32912102009-01-16 10:38:43 +0000890 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +0000891 Handle<MapCache> cache =
892 Handle<MapCache>(MapCache::cast(context->map_cache()));
893 Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
894 if (result->IsMap()) return Handle<Map>::cast(result);
895 // Create a new map and add it to the cache.
896 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +0000897 CopyMap(Handle<Map>(context->object_function()->initial_map()),
898 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +0000899 AddToMapCache(context, keys, map);
900 return Handle<Map>(map);
901}
902
903
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000904void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
905 JSRegExp::Type type,
906 Handle<String> source,
907 JSRegExp::Flags flags,
908 Handle<Object> data) {
909 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
910
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000911 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
912 store->set(JSRegExp::kSourceIndex, *source);
913 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
914 store->set(JSRegExp::kAtomPatternIndex, *data);
915 regexp->set_data(*store);
916}
917
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000918void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
919 JSRegExp::Type type,
920 Handle<String> source,
921 JSRegExp::Flags flags,
922 int capture_count) {
923 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
924
925 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
926 store->set(JSRegExp::kSourceIndex, *source);
927 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
928 store->set(JSRegExp::kIrregexpASCIICodeIndex, Heap::the_hole_value());
929 store->set(JSRegExp::kIrregexpUC16CodeIndex, Heap::the_hole_value());
930 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
931 store->set(JSRegExp::kIrregexpCaptureCountIndex,
932 Smi::FromInt(capture_count));
933 regexp->set_data(*store);
934}
935
936
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000937
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000938void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
939 Handle<JSObject> instance,
940 bool* pending_exception) {
941 // Configure the instance by adding the properties specified by the
942 // instance template.
943 Handle<Object> instance_template = Handle<Object>(desc->instance_template());
944 if (!instance_template->IsUndefined()) {
945 Execution::ConfigureInstance(instance,
946 instance_template,
947 pending_exception);
948 } else {
949 *pending_exception = false;
950 }
951}
952
953
954} } // namespace v8::internal