blob: 622055c306908f92d4491e03358c6071ceb2df7b [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
2// 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"
31#include "debug.h"
32#include "execution.h"
33#include "factory.h"
34#include "macro-assembler.h"
35
36namespace v8 {
37namespace internal {
38
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
46Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size) {
47 ASSERT(0 <= size);
48 CALL_HEAP_FUNCTION(Heap::AllocateFixedArrayWithHoles(size), FixedArray);
49}
50
51
52Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
53 ASSERT(0 <= at_least_space_for);
54 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);
63}
64
65
66Handle<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
73// Symbols are created in the old generation (data space).
74Handle<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
90Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
91 PretenureFlag pretenure) {
92 CALL_HEAP_FUNCTION(Heap::AllocateStringFromTwoByte(string, pretenure),
93 String);
94}
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,
104 Handle<String> second) {
105 CALL_HEAP_FUNCTION(Heap::AllocateConsString(*first, *second), String);
106}
107
108
109Handle<String> Factory::NewStringSlice(Handle<String> str,
110 int begin,
111 int end) {
112 CALL_HEAP_FUNCTION(str->Slice(begin, end), String);
113}
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,
140 Handle<JSObject> extension,
141 bool is_catch_context) {
142 CALL_HEAP_FUNCTION(Heap::AllocateWithContext(*previous,
143 *extension,
144 is_catch_context),
145 Context);
146}
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) {
163 // 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.
179 Handle<Proxy> wrapper = Factory::NewProxy(0, TENURED);
180 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
181 script->set_source(*source);
182 script->set_name(Heap::undefined_value());
183 script->set_id(Heap::last_script_id());
184 script->set_line_offset(Smi::FromInt(0));
185 script->set_column_offset(Smi::FromInt(0));
186 script->set_data(Heap::undefined_value());
187 script->set_context_data(Heap::undefined_value());
188 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
189 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
190 script->set_wrapper(*wrapper);
191 script->set_line_ends(Heap::undefined_value());
192 script->set_eval_from_function(Heap::undefined_value());
193 script->set_eval_from_instructions_offset(Smi::FromInt(0));
194
195 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
209Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
210 ASSERT(0 <= length);
211 CALL_HEAP_FUNCTION(Heap::AllocateByteArray(length, pretenure), ByteArray);
212}
213
214
215Handle<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
225Handle<Map> Factory::NewMap(InstanceType type, int instance_size) {
226 CALL_HEAP_FUNCTION(Heap::AllocateMap(type, instance_size), Map);
227}
228
229
230Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
231 CALL_HEAP_FUNCTION(Heap::AllocateFunctionPrototype(*function), JSObject);
232}
233
234
235Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
236 CALL_HEAP_FUNCTION(src->CopyDropDescriptors(), Map);
237}
238
239
240Handle<Map> Factory::CopyMap(Handle<Map> src,
241 int extra_inobject_properties) {
242 Handle<Map> copy = CopyMapDropDescriptors(src);
243 // Check that we do not overflow the instance size when adding the
244 // extra inobject properties.
245 int instance_size_delta = extra_inobject_properties * kPointerSize;
246 int max_instance_size_delta =
247 JSObject::kMaxInstanceSize - copy->instance_size();
248 if (instance_size_delta > max_instance_size_delta) {
249 // If the instance size overflows, we allocate as many properties
250 // as we can as inobject properties.
251 instance_size_delta = max_instance_size_delta;
252 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
253 }
254 // Adjust the map with the extra inobject properties.
255 int inobject_properties =
256 copy->inobject_properties() + extra_inobject_properties;
257 copy->set_inobject_properties(inobject_properties);
258 copy->set_unused_property_fields(inobject_properties);
259 copy->set_instance_size(copy->instance_size() + instance_size_delta);
260 return copy;
261}
262
263Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
264 CALL_HEAP_FUNCTION(src->CopyDropTransitions(), Map);
265}
266
267
268Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
269 CALL_HEAP_FUNCTION(array->Copy(), FixedArray);
270}
271
272
273Handle<JSFunction> Factory::BaseNewFunctionFromBoilerplate(
274 Handle<JSFunction> boilerplate,
275 Handle<Map> function_map) {
276 ASSERT(boilerplate->IsBoilerplate());
277 ASSERT(!boilerplate->has_initial_map());
278 ASSERT(!boilerplate->has_prototype());
279 ASSERT(boilerplate->properties() == Heap::empty_fixed_array());
280 ASSERT(boilerplate->elements() == Heap::empty_fixed_array());
281 CALL_HEAP_FUNCTION(Heap::AllocateFunction(*function_map,
282 boilerplate->shared(),
283 Heap::the_hole_value()),
284 JSFunction);
285}
286
287
288Handle<JSFunction> Factory::NewFunctionFromBoilerplate(
289 Handle<JSFunction> boilerplate,
290 Handle<Context> context) {
291 Handle<JSFunction> result =
292 BaseNewFunctionFromBoilerplate(boilerplate, Top::function_map());
293 result->set_context(*context);
294 int number_of_literals = boilerplate->NumberOfLiterals();
295 Handle<FixedArray> literals =
296 Factory::NewFixedArray(number_of_literals, TENURED);
297 if (number_of_literals > 0) {
298 // Store the object, regexp and array functions in the literals
299 // array prefix. These functions will be used when creating
300 // object, regexp and array literals in this function.
301 literals->set(JSFunction::kLiteralGlobalContextIndex,
302 context->global_context());
303 }
304 result->set_literals(*literals);
305 ASSERT(!result->IsBoilerplate());
306 return result;
307}
308
309
310Handle<Object> Factory::NewNumber(double value,
311 PretenureFlag pretenure) {
312 CALL_HEAP_FUNCTION(Heap::NumberFromDouble(value, pretenure), Object);
313}
314
315
316Handle<Object> Factory::NewNumberFromInt(int value) {
317 CALL_HEAP_FUNCTION(Heap::NumberFromInt32(value), Object);
318}
319
320
321Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
322 CALL_HEAP_FUNCTION(Heap::NumberFromUint32(value), Object);
323}
324
325
326Handle<JSObject> Factory::NewNeanderObject() {
327 CALL_HEAP_FUNCTION(Heap::AllocateJSObjectFromMap(Heap::neander_map()),
328 JSObject);
329}
330
331
332Handle<Object> Factory::NewTypeError(const char* type,
333 Vector< Handle<Object> > args) {
334 return NewError("MakeTypeError", type, args);
335}
336
337
338Handle<Object> Factory::NewTypeError(Handle<String> message) {
339 return NewError("$TypeError", message);
340}
341
342
343Handle<Object> Factory::NewRangeError(const char* type,
344 Vector< Handle<Object> > args) {
345 return NewError("MakeRangeError", type, args);
346}
347
348
349Handle<Object> Factory::NewRangeError(Handle<String> message) {
350 return NewError("$RangeError", message);
351}
352
353
354Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
355 return NewError("MakeSyntaxError", type, args);
356}
357
358
359Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
360 return NewError("$SyntaxError", message);
361}
362
363
364Handle<Object> Factory::NewReferenceError(const char* type,
365 Vector< Handle<Object> > args) {
366 return NewError("MakeReferenceError", type, args);
367}
368
369
370Handle<Object> Factory::NewReferenceError(Handle<String> message) {
371 return NewError("$ReferenceError", message);
372}
373
374
375Handle<Object> Factory::NewError(const char* maker, const char* type,
376 Vector< Handle<Object> > args) {
377 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
378 Handle<FixedArray> array = Factory::NewFixedArray(args.length());
379 for (int i = 0; i < args.length(); i++) {
380 array->set(i, *args[i]);
381 }
382 Handle<JSArray> object = Factory::NewJSArrayWithElements(array);
383 Handle<Object> result = NewError(maker, type, object);
384 return result.EscapeFrom(&scope);
385}
386
387
388Handle<Object> Factory::NewEvalError(const char* type,
389 Vector< Handle<Object> > args) {
390 return NewError("MakeEvalError", type, args);
391}
392
393
394Handle<Object> Factory::NewError(const char* type,
395 Vector< Handle<Object> > args) {
396 return NewError("MakeError", type, args);
397}
398
399
400Handle<Object> Factory::NewError(const char* maker,
401 const char* type,
402 Handle<JSArray> args) {
403 Handle<String> make_str = Factory::LookupAsciiSymbol(maker);
404 Handle<Object> fun_obj(Top::builtins()->GetProperty(*make_str));
405 // If the builtins haven't been properly configured yet this error
406 // constructor may not have been defined. Bail out.
407 if (!fun_obj->IsJSFunction())
408 return Factory::undefined_value();
409 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
410 Handle<Object> type_obj = Factory::LookupAsciiSymbol(type);
411 Object** argv[2] = { type_obj.location(),
412 Handle<Object>::cast(args).location() };
413
414 // Invoke the JavaScript factory method. If an exception is thrown while
415 // running the factory method, use the exception as the result.
416 bool caught_exception;
417 Handle<Object> result = Execution::TryCall(fun,
418 Top::builtins(),
419 2,
420 argv,
421 &caught_exception);
422 return result;
423}
424
425
426Handle<Object> Factory::NewError(Handle<String> message) {
427 return NewError("$Error", message);
428}
429
430
431Handle<Object> Factory::NewError(const char* constructor,
432 Handle<String> message) {
433 Handle<String> constr = Factory::LookupAsciiSymbol(constructor);
434 Handle<JSFunction> fun =
435 Handle<JSFunction>(
436 JSFunction::cast(
437 Top::builtins()->GetProperty(*constr)));
438 Object** argv[1] = { Handle<Object>::cast(message).location() };
439
440 // Invoke the JavaScript factory method. If an exception is thrown while
441 // running the factory method, use the exception as the result.
442 bool caught_exception;
443 Handle<Object> result = Execution::TryCall(fun,
444 Top::builtins(),
445 1,
446 argv,
447 &caught_exception);
448 return result;
449}
450
451
452Handle<JSFunction> Factory::NewFunction(Handle<String> name,
453 InstanceType type,
454 int instance_size,
455 Handle<Code> code,
456 bool force_initial_map) {
457 // Allocate the function
458 Handle<JSFunction> function = NewFunction(name, the_hole_value());
459 function->set_code(*code);
460
461 if (force_initial_map ||
462 type != JS_OBJECT_TYPE ||
463 instance_size != JSObject::kHeaderSize) {
464 Handle<Map> initial_map = NewMap(type, instance_size);
465 Handle<JSObject> prototype = NewFunctionPrototype(function);
466 initial_map->set_prototype(*prototype);
467 function->set_initial_map(*initial_map);
468 initial_map->set_constructor(*function);
469 } else {
470 ASSERT(!function->has_initial_map());
471 ASSERT(!function->has_prototype());
472 }
473
474 return function;
475}
476
477
478Handle<JSFunction> Factory::NewFunctionBoilerplate(Handle<String> name,
479 int number_of_literals,
480 bool contains_array_literal,
481 Handle<Code> code) {
482 Handle<JSFunction> function = NewFunctionBoilerplate(name);
483 function->set_code(*code);
484 int literals_array_size = number_of_literals;
485 // If the function contains object, regexp or array literals,
486 // allocate extra space for a literals array prefix containing the
487 // object, regexp and array constructor functions.
488 if (number_of_literals > 0 || contains_array_literal) {
489 literals_array_size += JSFunction::kLiteralsPrefixSize;
490 }
491 Handle<FixedArray> literals =
492 Factory::NewFixedArray(literals_array_size, TENURED);
493 function->set_literals(*literals);
494 ASSERT(!function->has_initial_map());
495 ASSERT(!function->has_prototype());
496 return function;
497}
498
499
500Handle<JSFunction> Factory::NewFunctionBoilerplate(Handle<String> name) {
501 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
502 CALL_HEAP_FUNCTION(Heap::AllocateFunction(Heap::boilerplate_function_map(),
503 *shared,
504 Heap::the_hole_value()),
505 JSFunction);
506}
507
508
509Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
510 InstanceType type,
511 int instance_size,
512 Handle<JSObject> prototype,
513 Handle<Code> code,
514 bool force_initial_map) {
515 // Allocate the function
516 Handle<JSFunction> function = NewFunction(name, prototype);
517
518 function->set_code(*code);
519
520 if (force_initial_map ||
521 type != JS_OBJECT_TYPE ||
522 instance_size != JSObject::kHeaderSize) {
523 Handle<Map> initial_map = NewMap(type, instance_size);
524 function->set_initial_map(*initial_map);
525 initial_map->set_constructor(*function);
526 }
527
528 // Set function.prototype and give the prototype a constructor
529 // property that refers to the function.
530 SetPrototypeProperty(function, prototype);
531 SetProperty(prototype, Factory::constructor_symbol(), function, DONT_ENUM);
532 return function;
533}
534
535
536Handle<Code> Factory::NewCode(const CodeDesc& desc,
537 ZoneScopeInfo* sinfo,
538 Code::Flags flags,
539 Handle<Object> self_ref) {
540 CALL_HEAP_FUNCTION(Heap::CreateCode(desc, sinfo, flags, self_ref), Code);
541}
542
543
544Handle<Code> Factory::CopyCode(Handle<Code> code) {
545 CALL_HEAP_FUNCTION(Heap::CopyCode(*code), Code);
546}
547
548
549static inline Object* DoCopyInsert(DescriptorArray* array,
550 String* key,
551 Object* value,
552 PropertyAttributes attributes) {
553 CallbacksDescriptor desc(key, value, attributes);
554 Object* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
555 return obj;
556}
557
558
559// Allocate the new array.
560Handle<DescriptorArray> Factory::CopyAppendProxyDescriptor(
561 Handle<DescriptorArray> array,
562 Handle<String> key,
563 Handle<Object> value,
564 PropertyAttributes attributes) {
565 CALL_HEAP_FUNCTION(DoCopyInsert(*array, *key, *value, attributes),
566 DescriptorArray);
567}
568
569
570Handle<String> Factory::SymbolFromString(Handle<String> value) {
571 CALL_HEAP_FUNCTION(Heap::LookupSymbol(*value), String);
572}
573
574
575Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
576 Handle<DescriptorArray> array,
577 Handle<Object> descriptors) {
578 v8::NeanderArray callbacks(descriptors);
579 int nof_callbacks = callbacks.length();
580 Handle<DescriptorArray> result =
581 NewDescriptorArray(array->number_of_descriptors() + nof_callbacks);
582
583 // Number of descriptors added to the result so far.
584 int descriptor_count = 0;
585
586 // Copy the descriptors from the array.
587 for (int i = 0; i < array->number_of_descriptors(); i++) {
588 if (array->GetType(i) != NULL_DESCRIPTOR) {
589 result->CopyFrom(descriptor_count++, *array, i);
590 }
591 }
592
593 // Number of duplicates detected.
594 int duplicates = 0;
595
596 // Fill in new callback descriptors. Process the callbacks from
597 // back to front so that the last callback with a given name takes
598 // precedence over previously added callbacks with that name.
599 for (int i = nof_callbacks - 1; i >= 0; i--) {
600 Handle<AccessorInfo> entry =
601 Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
602 // Ensure the key is a symbol before writing into the instance descriptor.
603 Handle<String> key =
604 SymbolFromString(Handle<String>(String::cast(entry->name())));
605 // Check if a descriptor with this name already exists before writing.
606 if (result->LinearSearch(*key, descriptor_count) ==
607 DescriptorArray::kNotFound) {
608 CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
609 result->Set(descriptor_count, &desc);
610 descriptor_count++;
611 } else {
612 duplicates++;
613 }
614 }
615
616 // If duplicates were detected, allocate a result of the right size
617 // and transfer the elements.
618 if (duplicates > 0) {
619 int number_of_descriptors = result->number_of_descriptors() - duplicates;
620 Handle<DescriptorArray> new_result =
621 NewDescriptorArray(number_of_descriptors);
622 for (int i = 0; i < number_of_descriptors; i++) {
623 new_result->CopyFrom(i, *result, i);
624 }
625 result = new_result;
626 }
627
628 // Sort the result before returning.
629 result->Sort();
630 return result;
631}
632
633
634Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
635 PretenureFlag pretenure) {
636 CALL_HEAP_FUNCTION(Heap::AllocateJSObject(*constructor, pretenure), JSObject);
637}
638
639
640Handle<GlobalObject> Factory::NewGlobalObject(
641 Handle<JSFunction> constructor) {
642 CALL_HEAP_FUNCTION(Heap::AllocateGlobalObject(*constructor),
643 GlobalObject);
644}
645
646
647
648Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
649 CALL_HEAP_FUNCTION(Heap::AllocateJSObjectFromMap(*map, NOT_TENURED),
650 JSObject);
651}
652
653
654Handle<JSArray> Factory::NewJSArray(int length,
655 PretenureFlag pretenure) {
656 Handle<JSObject> obj = NewJSObject(Top::array_function(), pretenure);
657 CALL_HEAP_FUNCTION(Handle<JSArray>::cast(obj)->Initialize(length), JSArray);
658}
659
660
661Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArray> elements,
662 PretenureFlag pretenure) {
663 Handle<JSArray> result =
664 Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure));
665 result->SetContent(*elements);
666 return result;
667}
668
669
670Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
671 CALL_HEAP_FUNCTION(Heap::AllocateSharedFunctionInfo(*name),
672 SharedFunctionInfo);
673}
674
675
676Handle<String> Factory::NumberToString(Handle<Object> number) {
677 CALL_HEAP_FUNCTION(Heap::NumberToString(*number), String);
678}
679
680
681Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
682 Handle<NumberDictionary> dictionary,
683 uint32_t key,
684 Handle<Object> value) {
685 CALL_HEAP_FUNCTION(dictionary->AtNumberPut(key, *value), NumberDictionary);
686}
687
688
689Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
690 Handle<Object> prototype) {
691 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
692 CALL_HEAP_FUNCTION(Heap::AllocateFunction(*Top::function_map(),
693 *function_share,
694 *prototype),
695 JSFunction);
696}
697
698
699Handle<JSFunction> Factory::NewFunction(Handle<String> name,
700 Handle<Object> prototype) {
701 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
702 fun->set_context(Top::context()->global_context());
703 return fun;
704}
705
706
707Handle<Object> Factory::ToObject(Handle<Object> object,
708 Handle<Context> global_context) {
709 CALL_HEAP_FUNCTION(object->ToObject(*global_context), Object);
710}
711
712
713#ifdef ENABLE_DEBUGGER_SUPPORT
714Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
715 // Get the original code of the function.
716 Handle<Code> code(shared->code());
717
718 // Create a copy of the code before allocating the debug info object to avoid
719 // allocation while setting up the debug info object.
720 Handle<Code> original_code(*Factory::CopyCode(code));
721
722 // Allocate initial fixed array for active break points before allocating the
723 // debug info object to avoid allocation while setting up the debug info
724 // object.
725 Handle<FixedArray> break_points(
726 Factory::NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
727
728 // Create and set up the debug info object. Debug info contains function, a
729 // copy of the original code, the executing code and initial fixed array for
730 // active break points.
731 Handle<DebugInfo> debug_info =
732 Handle<DebugInfo>::cast(Factory::NewStruct(DEBUG_INFO_TYPE));
733 debug_info->set_shared(*shared);
734 debug_info->set_original_code(*original_code);
735 debug_info->set_code(*code);
736 debug_info->set_break_points(*break_points);
737
738 // Link debug info to function.
739 shared->set_debug_info(*debug_info);
740
741 return debug_info;
742}
743#endif
744
745
746Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
747 int length) {
748 CALL_HEAP_FUNCTION(Heap::AllocateArgumentsObject(*callee, length), JSObject);
749}
750
751
752Handle<JSFunction> Factory::CreateApiFunction(
753 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
754 Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::HandleApiCall));
755
756 int internal_field_count = 0;
757 if (!obj->instance_template()->IsUndefined()) {
758 Handle<ObjectTemplateInfo> instance_template =
759 Handle<ObjectTemplateInfo>(
760 ObjectTemplateInfo::cast(obj->instance_template()));
761 internal_field_count =
762 Smi::cast(instance_template->internal_field_count())->value();
763 }
764
765 int instance_size = kPointerSize * internal_field_count;
766 InstanceType type = INVALID_TYPE;
767 switch (instance_type) {
768 case JavaScriptObject:
769 type = JS_OBJECT_TYPE;
770 instance_size += JSObject::kHeaderSize;
771 break;
772 case InnerGlobalObject:
773 type = JS_GLOBAL_OBJECT_TYPE;
774 instance_size += JSGlobalObject::kSize;
775 break;
776 case OuterGlobalObject:
777 type = JS_GLOBAL_PROXY_TYPE;
778 instance_size += JSGlobalProxy::kSize;
779 break;
780 default:
781 break;
782 }
783 ASSERT(type != INVALID_TYPE);
784
785 Handle<JSFunction> result =
786 Factory::NewFunction(Factory::empty_symbol(),
787 type,
788 instance_size,
789 code,
790 true);
791 // Set class name.
792 Handle<Object> class_name = Handle<Object>(obj->class_name());
793 if (class_name->IsString()) {
794 result->shared()->set_instance_class_name(*class_name);
795 result->shared()->set_name(*class_name);
796 }
797
798 Handle<Map> map = Handle<Map>(result->initial_map());
799
800 // Mark as undetectable if needed.
801 if (obj->undetectable()) {
802 map->set_is_undetectable();
803 }
804
805 // Mark as hidden for the __proto__ accessor if needed.
806 if (obj->hidden_prototype()) {
807 map->set_is_hidden_prototype();
808 }
809
810 // Mark as needs_access_check if needed.
811 if (obj->needs_access_check()) {
812 map->set_is_access_check_needed(true);
813 }
814
815 // Set interceptor information in the map.
816 if (!obj->named_property_handler()->IsUndefined()) {
817 map->set_has_named_interceptor();
818 }
819 if (!obj->indexed_property_handler()->IsUndefined()) {
820 map->set_has_indexed_interceptor();
821 }
822
823 // Set instance call-as-function information in the map.
824 if (!obj->instance_call_handler()->IsUndefined()) {
825 map->set_has_instance_call_handler();
826 }
827
828 result->shared()->set_function_data(*obj);
829 result->shared()->DontAdaptArguments();
830
831 // Recursively copy parent templates' accessors, 'data' may be modified.
832 Handle<DescriptorArray> array =
833 Handle<DescriptorArray>(map->instance_descriptors());
834 while (true) {
835 Handle<Object> props = Handle<Object>(obj->property_accessors());
836 if (!props->IsUndefined()) {
837 array = Factory::CopyAppendCallbackDescriptors(array, props);
838 }
839 Handle<Object> parent = Handle<Object>(obj->parent_template());
840 if (parent->IsUndefined()) break;
841 obj = Handle<FunctionTemplateInfo>::cast(parent);
842 }
843 if (!array->IsEmpty()) {
844 map->set_instance_descriptors(*array);
845 }
846
847 return result;
848}
849
850
851Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
852 CALL_HEAP_FUNCTION(MapCache::Allocate(at_least_space_for), MapCache);
853}
854
855
856static Object* UpdateMapCacheWith(Context* context,
857 FixedArray* keys,
858 Map* map) {
859 Object* result = MapCache::cast(context->map_cache())->Put(keys, map);
860 if (!result->IsFailure()) context->set_map_cache(MapCache::cast(result));
861 return result;
862}
863
864
865Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
866 Handle<FixedArray> keys,
867 Handle<Map> map) {
868 CALL_HEAP_FUNCTION(UpdateMapCacheWith(*context, *keys, *map), MapCache);
869}
870
871
872Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
873 Handle<FixedArray> keys) {
874 if (context->map_cache()->IsUndefined()) {
875 // Allocate the new map cache for the global context.
876 Handle<MapCache> new_cache = NewMapCache(24);
877 context->set_map_cache(*new_cache);
878 }
879 // Check to see whether there is a matching element in the cache.
880 Handle<MapCache> cache =
881 Handle<MapCache>(MapCache::cast(context->map_cache()));
882 Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
883 if (result->IsMap()) return Handle<Map>::cast(result);
884 // Create a new map and add it to the cache.
885 Handle<Map> map =
886 CopyMap(Handle<Map>(context->object_function()->initial_map()),
887 keys->length());
888 AddToMapCache(context, keys, map);
889 return Handle<Map>(map);
890}
891
892
893void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
894 JSRegExp::Type type,
895 Handle<String> source,
896 JSRegExp::Flags flags,
897 Handle<Object> data) {
898 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
899
900 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
901 store->set(JSRegExp::kSourceIndex, *source);
902 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
903 store->set(JSRegExp::kAtomPatternIndex, *data);
904 regexp->set_data(*store);
905}
906
907void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
908 JSRegExp::Type type,
909 Handle<String> source,
910 JSRegExp::Flags flags,
911 int capture_count) {
912 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
913
914 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
915 store->set(JSRegExp::kSourceIndex, *source);
916 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
917 store->set(JSRegExp::kIrregexpASCIICodeIndex, Heap::the_hole_value());
918 store->set(JSRegExp::kIrregexpUC16CodeIndex, Heap::the_hole_value());
919 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
920 store->set(JSRegExp::kIrregexpCaptureCountIndex,
921 Smi::FromInt(capture_count));
922 regexp->set_data(*store);
923}
924
925
926
927void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
928 Handle<JSObject> instance,
929 bool* pending_exception) {
930 // Configure the instance by adding the properties specified by the
931 // instance template.
932 Handle<Object> instance_template = Handle<Object>(desc->instance_template());
933 if (!instance_template->IsUndefined()) {
934 Execution::ConfigureInstance(instance,
935 instance_template,
936 pending_exception);
937 } else {
938 *pending_exception = false;
939 }
940}
941
942
943} } // namespace v8::internal