blob: 6bb7893746d794b7654e1fb7dfd85aaf8f9fe569 [file] [log] [blame]
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001// Copyright 2012 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
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000062Handle<FixedDoubleArray> Factory::NewFixedDoubleArray(int size,
63 PretenureFlag pretenure) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000064 ASSERT(0 <= size);
65 CALL_HEAP_FUNCTION(
66 isolate(),
67 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure),
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000068 FixedDoubleArray);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000069}
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
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000080Handle<SeededNumberDictionary> Factory::NewSeededNumberDictionary(
81 int at_least_space_for) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000082 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000083 CALL_HEAP_FUNCTION(isolate(),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000084 SeededNumberDictionary::Allocate(at_least_space_for),
85 SeededNumberDictionary);
86}
87
88
89Handle<UnseededNumberDictionary> Factory::NewUnseededNumberDictionary(
90 int at_least_space_for) {
91 ASSERT(0 <= at_least_space_for);
92 CALL_HEAP_FUNCTION(isolate(),
93 UnseededNumberDictionary::Allocate(at_least_space_for),
94 UnseededNumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000095}
96
97
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000098Handle<ObjectHashSet> Factory::NewObjectHashSet(int at_least_space_for) {
99 ASSERT(0 <= at_least_space_for);
100 CALL_HEAP_FUNCTION(isolate(),
101 ObjectHashSet::Allocate(at_least_space_for),
102 ObjectHashSet);
103}
104
105
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000106Handle<ObjectHashTable> Factory::NewObjectHashTable(int at_least_space_for) {
107 ASSERT(0 <= at_least_space_for);
108 CALL_HEAP_FUNCTION(isolate(),
109 ObjectHashTable::Allocate(at_least_space_for),
110 ObjectHashTable);
111}
112
113
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000114Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
115 ASSERT(0 <= number_of_descriptors);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000116 CALL_HEAP_FUNCTION(isolate(),
117 DescriptorArray::Allocate(number_of_descriptors),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000118 DescriptorArray);
119}
120
121
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000122Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
123 int deopt_entry_count,
124 PretenureFlag pretenure) {
125 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000126 CALL_HEAP_FUNCTION(isolate(),
127 DeoptimizationInputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000128 pretenure),
129 DeoptimizationInputData);
130}
131
132
133Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
134 int deopt_entry_count,
135 PretenureFlag pretenure) {
136 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000137 CALL_HEAP_FUNCTION(isolate(),
138 DeoptimizationOutputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000139 pretenure),
140 DeoptimizationOutputData);
141}
142
143
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000144Handle<AccessorPair> Factory::NewAccessorPair() {
145 CALL_HEAP_FUNCTION(isolate(),
146 isolate()->heap()->AllocateAccessorPair(),
147 AccessorPair);
148}
149
150
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000151Handle<TypeFeedbackInfo> Factory::NewTypeFeedbackInfo() {
152 CALL_HEAP_FUNCTION(isolate(),
153 isolate()->heap()->AllocateTypeFeedbackInfo(),
154 TypeFeedbackInfo);
155}
156
157
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000158// Symbols are created in the old generation (data space).
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000159Handle<String> Factory::LookupSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000160 CALL_HEAP_FUNCTION(isolate(),
161 isolate()->heap()->LookupSymbol(string),
162 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000163}
164
danno@chromium.org40cb8782011-05-25 07:58:50 +0000165// Symbols are created in the old generation (data space).
166Handle<String> Factory::LookupSymbol(Handle<String> string) {
167 CALL_HEAP_FUNCTION(isolate(),
168 isolate()->heap()->LookupSymbol(*string),
169 String);
170}
171
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000172Handle<String> Factory::LookupAsciiSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000173 CALL_HEAP_FUNCTION(isolate(),
174 isolate()->heap()->LookupAsciiSymbol(string),
175 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000176}
177
danno@chromium.org40cb8782011-05-25 07:58:50 +0000178
179Handle<String> Factory::LookupAsciiSymbol(Handle<SeqAsciiString> string,
180 int from,
181 int length) {
182 CALL_HEAP_FUNCTION(isolate(),
183 isolate()->heap()->LookupAsciiSymbol(string,
184 from,
185 length),
186 String);
187}
188
189
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000190Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000191 CALL_HEAP_FUNCTION(isolate(),
192 isolate()->heap()->LookupTwoByteSymbol(string),
193 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000194}
195
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000196
197Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
198 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000199 CALL_HEAP_FUNCTION(
200 isolate(),
201 isolate()->heap()->AllocateStringFromAscii(string, pretenure),
202 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000203}
204
205Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
206 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000207 CALL_HEAP_FUNCTION(
208 isolate(),
209 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
210 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000211}
212
213
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000214Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
215 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000216 CALL_HEAP_FUNCTION(
217 isolate(),
218 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
219 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000220}
221
222
ager@chromium.org04921a82011-06-27 13:21:41 +0000223Handle<SeqAsciiString> Factory::NewRawAsciiString(int length,
224 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000225 CALL_HEAP_FUNCTION(
226 isolate(),
227 isolate()->heap()->AllocateRawAsciiString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000228 SeqAsciiString);
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +0000229}
230
231
ager@chromium.org04921a82011-06-27 13:21:41 +0000232Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
233 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000234 CALL_HEAP_FUNCTION(
235 isolate(),
236 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000237 SeqTwoByteString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000238}
239
240
241Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000242 Handle<String> second) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000243 CALL_HEAP_FUNCTION(isolate(),
244 isolate()->heap()->AllocateConsString(*first, *second),
245 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000246}
247
248
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000249Handle<String> Factory::NewSubString(Handle<String> str,
250 int begin,
251 int end) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000252 CALL_HEAP_FUNCTION(isolate(),
253 str->SubString(begin, end),
254 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000255}
256
257
ager@chromium.org04921a82011-06-27 13:21:41 +0000258Handle<String> Factory::NewProperSubString(Handle<String> str,
259 int begin,
260 int end) {
261 ASSERT(begin > 0 || end < str->length());
262 CALL_HEAP_FUNCTION(isolate(),
263 isolate()->heap()->AllocateSubString(*str, begin, end),
264 String);
265}
266
267
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000268Handle<String> Factory::NewExternalStringFromAscii(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000269 const ExternalAsciiString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000270 CALL_HEAP_FUNCTION(
271 isolate(),
272 isolate()->heap()->AllocateExternalStringFromAscii(resource),
273 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000274}
275
276
277Handle<String> Factory::NewExternalStringFromTwoByte(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000278 const ExternalTwoByteString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000279 CALL_HEAP_FUNCTION(
280 isolate(),
281 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
282 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000283}
284
285
286Handle<Context> Factory::NewGlobalContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000287 CALL_HEAP_FUNCTION(
288 isolate(),
289 isolate()->heap()->AllocateGlobalContext(),
290 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000291}
292
293
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000294Handle<Context> Factory::NewModuleContext(Handle<Context> previous,
295 Handle<ScopeInfo> scope_info) {
296 CALL_HEAP_FUNCTION(
297 isolate(),
298 isolate()->heap()->AllocateModuleContext(*previous, *scope_info),
299 Context);
300}
301
302
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000303Handle<Context> Factory::NewFunctionContext(int length,
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000304 Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000305 CALL_HEAP_FUNCTION(
306 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000307 isolate()->heap()->AllocateFunctionContext(length, *function),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000308 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000309}
310
311
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000312Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
313 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000314 Handle<String> name,
315 Handle<Object> thrown_object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000316 CALL_HEAP_FUNCTION(
317 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000318 isolate()->heap()->AllocateCatchContext(*function,
319 *previous,
320 *name,
321 *thrown_object),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000322 Context);
323}
324
325
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000326Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
327 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000328 Handle<JSObject> extension) {
329 CALL_HEAP_FUNCTION(
330 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000331 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000332 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000333}
334
335
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000336Handle<Context> Factory::NewBlockContext(Handle<JSFunction> function,
337 Handle<Context> previous,
338 Handle<ScopeInfo> scope_info) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000339 CALL_HEAP_FUNCTION(
340 isolate(),
341 isolate()->heap()->AllocateBlockContext(*function,
342 *previous,
343 *scope_info),
344 Context);
345}
346
347
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000348Handle<Struct> Factory::NewStruct(InstanceType type) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000349 CALL_HEAP_FUNCTION(
350 isolate(),
351 isolate()->heap()->AllocateStruct(type),
352 Struct);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000353}
354
355
356Handle<AccessorInfo> Factory::NewAccessorInfo() {
357 Handle<AccessorInfo> info =
358 Handle<AccessorInfo>::cast(NewStruct(ACCESSOR_INFO_TYPE));
359 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
360 return info;
361}
362
363
364Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000365 // Generate id for this script.
366 int id;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000367 Heap* heap = isolate()->heap();
368 if (heap->last_script_id()->IsUndefined()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000369 // Script ids start from one.
370 id = 1;
371 } else {
372 // Increment id, wrap when positive smi is exhausted.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000373 id = Smi::cast(heap->last_script_id())->value();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000374 id++;
375 if (!Smi::IsValid(id)) {
376 id = 0;
377 }
378 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000379 heap->SetLastScriptId(Smi::FromInt(id));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000380
381 // Create and initialize script object.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000382 Handle<Foreign> wrapper = NewForeign(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000383 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
384 script->set_source(*source);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000385 script->set_name(heap->undefined_value());
386 script->set_id(heap->last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000387 script->set_line_offset(Smi::FromInt(0));
388 script->set_column_offset(Smi::FromInt(0));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000389 script->set_data(heap->undefined_value());
390 script->set_context_data(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000391 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
392 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000393 script->set_compilation_state(
394 Smi::FromInt(Script::COMPILATION_STATE_INITIAL));
ager@chromium.org9085a012009-05-11 19:22:57 +0000395 script->set_wrapper(*wrapper);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000396 script->set_line_ends(heap->undefined_value());
397 script->set_eval_from_shared(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000398 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000399
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000400 return script;
401}
402
403
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000404Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000405 CALL_HEAP_FUNCTION(isolate(),
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000406 isolate()->heap()->AllocateForeign(addr, pretenure),
407 Foreign);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000408}
409
410
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000411Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
412 return NewForeign((Address) desc, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000413}
414
415
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000416Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000417 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000418 CALL_HEAP_FUNCTION(
419 isolate(),
420 isolate()->heap()->AllocateByteArray(length, pretenure),
421 ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000422}
423
424
ager@chromium.org3811b432009-10-28 14:53:37 +0000425Handle<ExternalArray> Factory::NewExternalArray(int length,
426 ExternalArrayType array_type,
427 void* external_pointer,
428 PretenureFlag pretenure) {
429 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000430 CALL_HEAP_FUNCTION(
431 isolate(),
432 isolate()->heap()->AllocateExternalArray(length,
433 array_type,
434 external_pointer,
435 pretenure),
436 ExternalArray);
ager@chromium.org3811b432009-10-28 14:53:37 +0000437}
438
439
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000440Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
441 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000442 CALL_HEAP_FUNCTION(
443 isolate(),
444 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
445 JSGlobalPropertyCell);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000446}
447
448
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000449Handle<Map> Factory::NewMap(InstanceType type,
450 int instance_size,
451 ElementsKind elements_kind) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000452 CALL_HEAP_FUNCTION(
453 isolate(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000454 isolate()->heap()->AllocateMap(type, instance_size, elements_kind),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000455 Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000456}
457
458
459Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000460 CALL_HEAP_FUNCTION(
461 isolate(),
462 isolate()->heap()->AllocateFunctionPrototype(*function),
463 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000464}
465
466
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000467Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000468 CALL_HEAP_FUNCTION(isolate(), src->CopyDropDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000469}
470
471
ager@chromium.org32912102009-01-16 10:38:43 +0000472Handle<Map> Factory::CopyMap(Handle<Map> src,
473 int extra_inobject_properties) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000474 Handle<Map> copy = CopyMapDropDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000475 // Check that we do not overflow the instance size when adding the
476 // extra inobject properties.
477 int instance_size_delta = extra_inobject_properties * kPointerSize;
478 int max_instance_size_delta =
479 JSObject::kMaxInstanceSize - copy->instance_size();
480 if (instance_size_delta > max_instance_size_delta) {
481 // If the instance size overflows, we allocate as many properties
482 // as we can as inobject properties.
483 instance_size_delta = max_instance_size_delta;
484 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
485 }
486 // Adjust the map with the extra inobject properties.
487 int inobject_properties =
488 copy->inobject_properties() + extra_inobject_properties;
489 copy->set_inobject_properties(inobject_properties);
490 copy->set_unused_property_fields(inobject_properties);
491 copy->set_instance_size(copy->instance_size() + instance_size_delta);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000492 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
ager@chromium.org32912102009-01-16 10:38:43 +0000493 return copy;
494}
495
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000496
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000497Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000498 CALL_HEAP_FUNCTION(isolate(), src->CopyDropTransitions(), Map);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000499}
500
501
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000502Handle<Map> Factory::GetElementsTransitionMap(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000503 Handle<JSObject> src,
504 ElementsKind elements_kind) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000505 Isolate* i = isolate();
506 CALL_HEAP_FUNCTION(i,
507 src->GetElementsTransitionMap(i, elements_kind),
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000508 Map);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000509}
510
511
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000512Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000513 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000514}
515
516
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000517Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray(
518 Handle<FixedDoubleArray> array) {
519 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray);
520}
521
522
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000523Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
524 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000525 Handle<Map> function_map,
526 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000527 CALL_HEAP_FUNCTION(
528 isolate(),
529 isolate()->heap()->AllocateFunction(*function_map,
530 *function_info,
531 isolate()->heap()->the_hole_value(),
532 pretenure),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000533 JSFunction);
534}
535
536
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000537Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
538 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000539 Handle<Context> context,
540 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000541 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000542 function_info,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000543 function_info->is_classic_mode()
544 ? isolate()->function_map()
545 : isolate()->strict_mode_function_map(),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000546 pretenure);
547
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000548 if (function_info->ic_age() != isolate()->heap()->global_ic_age()) {
549 function_info->ResetForNewContext(isolate()->heap()->global_ic_age());
550 }
551
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552 result->set_context(*context);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000553 if (!function_info->bound()) {
554 int number_of_literals = function_info->num_literals();
555 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
556 if (number_of_literals > 0) {
557 // Store the object, regexp and array functions in the literals
558 // array prefix. These functions will be used when creating
559 // object, regexp and array literals in this function.
560 literals->set(JSFunction::kLiteralGlobalContextIndex,
561 context->global_context());
562 }
563 result->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000564 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000565 if (V8::UseCrankshaft() &&
566 FLAG_always_opt &&
567 result->is_compiled() &&
568 !function_info->is_toplevel() &&
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000569 function_info->allows_lazy_compilation() &&
570 !function_info->optimization_disabled()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000571 result->MarkForLazyRecompilation();
572 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000573 return result;
574}
575
576
577Handle<Object> Factory::NewNumber(double value,
578 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000579 CALL_HEAP_FUNCTION(
580 isolate(),
581 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000582}
583
584
erikcorry0ad885c2011-11-21 13:51:57 +0000585Handle<Object> Factory::NewNumberFromInt(int32_t value,
586 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000587 CALL_HEAP_FUNCTION(
588 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000589 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000590}
591
592
erikcorry0ad885c2011-11-21 13:51:57 +0000593Handle<Object> Factory::NewNumberFromUint(uint32_t value,
594 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000595 CALL_HEAP_FUNCTION(
596 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000597 isolate()->heap()->NumberFromUint32(value, pretenure), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000598}
599
600
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000601Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000602 CALL_HEAP_FUNCTION(
603 isolate(),
604 isolate()->heap()->AllocateJSObjectFromMap(
605 isolate()->heap()->neander_map()),
606 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000607}
608
609
610Handle<Object> Factory::NewTypeError(const char* type,
611 Vector< Handle<Object> > args) {
612 return NewError("MakeTypeError", type, args);
613}
614
615
616Handle<Object> Factory::NewTypeError(Handle<String> message) {
617 return NewError("$TypeError", message);
618}
619
620
621Handle<Object> Factory::NewRangeError(const char* type,
622 Vector< Handle<Object> > args) {
623 return NewError("MakeRangeError", type, args);
624}
625
626
627Handle<Object> Factory::NewRangeError(Handle<String> message) {
628 return NewError("$RangeError", message);
629}
630
631
632Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
633 return NewError("MakeSyntaxError", type, args);
634}
635
636
637Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
638 return NewError("$SyntaxError", message);
639}
640
641
642Handle<Object> Factory::NewReferenceError(const char* type,
643 Vector< Handle<Object> > args) {
644 return NewError("MakeReferenceError", type, args);
645}
646
647
648Handle<Object> Factory::NewReferenceError(Handle<String> message) {
649 return NewError("$ReferenceError", message);
650}
651
652
653Handle<Object> Factory::NewError(const char* maker, const char* type,
654 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000655 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000656 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000657 for (int i = 0; i < args.length(); i++) {
658 array->set(i, *args[i]);
659 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000660 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000661 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000662 return result.EscapeFrom(&scope);
663}
664
665
666Handle<Object> Factory::NewEvalError(const char* type,
667 Vector< Handle<Object> > args) {
668 return NewError("MakeEvalError", type, args);
669}
670
671
672Handle<Object> Factory::NewError(const char* type,
673 Vector< Handle<Object> > args) {
674 return NewError("MakeError", type, args);
675}
676
677
678Handle<Object> Factory::NewError(const char* maker,
679 const char* type,
680 Handle<JSArray> args) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000681 Handle<String> make_str = LookupAsciiSymbol(maker);
682 Handle<Object> fun_obj(
683 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000684 // If the builtins haven't been properly configured yet this error
685 // constructor may not have been defined. Bail out.
686 if (!fun_obj->IsJSFunction())
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000687 return undefined_value();
ager@chromium.org4af710e2009-09-15 12:20:11 +0000688 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000689 Handle<Object> type_obj = LookupAsciiSymbol(type);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000690 Handle<Object> argv[] = { type_obj, args };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000691
692 // Invoke the JavaScript factory method. If an exception is thrown while
693 // running the factory method, use the exception as the result.
694 bool caught_exception;
695 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000696 isolate()->js_builtins_object(),
697 ARRAY_SIZE(argv),
698 argv,
699 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000700 return result;
701}
702
703
704Handle<Object> Factory::NewError(Handle<String> message) {
705 return NewError("$Error", message);
706}
707
708
709Handle<Object> Factory::NewError(const char* constructor,
710 Handle<String> message) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000711 Handle<String> constr = LookupAsciiSymbol(constructor);
712 Handle<JSFunction> fun = Handle<JSFunction>(
713 JSFunction::cast(isolate()->js_builtins_object()->
714 GetPropertyNoExceptionThrown(*constr)));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000715 Handle<Object> argv[] = { message };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000716
717 // Invoke the JavaScript factory method. If an exception is thrown while
718 // running the factory method, use the exception as the result.
719 bool caught_exception;
720 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000721 isolate()->js_builtins_object(),
722 ARRAY_SIZE(argv),
723 argv,
724 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000725 return result;
726}
727
728
729Handle<JSFunction> Factory::NewFunction(Handle<String> name,
730 InstanceType type,
731 int instance_size,
732 Handle<Code> code,
733 bool force_initial_map) {
734 // Allocate the function
735 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000736
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000737 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000738 // the function itself.
739 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000740 function->set_code(*code);
741
742 if (force_initial_map ||
743 type != JS_OBJECT_TYPE ||
744 instance_size != JSObject::kHeaderSize) {
745 Handle<Map> initial_map = NewMap(type, instance_size);
746 Handle<JSObject> prototype = NewFunctionPrototype(function);
747 initial_map->set_prototype(*prototype);
748 function->set_initial_map(*initial_map);
749 initial_map->set_constructor(*function);
750 } else {
751 ASSERT(!function->has_initial_map());
752 ASSERT(!function->has_prototype());
753 }
754
755 return function;
756}
757
758
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000759Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
760 InstanceType type,
761 int instance_size,
762 Handle<JSObject> prototype,
763 Handle<Code> code,
764 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000765 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000766 Handle<JSFunction> function = NewFunction(name, prototype);
767
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000768 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000769 // the function itself.
770 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000771 function->set_code(*code);
772
773 if (force_initial_map ||
774 type != JS_OBJECT_TYPE ||
775 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000776 Handle<Map> initial_map = NewMap(type,
777 instance_size,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000778 FAST_SMI_ONLY_ELEMENTS);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000779 function->set_initial_map(*initial_map);
780 initial_map->set_constructor(*function);
781 }
782
783 // Set function.prototype and give the prototype a constructor
784 // property that refers to the function.
785 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000786 // Currently safe because it is only invoked from Genesis.
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000787 CHECK_NOT_EMPTY_HANDLE(isolate(),
788 JSObject::SetLocalPropertyIgnoreAttributes(
789 prototype, constructor_symbol(),
790 function, DONT_ENUM));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000791 return function;
792}
793
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000794
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000795Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
796 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000797 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000798 CLASSIC_MODE);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000799 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000800 function->set_code(*code);
801 ASSERT(!function->has_initial_map());
802 ASSERT(!function->has_prototype());
803 return function;
804}
805
806
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000807Handle<ScopeInfo> Factory::NewScopeInfo(int length) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000808 CALL_HEAP_FUNCTION(
809 isolate(),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000810 isolate()->heap()->AllocateScopeInfo(length),
811 ScopeInfo);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000812}
813
814
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000815Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000816 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000817 Handle<Object> self_ref,
818 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000819 CALL_HEAP_FUNCTION(isolate(),
820 isolate()->heap()->CreateCode(
821 desc, flags, self_ref, immovable),
822 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000823}
824
825
826Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000827 CALL_HEAP_FUNCTION(isolate(),
828 isolate()->heap()->CopyCode(*code),
829 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000830}
831
832
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000833Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000834 CALL_HEAP_FUNCTION(isolate(),
835 isolate()->heap()->CopyCode(*code, reloc_info),
836 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000837}
838
839
lrn@chromium.org303ada72010-10-27 09:33:13 +0000840MUST_USE_RESULT static inline MaybeObject* DoCopyInsert(
841 DescriptorArray* array,
842 String* key,
843 Object* value,
844 PropertyAttributes attributes) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000845 CallbacksDescriptor desc(key, value, attributes);
lrn@chromium.org303ada72010-10-27 09:33:13 +0000846 MaybeObject* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000847 return obj;
848}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000849
850
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000851// Allocate the new array.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000852Handle<DescriptorArray> Factory::CopyAppendForeignDescriptor(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000853 Handle<DescriptorArray> array,
854 Handle<String> key,
855 Handle<Object> value,
856 PropertyAttributes attributes) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000857 CALL_HEAP_FUNCTION(isolate(),
858 DoCopyInsert(*array, *key, *value, attributes),
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000859 DescriptorArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000860}
861
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000862
863Handle<String> Factory::SymbolFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000864 CALL_HEAP_FUNCTION(isolate(),
865 isolate()->heap()->LookupSymbol(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000866}
867
868
869Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
870 Handle<DescriptorArray> array,
871 Handle<Object> descriptors) {
872 v8::NeanderArray callbacks(descriptors);
873 int nof_callbacks = callbacks.length();
874 Handle<DescriptorArray> result =
875 NewDescriptorArray(array->number_of_descriptors() + nof_callbacks);
876
877 // Number of descriptors added to the result so far.
878 int descriptor_count = 0;
879
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000880 // Ensure that marking will not progress and change color of objects.
881 DescriptorArray::WhitenessWitness witness(*result);
882
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000883 // Copy the descriptors from the array.
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000884 for (int i = 0; i < array->number_of_descriptors(); i++) {
danno@chromium.orgc612e022011-11-10 11:38:15 +0000885 if (!array->IsNullDescriptor(i)) {
ulan@chromium.org65a89c22012-02-14 11:46:07 +0000886 DescriptorArray::CopyFrom(result, descriptor_count++, array, i, witness);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000887 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000888 }
889
890 // Number of duplicates detected.
891 int duplicates = 0;
892
893 // Fill in new callback descriptors. Process the callbacks from
894 // back to front so that the last callback with a given name takes
895 // precedence over previously added callbacks with that name.
896 for (int i = nof_callbacks - 1; i >= 0; i--) {
897 Handle<AccessorInfo> entry =
898 Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
899 // Ensure the key is a symbol before writing into the instance descriptor.
900 Handle<String> key =
901 SymbolFromString(Handle<String>(String::cast(entry->name())));
902 // Check if a descriptor with this name already exists before writing.
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +0000903 if (result->LinearSearch(*key, descriptor_count) ==
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904 DescriptorArray::kNotFound) {
905 CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000906 result->Set(descriptor_count, &desc, witness);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000907 descriptor_count++;
908 } else {
909 duplicates++;
910 }
911 }
912
913 // If duplicates were detected, allocate a result of the right size
914 // and transfer the elements.
915 if (duplicates > 0) {
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000916 int number_of_descriptors = result->number_of_descriptors() - duplicates;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000917 Handle<DescriptorArray> new_result =
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000918 NewDescriptorArray(number_of_descriptors);
919 for (int i = 0; i < number_of_descriptors; i++) {
ulan@chromium.org65a89c22012-02-14 11:46:07 +0000920 DescriptorArray::CopyFrom(new_result, i, result, i, witness);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000921 }
922 result = new_result;
923 }
924
925 // Sort the result before returning.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000926 result->Sort(witness);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000927 return result;
928}
929
930
931Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
932 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000933 CALL_HEAP_FUNCTION(
934 isolate(),
935 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000936}
937
938
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000939Handle<JSModule> Factory::NewJSModule() {
940 CALL_HEAP_FUNCTION(
941 isolate(),
942 isolate()->heap()->AllocateJSModule(), JSModule);
943}
944
945
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000946Handle<GlobalObject> Factory::NewGlobalObject(
947 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000948 CALL_HEAP_FUNCTION(isolate(),
949 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000950 GlobalObject);
951}
952
953
954
ager@chromium.org236ad962008-09-25 09:45:57 +0000955Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000956 CALL_HEAP_FUNCTION(
957 isolate(),
958 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
959 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000960}
961
962
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000963Handle<JSArray> Factory::NewJSArray(int capacity,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000964 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000965 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000966 CALL_HEAP_FUNCTION(isolate(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000967 isolate()->heap()->AllocateJSArrayAndStorage(
968 elements_kind,
969 0,
970 capacity,
971 INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
972 pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000973 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000974}
975
976
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000977Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000978 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000979 PretenureFlag pretenure) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000980 CALL_HEAP_FUNCTION(
981 isolate(),
982 isolate()->heap()->AllocateJSArrayWithElements(*elements,
983 elements_kind,
984 pretenure),
985 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000986}
987
988
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000989void Factory::SetElementsCapacityAndLength(Handle<JSArray> array,
990 int capacity,
991 int length) {
992 ElementsAccessor* accessor = array->GetElementsAccessor();
993 CALL_HEAP_FUNCTION_VOID(
994 isolate(),
995 accessor->SetCapacityAndLength(*array, capacity, length));
996}
997
998
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000999void Factory::SetContent(Handle<JSArray> array,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001000 Handle<FixedArrayBase> elements) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001001 CALL_HEAP_FUNCTION_VOID(
1002 isolate(),
1003 array->SetContent(*elements));
1004}
1005
1006
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001007void Factory::EnsureCanContainHeapObjectElements(Handle<JSArray> array) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001008 CALL_HEAP_FUNCTION_VOID(
1009 isolate(),
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001010 array->EnsureCanContainHeapObjectElements());
1011}
1012
1013
1014void Factory::EnsureCanContainElements(Handle<JSArray> array,
1015 Handle<FixedArrayBase> elements,
1016 EnsureElementsMode mode) {
1017 CALL_HEAP_FUNCTION_VOID(
1018 isolate(),
1019 array->EnsureCanContainElements(*elements, mode));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001020}
1021
1022
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00001023Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
1024 Handle<Object> prototype) {
1025 CALL_HEAP_FUNCTION(
1026 isolate(),
1027 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
1028 JSProxy);
1029}
1030
1031
lrn@chromium.org34e60782011-09-15 07:25:40 +00001032void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001033 CALL_HEAP_FUNCTION_VOID(
1034 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +00001035 isolate()->heap()->ReinitializeJSReceiver(
1036 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
1037}
1038
1039
1040void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1041 CALL_HEAP_FUNCTION_VOID(
1042 isolate(),
1043 isolate()->heap()->ReinitializeJSReceiver(
1044 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001045}
1046
1047
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001048void Factory::SetIdentityHash(Handle<JSObject> object, Object* hash) {
1049 CALL_HEAP_FUNCTION_VOID(
1050 isolate(),
1051 object->SetIdentityHash(hash, ALLOW_CREATION));
1052}
1053
1054
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001055Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001056 Handle<String> name,
1057 int number_of_literals,
1058 Handle<Code> code,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001059 Handle<ScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001060 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
1061 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001062 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001063 int literals_array_size = number_of_literals;
1064 // If the function contains object, regexp or array literals,
1065 // allocate extra space for a literals array prefix containing the
1066 // context.
1067 if (number_of_literals > 0) {
1068 literals_array_size += JSFunction::kLiteralsPrefixSize;
1069 }
1070 shared->set_num_literals(literals_array_size);
1071 return shared;
1072}
1073
1074
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001075Handle<JSMessageObject> Factory::NewJSMessageObject(
1076 Handle<String> type,
1077 Handle<JSArray> arguments,
1078 int start_position,
1079 int end_position,
1080 Handle<Object> script,
1081 Handle<Object> stack_trace,
1082 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001083 CALL_HEAP_FUNCTION(isolate(),
1084 isolate()->heap()->AllocateJSMessageObject(*type,
1085 *arguments,
1086 start_position,
1087 end_position,
1088 *script,
1089 *stack_trace,
1090 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001091 JSMessageObject);
1092}
1093
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001094Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001095 CALL_HEAP_FUNCTION(isolate(),
1096 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001097 SharedFunctionInfo);
1098}
1099
1100
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001101Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001102 CALL_HEAP_FUNCTION(isolate(),
1103 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001104}
1105
1106
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001107Handle<String> Factory::Uint32ToString(uint32_t value) {
1108 CALL_HEAP_FUNCTION(isolate(),
1109 isolate()->heap()->Uint32ToString(value), String);
1110}
1111
1112
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001113Handle<SeededNumberDictionary> Factory::DictionaryAtNumberPut(
1114 Handle<SeededNumberDictionary> dictionary,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001115 uint32_t key,
1116 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001117 CALL_HEAP_FUNCTION(isolate(),
1118 dictionary->AtNumberPut(key, *value),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001119 SeededNumberDictionary);
1120}
1121
1122
1123Handle<UnseededNumberDictionary> Factory::DictionaryAtNumberPut(
1124 Handle<UnseededNumberDictionary> dictionary,
1125 uint32_t key,
1126 Handle<Object> value) {
1127 CALL_HEAP_FUNCTION(isolate(),
1128 dictionary->AtNumberPut(key, *value),
1129 UnseededNumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001130}
1131
1132
1133Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1134 Handle<Object> prototype) {
1135 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001136 CALL_HEAP_FUNCTION(
1137 isolate(),
1138 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1139 *function_share,
1140 *prototype),
1141 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001142}
1143
1144
1145Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1146 Handle<Object> prototype) {
1147 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001148 fun->set_context(isolate()->context()->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001149 return fun;
1150}
1151
1152
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001153Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001154 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001155 LanguageMode language_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001156 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001157 Handle<Map> map = (language_mode == CLASSIC_MODE)
1158 ? isolate()->function_without_prototype_map()
1159 : isolate()->strict_mode_function_without_prototype_map();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001160 CALL_HEAP_FUNCTION(isolate(),
1161 isolate()->heap()->AllocateFunction(
1162 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001163 *function_share,
1164 *the_hole_value()),
1165 JSFunction);
1166}
1167
1168
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001169Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1170 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001171 LanguageMode language_mode) {
1172 Handle<JSFunction> fun =
1173 NewFunctionWithoutPrototypeHelper(name, language_mode);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001174 fun->set_context(isolate()->context()->global_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001175 return fun;
1176}
1177
1178
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001179Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001180 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001181}
1182
1183
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001184Handle<Object> Factory::ToObject(Handle<Object> object,
1185 Handle<Context> global_context) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001186 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*global_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001187}
1188
1189
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001190#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001191Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1192 // Get the original code of the function.
1193 Handle<Code> code(shared->code());
1194
1195 // Create a copy of the code before allocating the debug info object to avoid
1196 // allocation while setting up the debug info object.
1197 Handle<Code> original_code(*Factory::CopyCode(code));
1198
1199 // Allocate initial fixed array for active break points before allocating the
1200 // debug info object to avoid allocation while setting up the debug info
1201 // object.
1202 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001203 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001204
1205 // Create and set up the debug info object. Debug info contains function, a
1206 // copy of the original code, the executing code and initial fixed array for
1207 // active break points.
1208 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001209 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001210 debug_info->set_shared(*shared);
1211 debug_info->set_original_code(*original_code);
1212 debug_info->set_code(*code);
1213 debug_info->set_break_points(*break_points);
1214
1215 // Link debug info to function.
1216 shared->set_debug_info(*debug_info);
1217
1218 return debug_info;
1219}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001220#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001221
1222
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001223Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1224 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001225 CALL_HEAP_FUNCTION(
1226 isolate(),
1227 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001228}
1229
1230
1231Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001232 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001233 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1234 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001235
kasper.lund212ac232008-07-16 07:07:30 +00001236 int internal_field_count = 0;
1237 if (!obj->instance_template()->IsUndefined()) {
1238 Handle<ObjectTemplateInfo> instance_template =
1239 Handle<ObjectTemplateInfo>(
1240 ObjectTemplateInfo::cast(obj->instance_template()));
1241 internal_field_count =
1242 Smi::cast(instance_template->internal_field_count())->value();
1243 }
1244
1245 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001246 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001247 switch (instance_type) {
1248 case JavaScriptObject:
1249 type = JS_OBJECT_TYPE;
1250 instance_size += JSObject::kHeaderSize;
1251 break;
1252 case InnerGlobalObject:
1253 type = JS_GLOBAL_OBJECT_TYPE;
1254 instance_size += JSGlobalObject::kSize;
1255 break;
1256 case OuterGlobalObject:
1257 type = JS_GLOBAL_PROXY_TYPE;
1258 instance_size += JSGlobalProxy::kSize;
1259 break;
1260 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001261 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001262 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001263 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001264
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001265 Handle<JSFunction> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001266 NewFunction(Factory::empty_symbol(),
1267 type,
1268 instance_size,
1269 code,
1270 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001271 // Set class name.
1272 Handle<Object> class_name = Handle<Object>(obj->class_name());
1273 if (class_name->IsString()) {
1274 result->shared()->set_instance_class_name(*class_name);
1275 result->shared()->set_name(*class_name);
1276 }
1277
1278 Handle<Map> map = Handle<Map>(result->initial_map());
1279
1280 // Mark as undetectable if needed.
1281 if (obj->undetectable()) {
1282 map->set_is_undetectable();
1283 }
1284
1285 // Mark as hidden for the __proto__ accessor if needed.
1286 if (obj->hidden_prototype()) {
1287 map->set_is_hidden_prototype();
1288 }
1289
1290 // Mark as needs_access_check if needed.
1291 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001292 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001293 }
1294
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001295 // Set interceptor information in the map.
1296 if (!obj->named_property_handler()->IsUndefined()) {
1297 map->set_has_named_interceptor();
1298 }
1299 if (!obj->indexed_property_handler()->IsUndefined()) {
1300 map->set_has_indexed_interceptor();
1301 }
1302
1303 // Set instance call-as-function information in the map.
1304 if (!obj->instance_call_handler()->IsUndefined()) {
1305 map->set_has_instance_call_handler();
1306 }
1307
1308 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001309 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001310 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001311
1312 // Recursively copy parent templates' accessors, 'data' may be modified.
1313 Handle<DescriptorArray> array =
1314 Handle<DescriptorArray>(map->instance_descriptors());
1315 while (true) {
1316 Handle<Object> props = Handle<Object>(obj->property_accessors());
1317 if (!props->IsUndefined()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001318 array = CopyAppendCallbackDescriptors(array, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001319 }
1320 Handle<Object> parent = Handle<Object>(obj->parent_template());
1321 if (parent->IsUndefined()) break;
1322 obj = Handle<FunctionTemplateInfo>::cast(parent);
1323 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001324 if (!array->IsEmpty()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001325 map->set_instance_descriptors(*array);
1326 }
1327
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001328 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001329 return result;
1330}
1331
1332
ager@chromium.org236ad962008-09-25 09:45:57 +00001333Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001334 CALL_HEAP_FUNCTION(isolate(),
1335 MapCache::Allocate(at_least_space_for), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001336}
1337
1338
lrn@chromium.org303ada72010-10-27 09:33:13 +00001339MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1340 FixedArray* keys,
1341 Map* map) {
1342 Object* result;
1343 { MaybeObject* maybe_result =
1344 MapCache::cast(context->map_cache())->Put(keys, map);
1345 if (!maybe_result->ToObject(&result)) return maybe_result;
1346 }
1347 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001348 return result;
1349}
1350
1351
1352Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1353 Handle<FixedArray> keys,
1354 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001355 CALL_HEAP_FUNCTION(isolate(),
1356 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001357}
1358
1359
1360Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1361 Handle<FixedArray> keys) {
1362 if (context->map_cache()->IsUndefined()) {
1363 // Allocate the new map cache for the global context.
1364 Handle<MapCache> new_cache = NewMapCache(24);
1365 context->set_map_cache(*new_cache);
1366 }
ager@chromium.org32912102009-01-16 10:38:43 +00001367 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001368 Handle<MapCache> cache =
1369 Handle<MapCache>(MapCache::cast(context->map_cache()));
1370 Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
1371 if (result->IsMap()) return Handle<Map>::cast(result);
1372 // Create a new map and add it to the cache.
1373 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001374 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1375 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001376 AddToMapCache(context, keys, map);
1377 return Handle<Map>(map);
1378}
1379
1380
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001381void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1382 JSRegExp::Type type,
1383 Handle<String> source,
1384 JSRegExp::Flags flags,
1385 Handle<Object> data) {
1386 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1387
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001388 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1389 store->set(JSRegExp::kSourceIndex, *source);
1390 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1391 store->set(JSRegExp::kAtomPatternIndex, *data);
1392 regexp->set_data(*store);
1393}
1394
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001395void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1396 JSRegExp::Type type,
1397 Handle<String> source,
1398 JSRegExp::Flags flags,
1399 int capture_count) {
1400 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001401 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001402 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1403 store->set(JSRegExp::kSourceIndex, *source);
1404 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001405 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1406 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1407 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1408 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001409 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1410 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1411 Smi::FromInt(capture_count));
1412 regexp->set_data(*store);
1413}
1414
1415
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001416
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001417void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1418 Handle<JSObject> instance,
1419 bool* pending_exception) {
1420 // Configure the instance by adding the properties specified by the
1421 // instance template.
1422 Handle<Object> instance_template = Handle<Object>(desc->instance_template());
1423 if (!instance_template->IsUndefined()) {
1424 Execution::ConfigureInstance(instance,
1425 instance_template,
1426 pending_exception);
1427 } else {
1428 *pending_exception = false;
1429 }
1430}
1431
1432
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001433Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1434 Heap* h = isolate()->heap();
1435 if (name->Equals(h->undefined_symbol())) return undefined_value();
1436 if (name->Equals(h->nan_symbol())) return nan_value();
1437 if (name->Equals(h->infinity_symbol())) return infinity_value();
1438 return Handle<Object>::null();
1439}
1440
1441
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001442Handle<Object> Factory::ToBoolean(bool value) {
1443 return Handle<Object>(value
1444 ? isolate()->heap()->true_value()
1445 : isolate()->heap()->false_value());
1446}
1447
1448
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001449} } // namespace v8::internal