blob: ee5c37bf081a406cc803df1a9c50a5f556fa3d6c [file] [log] [blame]
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001// Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +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"
31#include "debug.h"
32#include "execution.h"
33#include "factory.h"
34#include "macro-assembler.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010035#include "objects.h"
Iain Merrick75681382010-08-19 15:07:18 +010036#include "objects-visiting.h"
Ben Murdoch69a99ed2011-11-30 16:03:39 +000037#include "scopeinfo.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000038
39namespace v8 {
40namespace internal {
41
42
43Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
44 ASSERT(0 <= size);
Steve Block44f0eee2011-05-26 01:26:41 +010045 CALL_HEAP_FUNCTION(
46 isolate(),
47 isolate()->heap()->AllocateFixedArray(size, pretenure),
48 FixedArray);
Steve Blocka7e24c12009-10-30 11:49:00 +000049}
50
51
Steve Block6ded16b2010-05-10 14:33:55 +010052Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
53 PretenureFlag pretenure) {
Steve Blocka7e24c12009-10-30 11:49:00 +000054 ASSERT(0 <= size);
Steve Block44f0eee2011-05-26 01:26:41 +010055 CALL_HEAP_FUNCTION(
56 isolate(),
57 isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure),
58 FixedArray);
Steve Blocka7e24c12009-10-30 11:49:00 +000059}
60
61
Ben Murdoch3fb3ca82011-12-02 17:19:32 +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
Steve Blocka7e24c12009-10-30 11:49:00 +000072Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
73 ASSERT(0 <= at_least_space_for);
Steve Block44f0eee2011-05-26 01:26:41 +010074 CALL_HEAP_FUNCTION(isolate(),
75 StringDictionary::Allocate(at_least_space_for),
Steve Blocka7e24c12009-10-30 11:49:00 +000076 StringDictionary);
77}
78
79
80Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
81 ASSERT(0 <= at_least_space_for);
Steve Block44f0eee2011-05-26 01:26:41 +010082 CALL_HEAP_FUNCTION(isolate(),
83 NumberDictionary::Allocate(at_least_space_for),
Steve Blocka7e24c12009-10-30 11:49:00 +000084 NumberDictionary);
85}
86
87
Ben Murdoch69a99ed2011-11-30 16:03:39 +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
Steve Blocka7e24c12009-10-30 11:49:00 +000096Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
97 ASSERT(0 <= number_of_descriptors);
Steve Block44f0eee2011-05-26 01:26:41 +010098 CALL_HEAP_FUNCTION(isolate(),
99 DescriptorArray::Allocate(number_of_descriptors),
Steve Blocka7e24c12009-10-30 11:49:00 +0000100 DescriptorArray);
101}
102
103
Ben Murdochb0fe1622011-05-05 13:52:32 +0100104Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
105 int deopt_entry_count,
106 PretenureFlag pretenure) {
107 ASSERT(deopt_entry_count > 0);
Steve Block44f0eee2011-05-26 01:26:41 +0100108 CALL_HEAP_FUNCTION(isolate(),
109 DeoptimizationInputData::Allocate(deopt_entry_count,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100110 pretenure),
111 DeoptimizationInputData);
112}
113
114
115Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
116 int deopt_entry_count,
117 PretenureFlag pretenure) {
118 ASSERT(deopt_entry_count > 0);
Steve Block44f0eee2011-05-26 01:26:41 +0100119 CALL_HEAP_FUNCTION(isolate(),
120 DeoptimizationOutputData::Allocate(deopt_entry_count,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100121 pretenure),
122 DeoptimizationOutputData);
123}
124
125
Steve Blocka7e24c12009-10-30 11:49:00 +0000126// Symbols are created in the old generation (data space).
127Handle<String> Factory::LookupSymbol(Vector<const char> string) {
Steve Block44f0eee2011-05-26 01:26:41 +0100128 CALL_HEAP_FUNCTION(isolate(),
129 isolate()->heap()->LookupSymbol(string),
130 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000131}
132
Ben Murdoch257744e2011-11-30 15:57:28 +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
Steve Block9fac8402011-05-12 15:51:54 +0100140Handle<String> Factory::LookupAsciiSymbol(Vector<const char> string) {
Steve Block44f0eee2011-05-26 01:26:41 +0100141 CALL_HEAP_FUNCTION(isolate(),
142 isolate()->heap()->LookupAsciiSymbol(string),
143 String);
Steve Block9fac8402011-05-12 15:51:54 +0100144}
145
Ben Murdoch257744e2011-11-30 15:57:28 +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
Steve Block9fac8402011-05-12 15:51:54 +0100158Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
Steve Block44f0eee2011-05-26 01:26:41 +0100159 CALL_HEAP_FUNCTION(isolate(),
160 isolate()->heap()->LookupTwoByteSymbol(string),
161 String);
Steve Block9fac8402011-05-12 15:51:54 +0100162}
163
Steve Blocka7e24c12009-10-30 11:49:00 +0000164
165Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
166 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100167 CALL_HEAP_FUNCTION(
168 isolate(),
169 isolate()->heap()->AllocateStringFromAscii(string, pretenure),
170 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000171}
172
173Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
174 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100175 CALL_HEAP_FUNCTION(
176 isolate(),
177 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
178 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000179}
180
181
182Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
183 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100184 CALL_HEAP_FUNCTION(
185 isolate(),
186 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
187 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000188}
189
190
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000191Handle<SeqAsciiString> Factory::NewRawAsciiString(int length,
192 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100193 CALL_HEAP_FUNCTION(
194 isolate(),
195 isolate()->heap()->AllocateRawAsciiString(length, pretenure),
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000196 SeqAsciiString);
Leon Clarkeac952652010-07-15 11:15:24 +0100197}
198
199
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000200Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
201 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100202 CALL_HEAP_FUNCTION(
203 isolate(),
204 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000205 SeqTwoByteString);
Steve Blocka7e24c12009-10-30 11:49:00 +0000206}
207
208
209Handle<String> Factory::NewConsString(Handle<String> first,
210 Handle<String> second) {
Steve Block44f0eee2011-05-26 01:26:41 +0100211 CALL_HEAP_FUNCTION(isolate(),
212 isolate()->heap()->AllocateConsString(*first, *second),
213 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000214}
215
216
Steve Blockd0582a62009-12-15 09:54:21 +0000217Handle<String> Factory::NewSubString(Handle<String> str,
218 int begin,
219 int end) {
Steve Block44f0eee2011-05-26 01:26:41 +0100220 CALL_HEAP_FUNCTION(isolate(),
221 str->SubString(begin, end),
222 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000223}
224
225
Ben Murdoch3fb3ca82011-12-02 17:19:32 +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
Steve Blocka7e24c12009-10-30 11:49:00 +0000236Handle<String> Factory::NewExternalStringFromAscii(
237 ExternalAsciiString::Resource* resource) {
Steve Block44f0eee2011-05-26 01:26:41 +0100238 CALL_HEAP_FUNCTION(
239 isolate(),
240 isolate()->heap()->AllocateExternalStringFromAscii(resource),
241 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000242}
243
244
245Handle<String> Factory::NewExternalStringFromTwoByte(
246 ExternalTwoByteString::Resource* resource) {
Steve Block44f0eee2011-05-26 01:26:41 +0100247 CALL_HEAP_FUNCTION(
248 isolate(),
249 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
250 String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000251}
252
253
254Handle<Context> Factory::NewGlobalContext() {
Steve Block44f0eee2011-05-26 01:26:41 +0100255 CALL_HEAP_FUNCTION(
256 isolate(),
257 isolate()->heap()->AllocateGlobalContext(),
258 Context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000259}
260
261
262Handle<Context> Factory::NewFunctionContext(int length,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000263 Handle<JSFunction> function) {
Steve Block44f0eee2011-05-26 01:26:41 +0100264 CALL_HEAP_FUNCTION(
265 isolate(),
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000266 isolate()->heap()->AllocateFunctionContext(length, *function),
Steve Block44f0eee2011-05-26 01:26:41 +0100267 Context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000268}
269
270
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000271Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
272 Handle<Context> previous,
273 Handle<String> name,
274 Handle<Object> thrown_object) {
Steve Block44f0eee2011-05-26 01:26:41 +0100275 CALL_HEAP_FUNCTION(
276 isolate(),
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000277 isolate()->heap()->AllocateCatchContext(*function,
278 *previous,
279 *name,
280 *thrown_object),
281 Context);
282}
283
284
285Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
286 Handle<Context> previous,
287 Handle<JSObject> extension) {
288 CALL_HEAP_FUNCTION(
289 isolate(),
290 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
Steve Block44f0eee2011-05-26 01:26:41 +0100291 Context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000292}
293
294
Ben Murdoch69a99ed2011-11-30 16:03:39 +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
Steve Blocka7e24c12009-10-30 11:49:00 +0000308Handle<Struct> Factory::NewStruct(InstanceType type) {
Steve Block44f0eee2011-05-26 01:26:41 +0100309 CALL_HEAP_FUNCTION(
310 isolate(),
311 isolate()->heap()->AllocateStruct(type),
312 Struct);
Steve Blocka7e24c12009-10-30 11:49:00 +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) {
325 // Generate id for this script.
326 int id;
Steve Block44f0eee2011-05-26 01:26:41 +0100327 Heap* heap = isolate()->heap();
328 if (heap->last_script_id()->IsUndefined()) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000329 // Script ids start from one.
330 id = 1;
331 } else {
332 // Increment id, wrap when positive smi is exhausted.
Steve Block44f0eee2011-05-26 01:26:41 +0100333 id = Smi::cast(heap->last_script_id())->value();
Steve Blocka7e24c12009-10-30 11:49:00 +0000334 id++;
335 if (!Smi::IsValid(id)) {
336 id = 0;
337 }
338 }
Steve Block44f0eee2011-05-26 01:26:41 +0100339 heap->SetLastScriptId(Smi::FromInt(id));
Steve Blocka7e24c12009-10-30 11:49:00 +0000340
341 // Create and initialize script object.
Ben Murdoch257744e2011-11-30 15:57:28 +0000342 Handle<Foreign> wrapper = NewForeign(0, TENURED);
Steve Blocka7e24c12009-10-30 11:49:00 +0000343 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
344 script->set_source(*source);
Steve Block44f0eee2011-05-26 01:26:41 +0100345 script->set_name(heap->undefined_value());
346 script->set_id(heap->last_script_id());
Steve Blocka7e24c12009-10-30 11:49:00 +0000347 script->set_line_offset(Smi::FromInt(0));
348 script->set_column_offset(Smi::FromInt(0));
Steve Block44f0eee2011-05-26 01:26:41 +0100349 script->set_data(heap->undefined_value());
350 script->set_context_data(heap->undefined_value());
Steve Blocka7e24c12009-10-30 11:49:00 +0000351 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
352 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
353 script->set_wrapper(*wrapper);
Steve Block44f0eee2011-05-26 01:26:41 +0100354 script->set_line_ends(heap->undefined_value());
355 script->set_eval_from_shared(heap->undefined_value());
Steve Blocka7e24c12009-10-30 11:49:00 +0000356 script->set_eval_from_instructions_offset(Smi::FromInt(0));
357
358 return script;
359}
360
361
Ben Murdoch257744e2011-11-30 15:57:28 +0000362Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100363 CALL_HEAP_FUNCTION(isolate(),
Ben Murdoch257744e2011-11-30 15:57:28 +0000364 isolate()->heap()->AllocateForeign(addr, pretenure),
365 Foreign);
Steve Blocka7e24c12009-10-30 11:49:00 +0000366}
367
368
Ben Murdoch257744e2011-11-30 15:57:28 +0000369Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
370 return NewForeign((Address) desc, TENURED);
Steve Blocka7e24c12009-10-30 11:49:00 +0000371}
372
373
374Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
375 ASSERT(0 <= length);
Steve Block44f0eee2011-05-26 01:26:41 +0100376 CALL_HEAP_FUNCTION(
377 isolate(),
378 isolate()->heap()->AllocateByteArray(length, pretenure),
379 ByteArray);
Steve Blocka7e24c12009-10-30 11:49:00 +0000380}
381
382
Steve Block3ce2e202009-11-05 08:53:23 +0000383Handle<ExternalArray> Factory::NewExternalArray(int length,
384 ExternalArrayType array_type,
385 void* external_pointer,
386 PretenureFlag pretenure) {
387 ASSERT(0 <= length);
Steve Block44f0eee2011-05-26 01:26:41 +0100388 CALL_HEAP_FUNCTION(
389 isolate(),
390 isolate()->heap()->AllocateExternalArray(length,
391 array_type,
392 external_pointer,
393 pretenure),
394 ExternalArray);
Steve Block3ce2e202009-11-05 08:53:23 +0000395}
396
397
Ben Murdochb0fe1622011-05-05 13:52:32 +0100398Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
399 Handle<Object> value) {
Steve Block44f0eee2011-05-26 01:26:41 +0100400 CALL_HEAP_FUNCTION(
401 isolate(),
402 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
403 JSGlobalPropertyCell);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100404}
405
406
Steve Blocka7e24c12009-10-30 11:49:00 +0000407Handle<Map> Factory::NewMap(InstanceType type, int instance_size) {
Steve Block44f0eee2011-05-26 01:26:41 +0100408 CALL_HEAP_FUNCTION(
409 isolate(),
410 isolate()->heap()->AllocateMap(type, instance_size),
411 Map);
Steve Blocka7e24c12009-10-30 11:49:00 +0000412}
413
414
415Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
Steve Block44f0eee2011-05-26 01:26:41 +0100416 CALL_HEAP_FUNCTION(
417 isolate(),
418 isolate()->heap()->AllocateFunctionPrototype(*function),
419 JSObject);
Steve Blocka7e24c12009-10-30 11:49:00 +0000420}
421
422
423Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
Steve Block44f0eee2011-05-26 01:26:41 +0100424 CALL_HEAP_FUNCTION(isolate(), src->CopyDropDescriptors(), Map);
Steve Blocka7e24c12009-10-30 11:49:00 +0000425}
426
427
428Handle<Map> Factory::CopyMap(Handle<Map> src,
429 int extra_inobject_properties) {
430 Handle<Map> copy = CopyMapDropDescriptors(src);
431 // 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);
Iain Merrick75681382010-08-19 15:07:18 +0100448 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
Steve Blocka7e24c12009-10-30 11:49:00 +0000449 return copy;
450}
451
Steve Block8defd9f2010-07-08 12:39:36 +0100452
Steve Blocka7e24c12009-10-30 11:49:00 +0000453Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
Steve Block44f0eee2011-05-26 01:26:41 +0100454 CALL_HEAP_FUNCTION(isolate(), src->CopyDropTransitions(), Map);
Steve Blocka7e24c12009-10-30 11:49:00 +0000455}
456
457
Steve Block8defd9f2010-07-08 12:39:36 +0100458Handle<Map> Factory::GetFastElementsMap(Handle<Map> src) {
Steve Block44f0eee2011-05-26 01:26:41 +0100459 CALL_HEAP_FUNCTION(isolate(), src->GetFastElementsMap(), Map);
Steve Block8defd9f2010-07-08 12:39:36 +0100460}
461
462
463Handle<Map> Factory::GetSlowElementsMap(Handle<Map> src) {
Steve Block44f0eee2011-05-26 01:26:41 +0100464 CALL_HEAP_FUNCTION(isolate(), src->GetSlowElementsMap(), Map);
Steve Block8defd9f2010-07-08 12:39:36 +0100465}
466
467
Steve Block44f0eee2011-05-26 01:26:41 +0100468Handle<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);
Steve Block1e0659c2011-05-24 12:43:12 +0100476}
477
478
Steve Blocka7e24c12009-10-30 11:49:00 +0000479Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
Steve Block44f0eee2011-05-26 01:26:41 +0100480 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
Steve Blocka7e24c12009-10-30 11:49:00 +0000481}
482
483
Steve Block6ded16b2010-05-10 14:33:55 +0100484Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
485 Handle<SharedFunctionInfo> function_info,
Leon Clarkee46be812010-01-19 14:06:41 +0000486 Handle<Map> function_map,
487 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100488 CALL_HEAP_FUNCTION(
489 isolate(),
490 isolate()->heap()->AllocateFunction(*function_map,
491 *function_info,
492 isolate()->heap()->the_hole_value(),
493 pretenure),
Steve Blocka7e24c12009-10-30 11:49:00 +0000494 JSFunction);
495}
496
497
Steve Block6ded16b2010-05-10 14:33:55 +0100498Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
499 Handle<SharedFunctionInfo> function_info,
Leon Clarkee46be812010-01-19 14:06:41 +0000500 Handle<Context> context,
501 PretenureFlag pretenure) {
Steve Block6ded16b2010-05-10 14:33:55 +0100502 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
Steve Block44f0eee2011-05-26 01:26:41 +0100503 function_info,
504 function_info->strict_mode()
505 ? isolate()->strict_mode_function_map()
506 : isolate()->function_map(),
507 pretenure);
508
Steve Blocka7e24c12009-10-30 11:49:00 +0000509 result->set_context(*context);
Steve Block6ded16b2010-05-10 14:33:55 +0100510 int number_of_literals = function_info->num_literals();
Steve Block44f0eee2011-05-26 01:26:41 +0100511 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
Steve Blocka7e24c12009-10-30 11:49:00 +0000512 if (number_of_literals > 0) {
513 // 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.
516 literals->set(JSFunction::kLiteralGlobalContextIndex,
517 context->global_context());
518 }
519 result->set_literals(*literals);
Steve Block44f0eee2011-05-26 01:26:41 +0100520 result->set_next_function_link(isolate()->heap()->undefined_value());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100521
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 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000529 return result;
530}
531
532
533Handle<Object> Factory::NewNumber(double value,
534 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100535 CALL_HEAP_FUNCTION(
536 isolate(),
537 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000538}
539
540
541Handle<Object> Factory::NewNumberFromInt(int value) {
Steve Block44f0eee2011-05-26 01:26:41 +0100542 CALL_HEAP_FUNCTION(
543 isolate(),
544 isolate()->heap()->NumberFromInt32(value), Object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000545}
546
547
548Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
Steve Block44f0eee2011-05-26 01:26:41 +0100549 CALL_HEAP_FUNCTION(
550 isolate(),
551 isolate()->heap()->NumberFromUint32(value), Object);
Steve Blocka7e24c12009-10-30 11:49:00 +0000552}
553
554
555Handle<JSObject> Factory::NewNeanderObject() {
Steve Block44f0eee2011-05-26 01:26:41 +0100556 CALL_HEAP_FUNCTION(
557 isolate(),
558 isolate()->heap()->AllocateJSObjectFromMap(
559 isolate()->heap()->neander_map()),
560 JSObject);
Steve Blocka7e24c12009-10-30 11:49:00 +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) {
609 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
Steve Block44f0eee2011-05-26 01:26:41 +0100610 Handle<FixedArray> array = NewFixedArray(args.length());
Steve Blocka7e24c12009-10-30 11:49:00 +0000611 for (int i = 0; i < args.length(); i++) {
612 array->set(i, *args[i]);
613 }
Steve Block44f0eee2011-05-26 01:26:41 +0100614 Handle<JSArray> object = NewJSArrayWithElements(array);
Steve Blocka7e24c12009-10-30 11:49:00 +0000615 Handle<Object> result = NewError(maker, type, object);
616 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) {
Steve Block44f0eee2011-05-26 01:26:41 +0100635 Handle<String> make_str = LookupAsciiSymbol(maker);
636 Handle<Object> fun_obj(
637 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str));
Steve Blocka7e24c12009-10-30 11:49:00 +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())
Steve Block44f0eee2011-05-26 01:26:41 +0100641 return undefined_value();
Steve Blocka7e24c12009-10-30 11:49:00 +0000642 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
Steve Block44f0eee2011-05-26 01:26:41 +0100643 Handle<Object> type_obj = LookupAsciiSymbol(type);
Steve Blocka7e24c12009-10-30 11:49:00 +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,
Steve Block44f0eee2011-05-26 01:26:41 +0100651 isolate()->js_builtins_object(), 2, argv, &caught_exception);
Steve Blocka7e24c12009-10-30 11:49:00 +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) {
Steve Block44f0eee2011-05-26 01:26:41 +0100663 Handle<String> constr = LookupAsciiSymbol(constructor);
664 Handle<JSFunction> fun = Handle<JSFunction>(
665 JSFunction::cast(isolate()->js_builtins_object()->
666 GetPropertyNoExceptionThrown(*constr)));
Steve Blocka7e24c12009-10-30 11:49:00 +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,
Steve Block44f0eee2011-05-26 01:26:41 +0100673 isolate()->js_builtins_object(), 1, argv, &caught_exception);
Steve Blocka7e24c12009-10-30 11:49:00 +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());
Iain Merrick75681382010-08-19 15:07:18 +0100685
686 // Setup the code pointer in both the shared function info and in
687 // the function itself.
688 function->shared()->set_code(*code);
Steve Blocka7e24c12009-10-30 11:49:00 +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
Steve Blocka7e24c12009-10-30 11:49:00 +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) {
Iain Merrick75681382010-08-19 15:07:18 +0100714 // Allocate the function.
Steve Blocka7e24c12009-10-30 11:49:00 +0000715 Handle<JSFunction> function = NewFunction(name, prototype);
716
Iain Merrick75681382010-08-19 15:07:18 +0100717 // Setup the code pointer in both the shared function info and in
718 // the function itself.
719 function->shared()->set_code(*code);
Steve Blocka7e24c12009-10-30 11:49:00 +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);
Steve Block1e0659c2011-05-24 12:43:12 +0100733 // Currently safe because it is only invoked from Genesis.
Steve Block44f0eee2011-05-26 01:26:41 +0100734 SetLocalPropertyNoThrow(prototype, constructor_symbol(), function, DONT_ENUM);
Steve Blocka7e24c12009-10-30 11:49:00 +0000735 return function;
736}
737
738
Steve Block6ded16b2010-05-10 14:33:55 +0100739Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
740 Handle<Code> code) {
Steve Block44f0eee2011-05-26 01:26:41 +0100741 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
742 kNonStrictMode);
Iain Merrick75681382010-08-19 15:07:18 +0100743 function->shared()->set_code(*code);
Steve Block6ded16b2010-05-10 14:33:55 +0100744 function->set_code(*code);
745 ASSERT(!function->has_initial_map());
746 ASSERT(!function->has_prototype());
747 return function;
748}
749
750
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000751Handle<SerializedScopeInfo> Factory::NewSerializedScopeInfo(int length) {
752 CALL_HEAP_FUNCTION(
753 isolate(),
754 isolate()->heap()->AllocateSerializedScopeInfo(length),
755 SerializedScopeInfo);
756}
757
758
Steve Blocka7e24c12009-10-30 11:49:00 +0000759Handle<Code> Factory::NewCode(const CodeDesc& desc,
Steve Blocka7e24c12009-10-30 11:49:00 +0000760 Code::Flags flags,
Steve Block44f0eee2011-05-26 01:26:41 +0100761 Handle<Object> self_ref,
762 bool immovable) {
763 CALL_HEAP_FUNCTION(isolate(),
764 isolate()->heap()->CreateCode(
765 desc, flags, self_ref, immovable),
766 Code);
Steve Blocka7e24c12009-10-30 11:49:00 +0000767}
768
769
770Handle<Code> Factory::CopyCode(Handle<Code> code) {
Steve Block44f0eee2011-05-26 01:26:41 +0100771 CALL_HEAP_FUNCTION(isolate(),
772 isolate()->heap()->CopyCode(*code),
773 Code);
Steve Blocka7e24c12009-10-30 11:49:00 +0000774}
775
776
Steve Block6ded16b2010-05-10 14:33:55 +0100777Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
Steve Block44f0eee2011-05-26 01:26:41 +0100778 CALL_HEAP_FUNCTION(isolate(),
779 isolate()->heap()->CopyCode(*code, reloc_info),
780 Code);
Steve Block6ded16b2010-05-10 14:33:55 +0100781}
782
783
John Reck59135872010-11-02 12:39:01 -0700784MUST_USE_RESULT static inline MaybeObject* DoCopyInsert(
785 DescriptorArray* array,
786 String* key,
787 Object* value,
788 PropertyAttributes attributes) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000789 CallbacksDescriptor desc(key, value, attributes);
John Reck59135872010-11-02 12:39:01 -0700790 MaybeObject* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
Steve Blocka7e24c12009-10-30 11:49:00 +0000791 return obj;
792}
793
794
795// Allocate the new array.
Ben Murdoch257744e2011-11-30 15:57:28 +0000796Handle<DescriptorArray> Factory::CopyAppendForeignDescriptor(
Steve Blocka7e24c12009-10-30 11:49:00 +0000797 Handle<DescriptorArray> array,
798 Handle<String> key,
799 Handle<Object> value,
800 PropertyAttributes attributes) {
Steve Block44f0eee2011-05-26 01:26:41 +0100801 CALL_HEAP_FUNCTION(isolate(),
802 DoCopyInsert(*array, *key, *value, attributes),
Steve Blocka7e24c12009-10-30 11:49:00 +0000803 DescriptorArray);
804}
805
806
807Handle<String> Factory::SymbolFromString(Handle<String> value) {
Steve Block44f0eee2011-05-26 01:26:41 +0100808 CALL_HEAP_FUNCTION(isolate(),
809 isolate()->heap()->LookupSymbol(*value), String);
Steve Blocka7e24c12009-10-30 11:49:00 +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.
825 for (int i = 0; i < array->number_of_descriptors(); i++) {
826 if (array->GetType(i) != NULL_DESCRIPTOR) {
827 result->CopyFrom(descriptor_count++, *array, i);
828 }
829 }
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.
844 if (result->LinearSearch(*key, descriptor_count) ==
845 DescriptorArray::kNotFound) {
846 CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
847 result->Set(descriptor_count, &desc);
848 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) {
857 int number_of_descriptors = result->number_of_descriptors() - duplicates;
858 Handle<DescriptorArray> new_result =
859 NewDescriptorArray(number_of_descriptors);
860 for (int i = 0; i < number_of_descriptors; i++) {
861 new_result->CopyFrom(i, *result, i);
862 }
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) {
Steve Block44f0eee2011-05-26 01:26:41 +0100874 CALL_HEAP_FUNCTION(
875 isolate(),
876 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
Steve Blocka7e24c12009-10-30 11:49:00 +0000877}
878
879
880Handle<GlobalObject> Factory::NewGlobalObject(
881 Handle<JSFunction> constructor) {
Steve Block44f0eee2011-05-26 01:26:41 +0100882 CALL_HEAP_FUNCTION(isolate(),
883 isolate()->heap()->AllocateGlobalObject(*constructor),
Steve Blocka7e24c12009-10-30 11:49:00 +0000884 GlobalObject);
885}
886
887
888
889Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
Steve Block44f0eee2011-05-26 01:26:41 +0100890 CALL_HEAP_FUNCTION(
891 isolate(),
892 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
893 JSObject);
Steve Blocka7e24c12009-10-30 11:49:00 +0000894}
895
896
Steve Block44f0eee2011-05-26 01:26:41 +0100897Handle<JSArray> Factory::NewJSArray(int capacity,
Steve Blocka7e24c12009-10-30 11:49:00 +0000898 PretenureFlag pretenure) {
Steve Block44f0eee2011-05-26 01:26:41 +0100899 Handle<JSObject> obj = NewJSObject(isolate()->array_function(), pretenure);
900 CALL_HEAP_FUNCTION(isolate(),
901 Handle<JSArray>::cast(obj)->Initialize(capacity),
902 JSArray);
Steve Blocka7e24c12009-10-30 11:49:00 +0000903}
904
905
906Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArray> elements,
907 PretenureFlag pretenure) {
908 Handle<JSArray> result =
Steve Block44f0eee2011-05-26 01:26:41 +0100909 Handle<JSArray>::cast(NewJSObject(isolate()->array_function(),
910 pretenure));
Steve Blocka7e24c12009-10-30 11:49:00 +0000911 result->SetContent(*elements);
912 return result;
913}
914
915
Ben Murdoch257744e2011-11-30 15:57:28 +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
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000925void Factory::BecomeJSObject(Handle<JSProxy> object) {
926 CALL_HEAP_FUNCTION_VOID(
927 isolate(),
928 isolate()->heap()->ReinitializeJSProxyAsJSObject(*object));
929}
930
931
Steve Block6ded16b2010-05-10 14:33:55 +0100932Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100933 Handle<String> name,
934 int number_of_literals,
935 Handle<Code> code,
936 Handle<SerializedScopeInfo> scope_info) {
Steve Block6ded16b2010-05-10 14:33:55 +0100937 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
938 shared->set_code(*code);
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100939 shared->set_scope_info(*scope_info);
Steve Block6ded16b2010-05-10 14:33:55 +0100940 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
Steve Block1e0659c2011-05-24 12:43:12 +0100952Handle<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) {
Steve Block44f0eee2011-05-26 01:26:41 +0100960 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),
Steve Block1e0659c2011-05-24 12:43:12 +0100968 JSMessageObject);
969}
970
Steve Blocka7e24c12009-10-30 11:49:00 +0000971Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
Steve Block44f0eee2011-05-26 01:26:41 +0100972 CALL_HEAP_FUNCTION(isolate(),
973 isolate()->heap()->AllocateSharedFunctionInfo(*name),
Steve Blocka7e24c12009-10-30 11:49:00 +0000974 SharedFunctionInfo);
975}
976
977
978Handle<String> Factory::NumberToString(Handle<Object> number) {
Steve Block44f0eee2011-05-26 01:26:41 +0100979 CALL_HEAP_FUNCTION(isolate(),
980 isolate()->heap()->NumberToString(*number), String);
Steve Blocka7e24c12009-10-30 11:49:00 +0000981}
982
983
984Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
985 Handle<NumberDictionary> dictionary,
986 uint32_t key,
987 Handle<Object> value) {
Steve Block44f0eee2011-05-26 01:26:41 +0100988 CALL_HEAP_FUNCTION(isolate(),
989 dictionary->AtNumberPut(key, *value),
990 NumberDictionary);
Steve Blocka7e24c12009-10-30 11:49:00 +0000991}
992
993
994Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
995 Handle<Object> prototype) {
996 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
Steve Block44f0eee2011-05-26 01:26:41 +0100997 CALL_HEAP_FUNCTION(
998 isolate(),
999 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1000 *function_share,
1001 *prototype),
1002 JSFunction);
Steve Blocka7e24c12009-10-30 11:49:00 +00001003}
1004
1005
1006Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1007 Handle<Object> prototype) {
1008 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
Steve Block44f0eee2011-05-26 01:26:41 +01001009 fun->set_context(isolate()->context()->global_context());
Steve Blocka7e24c12009-10-30 11:49:00 +00001010 return fun;
1011}
1012
1013
Steve Block6ded16b2010-05-10 14:33:55 +01001014Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
Steve Block44f0eee2011-05-26 01:26:41 +01001015 Handle<String> name,
1016 StrictModeFlag strict_mode) {
Steve Block6ded16b2010-05-10 14:33:55 +01001017 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
Steve Block44f0eee2011-05-26 01:26:41 +01001018 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,
Steve Block6ded16b2010-05-10 14:33:55 +01001024 *function_share,
1025 *the_hole_value()),
1026 JSFunction);
1027}
1028
1029
Steve Block44f0eee2011-05-26 01:26:41 +01001030Handle<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());
Steve Block6ded16b2010-05-10 14:33:55 +01001035 return fun;
1036}
1037
1038
Leon Clarkee46be812010-01-19 14:06:41 +00001039Handle<Object> Factory::ToObject(Handle<Object> object) {
Steve Block44f0eee2011-05-26 01:26:41 +01001040 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
Leon Clarkee46be812010-01-19 14:06:41 +00001041}
1042
1043
Steve Blocka7e24c12009-10-30 11:49:00 +00001044Handle<Object> Factory::ToObject(Handle<Object> object,
1045 Handle<Context> global_context) {
Steve Block44f0eee2011-05-26 01:26:41 +01001046 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*global_context), Object);
Steve Blocka7e24c12009-10-30 11:49:00 +00001047}
1048
1049
1050#ifdef ENABLE_DEBUGGER_SUPPORT
1051Handle<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(
Steve Block44f0eee2011-05-26 01:26:41 +01001063 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
Steve Blocka7e24c12009-10-30 11:49:00 +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 =
Steve Block44f0eee2011-05-26 01:26:41 +01001069 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
Steve Blocka7e24c12009-10-30 11:49:00 +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}
1080#endif
1081
1082
1083Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1084 int length) {
Steve Block44f0eee2011-05-26 01:26:41 +01001085 CALL_HEAP_FUNCTION(
1086 isolate(),
1087 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
Steve Blocka7e24c12009-10-30 11:49:00 +00001088}
1089
1090
1091Handle<JSFunction> Factory::CreateApiFunction(
1092 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
Steve Block44f0eee2011-05-26 01:26:41 +01001093 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1094 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
Steve Blocka7e24c12009-10-30 11:49:00 +00001095
1096 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;
1106 InstanceType type = INVALID_TYPE;
1107 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:
1121 break;
1122 }
1123 ASSERT(type != INVALID_TYPE);
1124
1125 Handle<JSFunction> result =
Steve Block44f0eee2011-05-26 01:26:41 +01001126 NewFunction(Factory::empty_symbol(),
1127 type,
1128 instance_size,
1129 code,
1130 true);
Steve Blocka7e24c12009-10-30 11:49:00 +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()) {
1152 map->set_is_access_check_needed(true);
1153 }
1154
1155 // 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);
Leon Clarkee46be812010-01-19 14:06:41 +00001169 result->shared()->set_construct_stub(*construct_stub);
Steve Blocka7e24c12009-10-30 11:49:00 +00001170 result->shared()->DontAdaptArguments();
1171
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()) {
Steve Block44f0eee2011-05-26 01:26:41 +01001178 array = CopyAppendCallbackDescriptors(array, props);
Steve Blocka7e24c12009-10-30 11:49:00 +00001179 }
1180 Handle<Object> parent = Handle<Object>(obj->parent_template());
1181 if (parent->IsUndefined()) break;
1182 obj = Handle<FunctionTemplateInfo>::cast(parent);
1183 }
1184 if (!array->IsEmpty()) {
1185 map->set_instance_descriptors(*array);
1186 }
1187
Steve Block6ded16b2010-05-10 14:33:55 +01001188 ASSERT(result->shared()->IsApiFunction());
Steve Blocka7e24c12009-10-30 11:49:00 +00001189 return result;
1190}
1191
1192
1193Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
Steve Block44f0eee2011-05-26 01:26:41 +01001194 CALL_HEAP_FUNCTION(isolate(),
1195 MapCache::Allocate(at_least_space_for), MapCache);
Steve Blocka7e24c12009-10-30 11:49:00 +00001196}
1197
1198
John Reck59135872010-11-02 12:39:01 -07001199MUST_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));
Steve Blocka7e24c12009-10-30 11:49:00 +00001208 return result;
1209}
1210
1211
1212Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1213 Handle<FixedArray> keys,
1214 Handle<Map> map) {
Steve Block44f0eee2011-05-26 01:26:41 +01001215 CALL_HEAP_FUNCTION(isolate(),
1216 UpdateMapCacheWith(*context, *keys, *map), MapCache);
Steve Blocka7e24c12009-10-30 11:49:00 +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 }
1227 // Check to see whether there is a matching element in the cache.
1228 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 =
1234 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1235 keys->length());
1236 AddToMapCache(context, keys, map);
1237 return Handle<Map>(map);
1238}
1239
1240
1241void 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
1248 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
1255void 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);
Ben Murdoch257744e2011-11-30 15:57:28 +00001261 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
Steve Blocka7e24c12009-10-30 11:49:00 +00001262 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1263 store->set(JSRegExp::kSourceIndex, *source);
1264 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
Ben Murdoch257744e2011-11-30 15:57:28 +00001265 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1266 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1267 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1268 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
Steve Blocka7e24c12009-10-30 11:49:00 +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
1276
1277void 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