blob: 252c97ced3177e5e0e32845e0fead4d765d34aab [file] [log] [blame]
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001// Copyright 2011 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
29
30#include "api.h"
v8.team.kasperl727e9952008-09-02 14:56:44 +000031#include "debug.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000032#include "execution.h"
33#include "factory.h"
34#include "macro-assembler.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000035#include "objects.h"
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000036#include "objects-visiting.h"
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000037#include "scopeinfo.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000038
kasperl@chromium.org71affb52009-05-26 05:44:31 +000039namespace v8 {
40namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041
42
43Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
44 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000045 CALL_HEAP_FUNCTION(
46 isolate(),
47 isolate()->heap()->AllocateFixedArray(size, pretenure),
48 FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000049}
50
51
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000052Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
53 PretenureFlag pretenure) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000054 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000055 CALL_HEAP_FUNCTION(
56 isolate(),
57 isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure),
58 FixedArray);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000059}
60
61
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000062Handle<FixedArray> Factory::NewFixedDoubleArray(int size,
63 PretenureFlag pretenure) {
64 ASSERT(0 <= size);
65 CALL_HEAP_FUNCTION(
66 isolate(),
67 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure),
68 FixedArray);
69}
70
71
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000072Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000073 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000074 CALL_HEAP_FUNCTION(isolate(),
75 StringDictionary::Allocate(at_least_space_for),
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000076 StringDictionary);
77}
78
79
80Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
81 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000082 CALL_HEAP_FUNCTION(isolate(),
83 NumberDictionary::Allocate(at_least_space_for),
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000084 NumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000085}
86
87
vegorov@chromium.org7943d462011-08-01 11:41:52 +000088Handle<ObjectHashTable> Factory::NewObjectHashTable(int at_least_space_for) {
89 ASSERT(0 <= at_least_space_for);
90 CALL_HEAP_FUNCTION(isolate(),
91 ObjectHashTable::Allocate(at_least_space_for),
92 ObjectHashTable);
93}
94
95
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000096Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
97 ASSERT(0 <= number_of_descriptors);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000098 CALL_HEAP_FUNCTION(isolate(),
99 DescriptorArray::Allocate(number_of_descriptors),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000100 DescriptorArray);
101}
102
103
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000104Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
105 int deopt_entry_count,
106 PretenureFlag pretenure) {
107 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000108 CALL_HEAP_FUNCTION(isolate(),
109 DeoptimizationInputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000110 pretenure),
111 DeoptimizationInputData);
112}
113
114
115Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
116 int deopt_entry_count,
117 PretenureFlag pretenure) {
118 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000119 CALL_HEAP_FUNCTION(isolate(),
120 DeoptimizationOutputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000121 pretenure),
122 DeoptimizationOutputData);
123}
124
125
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000126// Symbols are created in the old generation (data space).
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000127Handle<String> Factory::LookupSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000128 CALL_HEAP_FUNCTION(isolate(),
129 isolate()->heap()->LookupSymbol(string),
130 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131}
132
danno@chromium.org40cb8782011-05-25 07:58:50 +0000133// Symbols are created in the old generation (data space).
134Handle<String> Factory::LookupSymbol(Handle<String> string) {
135 CALL_HEAP_FUNCTION(isolate(),
136 isolate()->heap()->LookupSymbol(*string),
137 String);
138}
139
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000140Handle<String> Factory::LookupAsciiSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000141 CALL_HEAP_FUNCTION(isolate(),
142 isolate()->heap()->LookupAsciiSymbol(string),
143 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000144}
145
danno@chromium.org40cb8782011-05-25 07:58:50 +0000146
147Handle<String> Factory::LookupAsciiSymbol(Handle<SeqAsciiString> string,
148 int from,
149 int length) {
150 CALL_HEAP_FUNCTION(isolate(),
151 isolate()->heap()->LookupAsciiSymbol(string,
152 from,
153 length),
154 String);
155}
156
157
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000158Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000159 CALL_HEAP_FUNCTION(isolate(),
160 isolate()->heap()->LookupTwoByteSymbol(string),
161 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000162}
163
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000164
165Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
166 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000167 CALL_HEAP_FUNCTION(
168 isolate(),
169 isolate()->heap()->AllocateStringFromAscii(string, pretenure),
170 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000171}
172
173Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
174 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000175 CALL_HEAP_FUNCTION(
176 isolate(),
177 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
178 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000179}
180
181
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000182Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
183 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000184 CALL_HEAP_FUNCTION(
185 isolate(),
186 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
187 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000188}
189
190
ager@chromium.org04921a82011-06-27 13:21:41 +0000191Handle<SeqAsciiString> Factory::NewRawAsciiString(int length,
192 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000193 CALL_HEAP_FUNCTION(
194 isolate(),
195 isolate()->heap()->AllocateRawAsciiString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000196 SeqAsciiString);
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +0000197}
198
199
ager@chromium.org04921a82011-06-27 13:21:41 +0000200Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
201 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000202 CALL_HEAP_FUNCTION(
203 isolate(),
204 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000205 SeqTwoByteString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000206}
207
208
209Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000210 Handle<String> second) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000211 CALL_HEAP_FUNCTION(isolate(),
212 isolate()->heap()->AllocateConsString(*first, *second),
213 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000214}
215
216
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000217Handle<String> Factory::NewSubString(Handle<String> str,
218 int begin,
219 int end) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000220 CALL_HEAP_FUNCTION(isolate(),
221 str->SubString(begin, end),
222 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000223}
224
225
ager@chromium.org04921a82011-06-27 13:21:41 +0000226Handle<String> Factory::NewProperSubString(Handle<String> str,
227 int begin,
228 int end) {
229 ASSERT(begin > 0 || end < str->length());
230 CALL_HEAP_FUNCTION(isolate(),
231 isolate()->heap()->AllocateSubString(*str, begin, end),
232 String);
233}
234
235
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000236Handle<String> Factory::NewExternalStringFromAscii(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000237 const ExternalAsciiString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000238 CALL_HEAP_FUNCTION(
239 isolate(),
240 isolate()->heap()->AllocateExternalStringFromAscii(resource),
241 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000242}
243
244
245Handle<String> Factory::NewExternalStringFromTwoByte(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000246 const ExternalTwoByteString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000247 CALL_HEAP_FUNCTION(
248 isolate(),
249 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
250 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000251}
252
253
254Handle<Context> Factory::NewGlobalContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000255 CALL_HEAP_FUNCTION(
256 isolate(),
257 isolate()->heap()->AllocateGlobalContext(),
258 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000259}
260
261
262Handle<Context> Factory::NewFunctionContext(int length,
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000263 Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000264 CALL_HEAP_FUNCTION(
265 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000266 isolate()->heap()->AllocateFunctionContext(length, *function),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000267 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000268}
269
270
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000271Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
272 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000273 Handle<String> name,
274 Handle<Object> thrown_object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000275 CALL_HEAP_FUNCTION(
276 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000277 isolate()->heap()->AllocateCatchContext(*function,
278 *previous,
279 *name,
280 *thrown_object),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000281 Context);
282}
283
284
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000285Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
286 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000287 Handle<JSObject> extension) {
288 CALL_HEAP_FUNCTION(
289 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000290 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000291 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000292}
293
294
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000295Handle<Context> Factory::NewBlockContext(
296 Handle<JSFunction> function,
297 Handle<Context> previous,
298 Handle<SerializedScopeInfo> scope_info) {
299 CALL_HEAP_FUNCTION(
300 isolate(),
301 isolate()->heap()->AllocateBlockContext(*function,
302 *previous,
303 *scope_info),
304 Context);
305}
306
307
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000308Handle<Struct> Factory::NewStruct(InstanceType type) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000309 CALL_HEAP_FUNCTION(
310 isolate(),
311 isolate()->heap()->AllocateStruct(type),
312 Struct);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000313}
314
315
316Handle<AccessorInfo> Factory::NewAccessorInfo() {
317 Handle<AccessorInfo> info =
318 Handle<AccessorInfo>::cast(NewStruct(ACCESSOR_INFO_TYPE));
319 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
320 return info;
321}
322
323
324Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000325 // Generate id for this script.
326 int id;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000327 Heap* heap = isolate()->heap();
328 if (heap->last_script_id()->IsUndefined()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000329 // Script ids start from one.
330 id = 1;
331 } else {
332 // Increment id, wrap when positive smi is exhausted.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000333 id = Smi::cast(heap->last_script_id())->value();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000334 id++;
335 if (!Smi::IsValid(id)) {
336 id = 0;
337 }
338 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000339 heap->SetLastScriptId(Smi::FromInt(id));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000340
341 // Create and initialize script object.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000342 Handle<Foreign> wrapper = NewForeign(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000343 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
344 script->set_source(*source);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000345 script->set_name(heap->undefined_value());
346 script->set_id(heap->last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000347 script->set_line_offset(Smi::FromInt(0));
348 script->set_column_offset(Smi::FromInt(0));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000349 script->set_data(heap->undefined_value());
350 script->set_context_data(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000351 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
352 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
ager@chromium.org9085a012009-05-11 19:22:57 +0000353 script->set_wrapper(*wrapper);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000354 script->set_line_ends(heap->undefined_value());
355 script->set_eval_from_shared(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000356 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000357
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000358 return script;
359}
360
361
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000362Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000363 CALL_HEAP_FUNCTION(isolate(),
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000364 isolate()->heap()->AllocateForeign(addr, pretenure),
365 Foreign);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000366}
367
368
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000369Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
370 return NewForeign((Address) desc, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000371}
372
373
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000374Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000375 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000376 CALL_HEAP_FUNCTION(
377 isolate(),
378 isolate()->heap()->AllocateByteArray(length, pretenure),
379 ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000380}
381
382
ager@chromium.org3811b432009-10-28 14:53:37 +0000383Handle<ExternalArray> Factory::NewExternalArray(int length,
384 ExternalArrayType array_type,
385 void* external_pointer,
386 PretenureFlag pretenure) {
387 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000388 CALL_HEAP_FUNCTION(
389 isolate(),
390 isolate()->heap()->AllocateExternalArray(length,
391 array_type,
392 external_pointer,
393 pretenure),
394 ExternalArray);
ager@chromium.org3811b432009-10-28 14:53:37 +0000395}
396
397
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000398Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
399 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000400 CALL_HEAP_FUNCTION(
401 isolate(),
402 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
403 JSGlobalPropertyCell);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000404}
405
406
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000407Handle<Map> Factory::NewMap(InstanceType type,
408 int instance_size,
409 ElementsKind elements_kind) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000410 CALL_HEAP_FUNCTION(
411 isolate(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000412 isolate()->heap()->AllocateMap(type, instance_size, elements_kind),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000413 Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000414}
415
416
417Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000418 CALL_HEAP_FUNCTION(
419 isolate(),
420 isolate()->heap()->AllocateFunctionPrototype(*function),
421 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000422}
423
424
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000425Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000426 CALL_HEAP_FUNCTION(isolate(), src->CopyDropDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000427}
428
429
ager@chromium.org32912102009-01-16 10:38:43 +0000430Handle<Map> Factory::CopyMap(Handle<Map> src,
431 int extra_inobject_properties) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000432 Handle<Map> copy = CopyMapDropDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000433 // Check that we do not overflow the instance size when adding the
434 // extra inobject properties.
435 int instance_size_delta = extra_inobject_properties * kPointerSize;
436 int max_instance_size_delta =
437 JSObject::kMaxInstanceSize - copy->instance_size();
438 if (instance_size_delta > max_instance_size_delta) {
439 // If the instance size overflows, we allocate as many properties
440 // as we can as inobject properties.
441 instance_size_delta = max_instance_size_delta;
442 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
443 }
444 // Adjust the map with the extra inobject properties.
445 int inobject_properties =
446 copy->inobject_properties() + extra_inobject_properties;
447 copy->set_inobject_properties(inobject_properties);
448 copy->set_unused_property_fields(inobject_properties);
449 copy->set_instance_size(copy->instance_size() + instance_size_delta);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000450 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
ager@chromium.org32912102009-01-16 10:38:43 +0000451 return copy;
452}
453
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000454
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000455Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000456 CALL_HEAP_FUNCTION(isolate(), src->CopyDropTransitions(), Map);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000457}
458
459
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000460Handle<Map> Factory::GetElementsTransitionMap(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000461 Handle<JSObject> src,
462 ElementsKind elements_kind) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000463 CALL_HEAP_FUNCTION(isolate(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000464 src->GetElementsTransitionMap(elements_kind),
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000465 Map);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000466}
467
468
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000469Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000470 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000471}
472
473
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000474Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
475 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000476 Handle<Map> function_map,
477 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000478 CALL_HEAP_FUNCTION(
479 isolate(),
480 isolate()->heap()->AllocateFunction(*function_map,
481 *function_info,
482 isolate()->heap()->the_hole_value(),
483 pretenure),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000484 JSFunction);
485}
486
487
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000488Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
489 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000490 Handle<Context> context,
491 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000492 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000493 function_info,
494 function_info->strict_mode()
495 ? isolate()->strict_mode_function_map()
496 : isolate()->function_map(),
497 pretenure);
498
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000499 result->set_context(*context);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000500 int number_of_literals = function_info->num_literals();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000501 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000502 if (number_of_literals > 0) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000503 // Store the object, regexp and array functions in the literals
504 // array prefix. These functions will be used when creating
505 // object, regexp and array literals in this function.
ager@chromium.org236ad962008-09-25 09:45:57 +0000506 literals->set(JSFunction::kLiteralGlobalContextIndex,
507 context->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000508 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000509 result->set_literals(*literals);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000510 result->set_next_function_link(isolate()->heap()->undefined_value());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000511
512 if (V8::UseCrankshaft() &&
513 FLAG_always_opt &&
514 result->is_compiled() &&
515 !function_info->is_toplevel() &&
516 function_info->allows_lazy_compilation()) {
517 result->MarkForLazyRecompilation();
518 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000519 return result;
520}
521
522
523Handle<Object> Factory::NewNumber(double value,
524 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000525 CALL_HEAP_FUNCTION(
526 isolate(),
527 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000528}
529
530
531Handle<Object> Factory::NewNumberFromInt(int value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000532 CALL_HEAP_FUNCTION(
533 isolate(),
534 isolate()->heap()->NumberFromInt32(value), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000535}
536
537
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000538Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000539 CALL_HEAP_FUNCTION(
540 isolate(),
541 isolate()->heap()->NumberFromUint32(value), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000542}
543
544
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000545Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000546 CALL_HEAP_FUNCTION(
547 isolate(),
548 isolate()->heap()->AllocateJSObjectFromMap(
549 isolate()->heap()->neander_map()),
550 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000551}
552
553
554Handle<Object> Factory::NewTypeError(const char* type,
555 Vector< Handle<Object> > args) {
556 return NewError("MakeTypeError", type, args);
557}
558
559
560Handle<Object> Factory::NewTypeError(Handle<String> message) {
561 return NewError("$TypeError", message);
562}
563
564
565Handle<Object> Factory::NewRangeError(const char* type,
566 Vector< Handle<Object> > args) {
567 return NewError("MakeRangeError", type, args);
568}
569
570
571Handle<Object> Factory::NewRangeError(Handle<String> message) {
572 return NewError("$RangeError", message);
573}
574
575
576Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
577 return NewError("MakeSyntaxError", type, args);
578}
579
580
581Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
582 return NewError("$SyntaxError", message);
583}
584
585
586Handle<Object> Factory::NewReferenceError(const char* type,
587 Vector< Handle<Object> > args) {
588 return NewError("MakeReferenceError", type, args);
589}
590
591
592Handle<Object> Factory::NewReferenceError(Handle<String> message) {
593 return NewError("$ReferenceError", message);
594}
595
596
597Handle<Object> Factory::NewError(const char* maker, const char* type,
598 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000599 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000600 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000601 for (int i = 0; i < args.length(); i++) {
602 array->set(i, *args[i]);
603 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000604 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000605 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000606 return result.EscapeFrom(&scope);
607}
608
609
610Handle<Object> Factory::NewEvalError(const char* type,
611 Vector< Handle<Object> > args) {
612 return NewError("MakeEvalError", type, args);
613}
614
615
616Handle<Object> Factory::NewError(const char* type,
617 Vector< Handle<Object> > args) {
618 return NewError("MakeError", type, args);
619}
620
621
622Handle<Object> Factory::NewError(const char* maker,
623 const char* type,
624 Handle<JSArray> args) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000625 Handle<String> make_str = LookupAsciiSymbol(maker);
626 Handle<Object> fun_obj(
627 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000628 // If the builtins haven't been properly configured yet this error
629 // constructor may not have been defined. Bail out.
630 if (!fun_obj->IsJSFunction())
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000631 return undefined_value();
ager@chromium.org4af710e2009-09-15 12:20:11 +0000632 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000633 Handle<Object> type_obj = LookupAsciiSymbol(type);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000634 Object** argv[2] = { type_obj.location(),
635 Handle<Object>::cast(args).location() };
636
637 // Invoke the JavaScript factory method. If an exception is thrown while
638 // running the factory method, use the exception as the result.
639 bool caught_exception;
640 Handle<Object> result = Execution::TryCall(fun,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000641 isolate()->js_builtins_object(), 2, argv, &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000642 return result;
643}
644
645
646Handle<Object> Factory::NewError(Handle<String> message) {
647 return NewError("$Error", message);
648}
649
650
651Handle<Object> Factory::NewError(const char* constructor,
652 Handle<String> message) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000653 Handle<String> constr = LookupAsciiSymbol(constructor);
654 Handle<JSFunction> fun = Handle<JSFunction>(
655 JSFunction::cast(isolate()->js_builtins_object()->
656 GetPropertyNoExceptionThrown(*constr)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000657 Object** argv[1] = { Handle<Object>::cast(message).location() };
658
659 // Invoke the JavaScript factory method. If an exception is thrown while
660 // running the factory method, use the exception as the result.
661 bool caught_exception;
662 Handle<Object> result = Execution::TryCall(fun,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000663 isolate()->js_builtins_object(), 1, argv, &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000664 return result;
665}
666
667
668Handle<JSFunction> Factory::NewFunction(Handle<String> name,
669 InstanceType type,
670 int instance_size,
671 Handle<Code> code,
672 bool force_initial_map) {
673 // Allocate the function
674 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000675
676 // Setup the code pointer in both the shared function info and in
677 // the function itself.
678 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000679 function->set_code(*code);
680
681 if (force_initial_map ||
682 type != JS_OBJECT_TYPE ||
683 instance_size != JSObject::kHeaderSize) {
684 Handle<Map> initial_map = NewMap(type, instance_size);
685 Handle<JSObject> prototype = NewFunctionPrototype(function);
686 initial_map->set_prototype(*prototype);
687 function->set_initial_map(*initial_map);
688 initial_map->set_constructor(*function);
689 } else {
690 ASSERT(!function->has_initial_map());
691 ASSERT(!function->has_prototype());
692 }
693
694 return function;
695}
696
697
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000698Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
699 InstanceType type,
700 int instance_size,
701 Handle<JSObject> prototype,
702 Handle<Code> code,
703 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000704 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000705 Handle<JSFunction> function = NewFunction(name, prototype);
706
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000707 // Setup the code pointer in both the shared function info and in
708 // the function itself.
709 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000710 function->set_code(*code);
711
712 if (force_initial_map ||
713 type != JS_OBJECT_TYPE ||
714 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000715 ElementsKind default_elements_kind = FLAG_smi_only_arrays
716 ? FAST_SMI_ONLY_ELEMENTS
717 : FAST_ELEMENTS;
718 Handle<Map> initial_map = NewMap(type,
719 instance_size,
720 default_elements_kind);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000721 function->set_initial_map(*initial_map);
722 initial_map->set_constructor(*function);
723 }
724
725 // Set function.prototype and give the prototype a constructor
726 // property that refers to the function.
727 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000728 // Currently safe because it is only invoked from Genesis.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000729 SetLocalPropertyNoThrow(prototype, constructor_symbol(), function, DONT_ENUM);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000730 return function;
731}
732
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000733
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000734Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
735 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000736 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
737 kNonStrictMode);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000738 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000739 function->set_code(*code);
740 ASSERT(!function->has_initial_map());
741 ASSERT(!function->has_prototype());
742 return function;
743}
744
745
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000746Handle<SerializedScopeInfo> Factory::NewSerializedScopeInfo(int length) {
747 CALL_HEAP_FUNCTION(
748 isolate(),
749 isolate()->heap()->AllocateSerializedScopeInfo(length),
750 SerializedScopeInfo);
751}
752
753
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000754Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000755 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000756 Handle<Object> self_ref,
757 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000758 CALL_HEAP_FUNCTION(isolate(),
759 isolate()->heap()->CreateCode(
760 desc, flags, self_ref, immovable),
761 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000762}
763
764
765Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000766 CALL_HEAP_FUNCTION(isolate(),
767 isolate()->heap()->CopyCode(*code),
768 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000769}
770
771
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000772Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000773 CALL_HEAP_FUNCTION(isolate(),
774 isolate()->heap()->CopyCode(*code, reloc_info),
775 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000776}
777
778
lrn@chromium.org303ada72010-10-27 09:33:13 +0000779MUST_USE_RESULT static inline MaybeObject* DoCopyInsert(
780 DescriptorArray* array,
781 String* key,
782 Object* value,
783 PropertyAttributes attributes) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000784 CallbacksDescriptor desc(key, value, attributes);
lrn@chromium.org303ada72010-10-27 09:33:13 +0000785 MaybeObject* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000786 return obj;
787}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000788
789
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000790// Allocate the new array.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000791Handle<DescriptorArray> Factory::CopyAppendForeignDescriptor(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000792 Handle<DescriptorArray> array,
793 Handle<String> key,
794 Handle<Object> value,
795 PropertyAttributes attributes) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000796 CALL_HEAP_FUNCTION(isolate(),
797 DoCopyInsert(*array, *key, *value, attributes),
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000798 DescriptorArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000799}
800
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000801
802Handle<String> Factory::SymbolFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000803 CALL_HEAP_FUNCTION(isolate(),
804 isolate()->heap()->LookupSymbol(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000805}
806
807
808Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
809 Handle<DescriptorArray> array,
810 Handle<Object> descriptors) {
811 v8::NeanderArray callbacks(descriptors);
812 int nof_callbacks = callbacks.length();
813 Handle<DescriptorArray> result =
814 NewDescriptorArray(array->number_of_descriptors() + nof_callbacks);
815
816 // Number of descriptors added to the result so far.
817 int descriptor_count = 0;
818
819 // Copy the descriptors from the array.
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000820 for (int i = 0; i < array->number_of_descriptors(); i++) {
821 if (array->GetType(i) != NULL_DESCRIPTOR) {
822 result->CopyFrom(descriptor_count++, *array, i);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000823 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000824 }
825
826 // Number of duplicates detected.
827 int duplicates = 0;
828
829 // Fill in new callback descriptors. Process the callbacks from
830 // back to front so that the last callback with a given name takes
831 // precedence over previously added callbacks with that name.
832 for (int i = nof_callbacks - 1; i >= 0; i--) {
833 Handle<AccessorInfo> entry =
834 Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
835 // Ensure the key is a symbol before writing into the instance descriptor.
836 Handle<String> key =
837 SymbolFromString(Handle<String>(String::cast(entry->name())));
838 // Check if a descriptor with this name already exists before writing.
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000839 if (result->LinearSearch(*key, descriptor_count) ==
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000840 DescriptorArray::kNotFound) {
841 CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000842 result->Set(descriptor_count, &desc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000843 descriptor_count++;
844 } else {
845 duplicates++;
846 }
847 }
848
849 // If duplicates were detected, allocate a result of the right size
850 // and transfer the elements.
851 if (duplicates > 0) {
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000852 int number_of_descriptors = result->number_of_descriptors() - duplicates;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000853 Handle<DescriptorArray> new_result =
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000854 NewDescriptorArray(number_of_descriptors);
855 for (int i = 0; i < number_of_descriptors; i++) {
856 new_result->CopyFrom(i, *result, i);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000857 }
858 result = new_result;
859 }
860
861 // Sort the result before returning.
862 result->Sort();
863 return result;
864}
865
866
867Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
868 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000869 CALL_HEAP_FUNCTION(
870 isolate(),
871 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000872}
873
874
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000875Handle<GlobalObject> Factory::NewGlobalObject(
876 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000877 CALL_HEAP_FUNCTION(isolate(),
878 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000879 GlobalObject);
880}
881
882
883
ager@chromium.org236ad962008-09-25 09:45:57 +0000884Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000885 CALL_HEAP_FUNCTION(
886 isolate(),
887 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
888 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000889}
890
891
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000892Handle<JSArray> Factory::NewJSArray(int capacity,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000893 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000894 Handle<JSObject> obj = NewJSObject(isolate()->array_function(), pretenure);
895 CALL_HEAP_FUNCTION(isolate(),
896 Handle<JSArray>::cast(obj)->Initialize(capacity),
897 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000898}
899
900
901Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArray> elements,
902 PretenureFlag pretenure) {
903 Handle<JSArray> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000904 Handle<JSArray>::cast(NewJSObject(isolate()->array_function(),
905 pretenure));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000906 SetContent(result, elements);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000907 return result;
908}
909
910
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000911void Factory::SetContent(Handle<JSArray> array,
912 Handle<FixedArray> elements) {
913 CALL_HEAP_FUNCTION_VOID(
914 isolate(),
915 array->SetContent(*elements));
916}
917
918
919void Factory::EnsureCanContainNonSmiElements(Handle<JSArray> array) {
920 CALL_HEAP_FUNCTION_VOID(
921 isolate(),
922 array->EnsureCanContainNonSmiElements());
923}
924
925
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000926Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
927 Handle<Object> prototype) {
928 CALL_HEAP_FUNCTION(
929 isolate(),
930 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
931 JSProxy);
932}
933
934
lrn@chromium.org34e60782011-09-15 07:25:40 +0000935void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000936 CALL_HEAP_FUNCTION_VOID(
937 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +0000938 isolate()->heap()->ReinitializeJSReceiver(
939 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
940}
941
942
943void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
944 CALL_HEAP_FUNCTION_VOID(
945 isolate(),
946 isolate()->heap()->ReinitializeJSReceiver(
947 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000948}
949
950
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000951void Factory::SetIdentityHash(Handle<JSObject> object, Object* hash) {
952 CALL_HEAP_FUNCTION_VOID(
953 isolate(),
954 object->SetIdentityHash(hash, ALLOW_CREATION));
955}
956
957
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000958Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000959 Handle<String> name,
960 int number_of_literals,
961 Handle<Code> code,
ager@chromium.orgb5737492010-07-15 09:29:43 +0000962 Handle<SerializedScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000963 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
964 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +0000965 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000966 int literals_array_size = number_of_literals;
967 // If the function contains object, regexp or array literals,
968 // allocate extra space for a literals array prefix containing the
969 // context.
970 if (number_of_literals > 0) {
971 literals_array_size += JSFunction::kLiteralsPrefixSize;
972 }
973 shared->set_num_literals(literals_array_size);
974 return shared;
975}
976
977
kmillikin@chromium.org31b12772011-02-02 16:08:26 +0000978Handle<JSMessageObject> Factory::NewJSMessageObject(
979 Handle<String> type,
980 Handle<JSArray> arguments,
981 int start_position,
982 int end_position,
983 Handle<Object> script,
984 Handle<Object> stack_trace,
985 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000986 CALL_HEAP_FUNCTION(isolate(),
987 isolate()->heap()->AllocateJSMessageObject(*type,
988 *arguments,
989 start_position,
990 end_position,
991 *script,
992 *stack_trace,
993 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +0000994 JSMessageObject);
995}
996
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000997Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000998 CALL_HEAP_FUNCTION(isolate(),
999 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001000 SharedFunctionInfo);
1001}
1002
1003
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001004Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001005 CALL_HEAP_FUNCTION(isolate(),
1006 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001007}
1008
1009
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001010Handle<String> Factory::Uint32ToString(uint32_t value) {
1011 CALL_HEAP_FUNCTION(isolate(),
1012 isolate()->heap()->Uint32ToString(value), String);
1013}
1014
1015
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001016Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
1017 Handle<NumberDictionary> dictionary,
1018 uint32_t key,
1019 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001020 CALL_HEAP_FUNCTION(isolate(),
1021 dictionary->AtNumberPut(key, *value),
1022 NumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001023}
1024
1025
1026Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1027 Handle<Object> prototype) {
1028 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001029 CALL_HEAP_FUNCTION(
1030 isolate(),
1031 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1032 *function_share,
1033 *prototype),
1034 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001035}
1036
1037
1038Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1039 Handle<Object> prototype) {
1040 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001041 fun->set_context(isolate()->context()->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001042 return fun;
1043}
1044
1045
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001046Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001047 Handle<String> name,
1048 StrictModeFlag strict_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001049 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001050 Handle<Map> map = strict_mode == kStrictMode
1051 ? isolate()->strict_mode_function_without_prototype_map()
1052 : isolate()->function_without_prototype_map();
1053 CALL_HEAP_FUNCTION(isolate(),
1054 isolate()->heap()->AllocateFunction(
1055 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001056 *function_share,
1057 *the_hole_value()),
1058 JSFunction);
1059}
1060
1061
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001062Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1063 Handle<String> name,
1064 StrictModeFlag strict_mode) {
1065 Handle<JSFunction> fun = NewFunctionWithoutPrototypeHelper(name, strict_mode);
1066 fun->set_context(isolate()->context()->global_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001067 return fun;
1068}
1069
1070
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001071Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001072 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001073}
1074
1075
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001076Handle<Object> Factory::ToObject(Handle<Object> object,
1077 Handle<Context> global_context) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001078 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*global_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001079}
1080
1081
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001082#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001083Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1084 // Get the original code of the function.
1085 Handle<Code> code(shared->code());
1086
1087 // Create a copy of the code before allocating the debug info object to avoid
1088 // allocation while setting up the debug info object.
1089 Handle<Code> original_code(*Factory::CopyCode(code));
1090
1091 // Allocate initial fixed array for active break points before allocating the
1092 // debug info object to avoid allocation while setting up the debug info
1093 // object.
1094 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001095 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001096
1097 // Create and set up the debug info object. Debug info contains function, a
1098 // copy of the original code, the executing code and initial fixed array for
1099 // active break points.
1100 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001101 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001102 debug_info->set_shared(*shared);
1103 debug_info->set_original_code(*original_code);
1104 debug_info->set_code(*code);
1105 debug_info->set_break_points(*break_points);
1106
1107 // Link debug info to function.
1108 shared->set_debug_info(*debug_info);
1109
1110 return debug_info;
1111}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001112#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001113
1114
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001115Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1116 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001117 CALL_HEAP_FUNCTION(
1118 isolate(),
1119 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001120}
1121
1122
1123Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001124 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001125 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1126 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001127
kasper.lund212ac232008-07-16 07:07:30 +00001128 int internal_field_count = 0;
1129 if (!obj->instance_template()->IsUndefined()) {
1130 Handle<ObjectTemplateInfo> instance_template =
1131 Handle<ObjectTemplateInfo>(
1132 ObjectTemplateInfo::cast(obj->instance_template()));
1133 internal_field_count =
1134 Smi::cast(instance_template->internal_field_count())->value();
1135 }
1136
1137 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001138 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001139 switch (instance_type) {
1140 case JavaScriptObject:
1141 type = JS_OBJECT_TYPE;
1142 instance_size += JSObject::kHeaderSize;
1143 break;
1144 case InnerGlobalObject:
1145 type = JS_GLOBAL_OBJECT_TYPE;
1146 instance_size += JSGlobalObject::kSize;
1147 break;
1148 case OuterGlobalObject:
1149 type = JS_GLOBAL_PROXY_TYPE;
1150 instance_size += JSGlobalProxy::kSize;
1151 break;
1152 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001153 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001154 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001155 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001156
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001157 Handle<JSFunction> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001158 NewFunction(Factory::empty_symbol(),
1159 type,
1160 instance_size,
1161 code,
1162 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001163 // Set class name.
1164 Handle<Object> class_name = Handle<Object>(obj->class_name());
1165 if (class_name->IsString()) {
1166 result->shared()->set_instance_class_name(*class_name);
1167 result->shared()->set_name(*class_name);
1168 }
1169
1170 Handle<Map> map = Handle<Map>(result->initial_map());
1171
1172 // Mark as undetectable if needed.
1173 if (obj->undetectable()) {
1174 map->set_is_undetectable();
1175 }
1176
1177 // Mark as hidden for the __proto__ accessor if needed.
1178 if (obj->hidden_prototype()) {
1179 map->set_is_hidden_prototype();
1180 }
1181
1182 // Mark as needs_access_check if needed.
1183 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001184 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001185 }
1186
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001187 // Set interceptor information in the map.
1188 if (!obj->named_property_handler()->IsUndefined()) {
1189 map->set_has_named_interceptor();
1190 }
1191 if (!obj->indexed_property_handler()->IsUndefined()) {
1192 map->set_has_indexed_interceptor();
1193 }
1194
1195 // Set instance call-as-function information in the map.
1196 if (!obj->instance_call_handler()->IsUndefined()) {
1197 map->set_has_instance_call_handler();
1198 }
1199
1200 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001201 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001202 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001203
1204 // Recursively copy parent templates' accessors, 'data' may be modified.
1205 Handle<DescriptorArray> array =
1206 Handle<DescriptorArray>(map->instance_descriptors());
1207 while (true) {
1208 Handle<Object> props = Handle<Object>(obj->property_accessors());
1209 if (!props->IsUndefined()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001210 array = CopyAppendCallbackDescriptors(array, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001211 }
1212 Handle<Object> parent = Handle<Object>(obj->parent_template());
1213 if (parent->IsUndefined()) break;
1214 obj = Handle<FunctionTemplateInfo>::cast(parent);
1215 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001216 if (!array->IsEmpty()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001217 map->set_instance_descriptors(*array);
1218 }
1219
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001220 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001221 return result;
1222}
1223
1224
ager@chromium.org236ad962008-09-25 09:45:57 +00001225Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001226 CALL_HEAP_FUNCTION(isolate(),
1227 MapCache::Allocate(at_least_space_for), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001228}
1229
1230
lrn@chromium.org303ada72010-10-27 09:33:13 +00001231MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1232 FixedArray* keys,
1233 Map* map) {
1234 Object* result;
1235 { MaybeObject* maybe_result =
1236 MapCache::cast(context->map_cache())->Put(keys, map);
1237 if (!maybe_result->ToObject(&result)) return maybe_result;
1238 }
1239 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001240 return result;
1241}
1242
1243
1244Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1245 Handle<FixedArray> keys,
1246 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001247 CALL_HEAP_FUNCTION(isolate(),
1248 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001249}
1250
1251
1252Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1253 Handle<FixedArray> keys) {
1254 if (context->map_cache()->IsUndefined()) {
1255 // Allocate the new map cache for the global context.
1256 Handle<MapCache> new_cache = NewMapCache(24);
1257 context->set_map_cache(*new_cache);
1258 }
ager@chromium.org32912102009-01-16 10:38:43 +00001259 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001260 Handle<MapCache> cache =
1261 Handle<MapCache>(MapCache::cast(context->map_cache()));
1262 Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
1263 if (result->IsMap()) return Handle<Map>::cast(result);
1264 // Create a new map and add it to the cache.
1265 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001266 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1267 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001268 AddToMapCache(context, keys, map);
1269 return Handle<Map>(map);
1270}
1271
1272
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001273void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1274 JSRegExp::Type type,
1275 Handle<String> source,
1276 JSRegExp::Flags flags,
1277 Handle<Object> data) {
1278 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1279
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001280 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1281 store->set(JSRegExp::kSourceIndex, *source);
1282 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1283 store->set(JSRegExp::kAtomPatternIndex, *data);
1284 regexp->set_data(*store);
1285}
1286
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001287void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1288 JSRegExp::Type type,
1289 Handle<String> source,
1290 JSRegExp::Flags flags,
1291 int capture_count) {
1292 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001293 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001294 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1295 store->set(JSRegExp::kSourceIndex, *source);
1296 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001297 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1298 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1299 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1300 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001301 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1302 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1303 Smi::FromInt(capture_count));
1304 regexp->set_data(*store);
1305}
1306
1307
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001308
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001309void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1310 Handle<JSObject> instance,
1311 bool* pending_exception) {
1312 // Configure the instance by adding the properties specified by the
1313 // instance template.
1314 Handle<Object> instance_template = Handle<Object>(desc->instance_template());
1315 if (!instance_template->IsUndefined()) {
1316 Execution::ConfigureInstance(instance,
1317 instance_template,
1318 pending_exception);
1319 } else {
1320 *pending_exception = false;
1321 }
1322}
1323
1324
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001325Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1326 Heap* h = isolate()->heap();
1327 if (name->Equals(h->undefined_symbol())) return undefined_value();
1328 if (name->Equals(h->nan_symbol())) return nan_value();
1329 if (name->Equals(h->infinity_symbol())) return infinity_value();
1330 return Handle<Object>::null();
1331}
1332
1333
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001334} } // namespace v8::internal