blob: 5e2a2b18741507e4239bcfab8506712783a01c2c [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"
verwaest@chromium.org37141392012-05-31 13:27:02 +000037#include "platform.h"
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000038#include "scopeinfo.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039
kasperl@chromium.org71affb52009-05-26 05:44:31 +000040namespace v8 {
41namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042
43
44Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
45 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000046 CALL_HEAP_FUNCTION(
47 isolate(),
48 isolate()->heap()->AllocateFixedArray(size, pretenure),
49 FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050}
51
52
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000053Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
54 PretenureFlag pretenure) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000055 ASSERT(0 <= size);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000056 CALL_HEAP_FUNCTION(
57 isolate(),
58 isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure),
59 FixedArray);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000060}
61
62
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000063Handle<FixedDoubleArray> Factory::NewFixedDoubleArray(int size,
64 PretenureFlag pretenure) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000065 ASSERT(0 <= size);
66 CALL_HEAP_FUNCTION(
67 isolate(),
68 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure),
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000069 FixedDoubleArray);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000070}
71
72
ulan@chromium.org750145a2013-03-07 15:14:13 +000073Handle<NameDictionary> Factory::NewNameDictionary(int at_least_space_for) {
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000074 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000075 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +000076 NameDictionary::Allocate(isolate()->heap(),
77 at_least_space_for),
ulan@chromium.org750145a2013-03-07 15:14:13 +000078 NameDictionary);
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000079}
80
81
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000082Handle<SeededNumberDictionary> Factory::NewSeededNumberDictionary(
83 int at_least_space_for) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000084 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000085 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +000086 SeededNumberDictionary::Allocate(isolate()->heap(),
87 at_least_space_for),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000088 SeededNumberDictionary);
89}
90
91
92Handle<UnseededNumberDictionary> Factory::NewUnseededNumberDictionary(
93 int at_least_space_for) {
94 ASSERT(0 <= at_least_space_for);
95 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +000096 UnseededNumberDictionary::Allocate(isolate()->heap(),
97 at_least_space_for),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000098 UnseededNumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000099}
100
101
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000102Handle<ObjectHashSet> Factory::NewObjectHashSet(int at_least_space_for) {
103 ASSERT(0 <= at_least_space_for);
104 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +0000105 ObjectHashSet::Allocate(isolate()->heap(),
106 at_least_space_for),
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000107 ObjectHashSet);
108}
109
110
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000111Handle<ObjectHashTable> Factory::NewObjectHashTable(int at_least_space_for) {
112 ASSERT(0 <= at_least_space_for);
113 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +0000114 ObjectHashTable::Allocate(isolate()->heap(),
115 at_least_space_for),
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000116 ObjectHashTable);
117}
118
119
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000120Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors,
121 int slack) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000122 ASSERT(0 <= number_of_descriptors);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000123 CALL_HEAP_FUNCTION(isolate(),
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000124 DescriptorArray::Allocate(number_of_descriptors, slack),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000125 DescriptorArray);
126}
127
128
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000129Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
130 int deopt_entry_count,
131 PretenureFlag pretenure) {
132 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000133 CALL_HEAP_FUNCTION(isolate(),
134 DeoptimizationInputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000135 pretenure),
136 DeoptimizationInputData);
137}
138
139
140Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
141 int deopt_entry_count,
142 PretenureFlag pretenure) {
143 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000144 CALL_HEAP_FUNCTION(isolate(),
145 DeoptimizationOutputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000146 pretenure),
147 DeoptimizationOutputData);
148}
149
150
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000151Handle<AccessorPair> Factory::NewAccessorPair() {
152 CALL_HEAP_FUNCTION(isolate(),
153 isolate()->heap()->AllocateAccessorPair(),
154 AccessorPair);
155}
156
157
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000158Handle<TypeFeedbackInfo> Factory::NewTypeFeedbackInfo() {
159 CALL_HEAP_FUNCTION(isolate(),
160 isolate()->heap()->AllocateTypeFeedbackInfo(),
161 TypeFeedbackInfo);
162}
163
164
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000165// Internalized strings are created in the old generation (data space).
166Handle<String> Factory::InternalizeUtf8String(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000167 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000168 isolate()->heap()->InternalizeUtf8String(string),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000169 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000170}
171
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000172// Internalized strings are created in the old generation (data space).
173Handle<String> Factory::InternalizeString(Handle<String> string) {
danno@chromium.org40cb8782011-05-25 07:58:50 +0000174 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000175 isolate()->heap()->InternalizeString(*string),
danno@chromium.org40cb8782011-05-25 07:58:50 +0000176 String);
177}
178
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000179Handle<String> Factory::InternalizeOneByteString(Vector<const uint8_t> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000180 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000181 isolate()->heap()->InternalizeOneByteString(string),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000182 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000183}
184
danno@chromium.org40cb8782011-05-25 07:58:50 +0000185
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000186Handle<String> Factory::InternalizeOneByteString(
187 Handle<SeqOneByteString> string, int from, int length) {
danno@chromium.org40cb8782011-05-25 07:58:50 +0000188 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000189 isolate()->heap()->InternalizeOneByteString(
190 string, from, length),
danno@chromium.org40cb8782011-05-25 07:58:50 +0000191 String);
192}
193
194
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000195Handle<String> Factory::InternalizeTwoByteString(Vector<const uc16> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000196 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000197 isolate()->heap()->InternalizeTwoByteString(string),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000198 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000199}
200
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000201
jkummerow@chromium.org59297c72013-01-09 16:32:23 +0000202Handle<String> Factory::NewStringFromOneByte(Vector<const uint8_t> string,
203 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000204 CALL_HEAP_FUNCTION(
205 isolate(),
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000206 isolate()->heap()->AllocateStringFromOneByte(string, pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000207 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000208}
209
210Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
211 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000212 CALL_HEAP_FUNCTION(
213 isolate(),
214 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
215 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000216}
217
218
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000219Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
220 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000221 CALL_HEAP_FUNCTION(
222 isolate(),
223 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
224 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000225}
226
227
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000228Handle<SeqOneByteString> Factory::NewRawOneByteString(int length,
ager@chromium.org04921a82011-06-27 13:21:41 +0000229 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000230 CALL_HEAP_FUNCTION(
231 isolate(),
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000232 isolate()->heap()->AllocateRawOneByteString(length, pretenure),
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000233 SeqOneByteString);
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +0000234}
235
236
ager@chromium.org04921a82011-06-27 13:21:41 +0000237Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
238 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000239 CALL_HEAP_FUNCTION(
240 isolate(),
241 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000242 SeqTwoByteString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000243}
244
245
246Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000247 Handle<String> second) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000248 CALL_HEAP_FUNCTION(isolate(),
249 isolate()->heap()->AllocateConsString(*first, *second),
250 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000251}
252
253
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000254Handle<String> Factory::NewSubString(Handle<String> str,
255 int begin,
256 int end) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000257 CALL_HEAP_FUNCTION(isolate(),
258 str->SubString(begin, end),
259 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000260}
261
262
ager@chromium.org04921a82011-06-27 13:21:41 +0000263Handle<String> Factory::NewProperSubString(Handle<String> str,
264 int begin,
265 int end) {
266 ASSERT(begin > 0 || end < str->length());
267 CALL_HEAP_FUNCTION(isolate(),
268 isolate()->heap()->AllocateSubString(*str, begin, end),
269 String);
270}
271
272
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000273Handle<String> Factory::NewExternalStringFromAscii(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000274 const ExternalAsciiString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000275 CALL_HEAP_FUNCTION(
276 isolate(),
277 isolate()->heap()->AllocateExternalStringFromAscii(resource),
278 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000279}
280
281
282Handle<String> Factory::NewExternalStringFromTwoByte(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000283 const ExternalTwoByteString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000284 CALL_HEAP_FUNCTION(
285 isolate(),
286 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
287 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000288}
289
290
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000291Handle<Symbol> Factory::NewSymbol() {
292 CALL_HEAP_FUNCTION(
293 isolate(),
294 isolate()->heap()->AllocateSymbol(),
295 Symbol);
296}
297
298
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000299Handle<Context> Factory::NewNativeContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000300 CALL_HEAP_FUNCTION(
301 isolate(),
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000302 isolate()->heap()->AllocateNativeContext(),
303 Context);
304}
305
306
307Handle<Context> Factory::NewGlobalContext(Handle<JSFunction> function,
308 Handle<ScopeInfo> scope_info) {
309 CALL_HEAP_FUNCTION(
310 isolate(),
311 isolate()->heap()->AllocateGlobalContext(*function, *scope_info),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000312 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000313}
314
315
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000316Handle<Context> Factory::NewModuleContext(Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000317 CALL_HEAP_FUNCTION(
318 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000319 isolate()->heap()->AllocateModuleContext(*scope_info),
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000320 Context);
321}
322
323
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000324Handle<Context> Factory::NewFunctionContext(int length,
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000325 Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000326 CALL_HEAP_FUNCTION(
327 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000328 isolate()->heap()->AllocateFunctionContext(length, *function),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000329 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000330}
331
332
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000333Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
334 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000335 Handle<String> name,
336 Handle<Object> thrown_object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000337 CALL_HEAP_FUNCTION(
338 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000339 isolate()->heap()->AllocateCatchContext(*function,
340 *previous,
341 *name,
342 *thrown_object),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000343 Context);
344}
345
346
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000347Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
348 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000349 Handle<JSObject> extension) {
350 CALL_HEAP_FUNCTION(
351 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000352 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000353 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000354}
355
356
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000357Handle<Context> Factory::NewBlockContext(Handle<JSFunction> function,
358 Handle<Context> previous,
359 Handle<ScopeInfo> scope_info) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000360 CALL_HEAP_FUNCTION(
361 isolate(),
362 isolate()->heap()->AllocateBlockContext(*function,
363 *previous,
364 *scope_info),
365 Context);
366}
367
368
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000369Handle<Struct> Factory::NewStruct(InstanceType type) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000370 CALL_HEAP_FUNCTION(
371 isolate(),
372 isolate()->heap()->AllocateStruct(type),
373 Struct);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000374}
375
376
ulan@chromium.org750145a2013-03-07 15:14:13 +0000377Handle<DeclaredAccessorDescriptor> Factory::NewDeclaredAccessorDescriptor() {
378 return Handle<DeclaredAccessorDescriptor>::cast(
379 NewStruct(DECLARED_ACCESSOR_DESCRIPTOR_TYPE));
380}
381
382
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +0000383Handle<DeclaredAccessorInfo> Factory::NewDeclaredAccessorInfo() {
384 Handle<DeclaredAccessorInfo> info =
385 Handle<DeclaredAccessorInfo>::cast(
386 NewStruct(DECLARED_ACCESSOR_INFO_TYPE));
387 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
388 return info;
389}
390
391
392Handle<ExecutableAccessorInfo> Factory::NewExecutableAccessorInfo() {
393 Handle<ExecutableAccessorInfo> info =
394 Handle<ExecutableAccessorInfo>::cast(
395 NewStruct(EXECUTABLE_ACCESSOR_INFO_TYPE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000396 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
397 return info;
398}
399
400
401Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000402 // Generate id for this script.
403 int id;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000404 Heap* heap = isolate()->heap();
405 if (heap->last_script_id()->IsUndefined()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000406 // Script ids start from one.
407 id = 1;
408 } else {
409 // Increment id, wrap when positive smi is exhausted.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000410 id = Smi::cast(heap->last_script_id())->value();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000411 id++;
412 if (!Smi::IsValid(id)) {
413 id = 0;
414 }
415 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000416 heap->SetLastScriptId(Smi::FromInt(id));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000417
418 // Create and initialize script object.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000419 Handle<Foreign> wrapper = NewForeign(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000420 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
421 script->set_source(*source);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000422 script->set_name(heap->undefined_value());
423 script->set_id(heap->last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000424 script->set_line_offset(Smi::FromInt(0));
425 script->set_column_offset(Smi::FromInt(0));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000426 script->set_data(heap->undefined_value());
427 script->set_context_data(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000428 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
429 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000430 script->set_compilation_state(
431 Smi::FromInt(Script::COMPILATION_STATE_INITIAL));
ager@chromium.org9085a012009-05-11 19:22:57 +0000432 script->set_wrapper(*wrapper);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000433 script->set_line_ends(heap->undefined_value());
434 script->set_eval_from_shared(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000435 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000436
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000437 return script;
438}
439
440
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000441Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000442 CALL_HEAP_FUNCTION(isolate(),
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000443 isolate()->heap()->AllocateForeign(addr, pretenure),
444 Foreign);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000445}
446
447
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000448Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
449 return NewForeign((Address) desc, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000450}
451
452
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000453Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000454 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000455 CALL_HEAP_FUNCTION(
456 isolate(),
457 isolate()->heap()->AllocateByteArray(length, pretenure),
458 ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000459}
460
461
ager@chromium.org3811b432009-10-28 14:53:37 +0000462Handle<ExternalArray> Factory::NewExternalArray(int length,
463 ExternalArrayType array_type,
464 void* external_pointer,
465 PretenureFlag pretenure) {
466 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000467 CALL_HEAP_FUNCTION(
468 isolate(),
469 isolate()->heap()->AllocateExternalArray(length,
470 array_type,
471 external_pointer,
472 pretenure),
473 ExternalArray);
ager@chromium.org3811b432009-10-28 14:53:37 +0000474}
475
476
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000477Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
478 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000479 CALL_HEAP_FUNCTION(
480 isolate(),
481 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
482 JSGlobalPropertyCell);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000483}
484
485
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000486Handle<Map> Factory::NewMap(InstanceType type,
487 int instance_size,
488 ElementsKind elements_kind) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000489 CALL_HEAP_FUNCTION(
490 isolate(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000491 isolate()->heap()->AllocateMap(type, instance_size, elements_kind),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000492 Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000493}
494
495
496Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000497 CALL_HEAP_FUNCTION(
498 isolate(),
499 isolate()->heap()->AllocateFunctionPrototype(*function),
500 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000501}
502
503
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000504Handle<Map> Factory::CopyWithPreallocatedFieldDescriptors(Handle<Map> src) {
505 CALL_HEAP_FUNCTION(
506 isolate(), src->CopyWithPreallocatedFieldDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000507}
508
509
ager@chromium.org32912102009-01-16 10:38:43 +0000510Handle<Map> Factory::CopyMap(Handle<Map> src,
511 int extra_inobject_properties) {
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000512 Handle<Map> copy = CopyWithPreallocatedFieldDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000513 // Check that we do not overflow the instance size when adding the
514 // extra inobject properties.
515 int instance_size_delta = extra_inobject_properties * kPointerSize;
516 int max_instance_size_delta =
517 JSObject::kMaxInstanceSize - copy->instance_size();
518 if (instance_size_delta > max_instance_size_delta) {
519 // If the instance size overflows, we allocate as many properties
520 // as we can as inobject properties.
521 instance_size_delta = max_instance_size_delta;
522 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
523 }
524 // Adjust the map with the extra inobject properties.
525 int inobject_properties =
526 copy->inobject_properties() + extra_inobject_properties;
527 copy->set_inobject_properties(inobject_properties);
528 copy->set_unused_property_fields(inobject_properties);
529 copy->set_instance_size(copy->instance_size() + instance_size_delta);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000530 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
ager@chromium.org32912102009-01-16 10:38:43 +0000531 return copy;
532}
533
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000534
verwaest@chromium.org753aee42012-07-17 16:15:42 +0000535Handle<Map> Factory::CopyMap(Handle<Map> src) {
verwaest@chromium.orgde64f722012-08-16 15:44:54 +0000536 CALL_HEAP_FUNCTION(isolate(), src->Copy(), Map);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000537}
538
539
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000540Handle<Map> Factory::GetElementsTransitionMap(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000541 Handle<JSObject> src,
542 ElementsKind elements_kind) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000543 Isolate* i = isolate();
544 CALL_HEAP_FUNCTION(i,
545 src->GetElementsTransitionMap(i, elements_kind),
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000546 Map);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000547}
548
549
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000550Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000551 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552}
553
554
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +0000555Handle<FixedArray> Factory::CopySizeFixedArray(Handle<FixedArray> array,
556 int new_length) {
557 CALL_HEAP_FUNCTION(isolate(), array->CopySize(new_length), FixedArray);
558}
559
560
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000561Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray(
562 Handle<FixedDoubleArray> array) {
563 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray);
564}
565
566
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000567Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
568 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000569 Handle<Map> function_map,
570 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000571 CALL_HEAP_FUNCTION(
572 isolate(),
573 isolate()->heap()->AllocateFunction(*function_map,
574 *function_info,
575 isolate()->heap()->the_hole_value(),
576 pretenure),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000577 JSFunction);
578}
579
580
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000581static Handle<Map> MapForNewFunction(Isolate *isolate,
582 Handle<SharedFunctionInfo> function_info) {
583 Context *context = isolate->context()->native_context();
584 int map_index = Context::FunctionMapIndex(function_info->language_mode(),
585 function_info->is_generator());
586 return Handle<Map>(Map::cast(context->get(map_index)));
587}
588
589
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000590Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
591 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000592 Handle<Context> context,
593 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000594 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000595 function_info,
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000596 MapForNewFunction(isolate(), function_info),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000597 pretenure);
598
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000599 if (function_info->ic_age() != isolate()->heap()->global_ic_age()) {
600 function_info->ResetForNewContext(isolate()->heap()->global_ic_age());
601 }
602
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000603 result->set_context(*context);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000604
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000605 int index = function_info->SearchOptimizedCodeMap(context->native_context());
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000606 if (!function_info->bound() && index < 0) {
607 int number_of_literals = function_info->num_literals();
608 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
609 if (number_of_literals > 0) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000610 // Store the native context in the literals array prefix. This
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000611 // context will be used when creating object, regexp and array
612 // literals in this function.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000613 literals->set(JSFunction::kLiteralNativeContextIndex,
614 context->native_context());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000615 }
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000616 result->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000617 }
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000618
619 if (index > 0) {
620 // Caching of optimized code enabled and optimized code found.
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000621 function_info->InstallFromOptimizedCodeMap(*result, index);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000622 return result;
623 }
624
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000625 if (V8::UseCrankshaft() &&
626 FLAG_always_opt &&
627 result->is_compiled() &&
628 !function_info->is_toplevel() &&
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000629 function_info->allows_lazy_compilation() &&
630 !function_info->optimization_disabled()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000631 result->MarkForLazyRecompilation();
632 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000633 return result;
634}
635
636
637Handle<Object> Factory::NewNumber(double value,
638 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000639 CALL_HEAP_FUNCTION(
640 isolate(),
641 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000642}
643
644
erikcorry0ad885c2011-11-21 13:51:57 +0000645Handle<Object> Factory::NewNumberFromInt(int32_t value,
646 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000647 CALL_HEAP_FUNCTION(
648 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000649 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000650}
651
652
erikcorry0ad885c2011-11-21 13:51:57 +0000653Handle<Object> Factory::NewNumberFromUint(uint32_t value,
654 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000655 CALL_HEAP_FUNCTION(
656 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000657 isolate()->heap()->NumberFromUint32(value, pretenure), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000658}
659
660
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000661Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000662 CALL_HEAP_FUNCTION(
663 isolate(),
664 isolate()->heap()->AllocateJSObjectFromMap(
665 isolate()->heap()->neander_map()),
666 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000667}
668
669
670Handle<Object> Factory::NewTypeError(const char* type,
671 Vector< Handle<Object> > args) {
672 return NewError("MakeTypeError", type, args);
673}
674
675
676Handle<Object> Factory::NewTypeError(Handle<String> message) {
677 return NewError("$TypeError", message);
678}
679
680
681Handle<Object> Factory::NewRangeError(const char* type,
682 Vector< Handle<Object> > args) {
683 return NewError("MakeRangeError", type, args);
684}
685
686
687Handle<Object> Factory::NewRangeError(Handle<String> message) {
688 return NewError("$RangeError", message);
689}
690
691
692Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
693 return NewError("MakeSyntaxError", type, args);
694}
695
696
697Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
698 return NewError("$SyntaxError", message);
699}
700
701
702Handle<Object> Factory::NewReferenceError(const char* type,
703 Vector< Handle<Object> > args) {
704 return NewError("MakeReferenceError", type, args);
705}
706
707
708Handle<Object> Factory::NewReferenceError(Handle<String> message) {
709 return NewError("$ReferenceError", message);
710}
711
712
svenpanne@chromium.org2bda5432013-03-15 12:39:50 +0000713Handle<Object> Factory::NewError(const char* maker,
714 const char* type,
715 Vector< Handle<Object> > args) {
716 // Instantiate a closeable HandleScope for EscapeFrom.
717 v8::HandleScope scope(reinterpret_cast<v8::Isolate*>(isolate()));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000718 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000719 for (int i = 0; i < args.length(); i++) {
720 array->set(i, *args[i]);
721 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000722 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000723 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000724 return result.EscapeFrom(&scope);
725}
726
727
728Handle<Object> Factory::NewEvalError(const char* type,
729 Vector< Handle<Object> > args) {
730 return NewError("MakeEvalError", type, args);
731}
732
733
734Handle<Object> Factory::NewError(const char* type,
735 Vector< Handle<Object> > args) {
736 return NewError("MakeError", type, args);
737}
738
739
verwaest@chromium.org37141392012-05-31 13:27:02 +0000740Handle<String> Factory::EmergencyNewError(const char* type,
741 Handle<JSArray> args) {
742 const int kBufferSize = 1000;
743 char buffer[kBufferSize];
744 size_t space = kBufferSize;
745 char* p = &buffer[0];
746
747 Vector<char> v(buffer, kBufferSize);
748 OS::StrNCpy(v, type, space);
749 space -= Min(space, strlen(type));
750 p = &buffer[kBufferSize] - space;
751
752 for (unsigned i = 0; i < ARRAY_SIZE(args); i++) {
753 if (space > 0) {
754 *p++ = ' ';
755 space--;
756 if (space > 0) {
757 MaybeObject* maybe_arg = args->GetElement(i);
758 Handle<String> arg_str(reinterpret_cast<String*>(maybe_arg));
759 const char* arg = *arg_str->ToCString();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000760 Vector<char> v2(p, static_cast<int>(space));
verwaest@chromium.org37141392012-05-31 13:27:02 +0000761 OS::StrNCpy(v2, arg, space);
762 space -= Min(space, strlen(arg));
763 p = &buffer[kBufferSize] - space;
764 }
765 }
766 }
767 if (space > 0) {
768 *p = '\0';
769 } else {
770 buffer[kBufferSize - 1] = '\0';
771 }
772 Handle<String> error_string = NewStringFromUtf8(CStrVector(buffer), TENURED);
773 return error_string;
774}
775
776
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000777Handle<Object> Factory::NewError(const char* maker,
778 const char* type,
779 Handle<JSArray> args) {
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000780 Handle<String> make_str = InternalizeUtf8String(maker);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000781 Handle<Object> fun_obj(
ulan@chromium.org09d7ab52013-02-25 15:50:35 +0000782 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str),
783 isolate());
ager@chromium.org4af710e2009-09-15 12:20:11 +0000784 // If the builtins haven't been properly configured yet this error
785 // constructor may not have been defined. Bail out.
verwaest@chromium.org37141392012-05-31 13:27:02 +0000786 if (!fun_obj->IsJSFunction()) {
787 return EmergencyNewError(type, args);
788 }
ager@chromium.org4af710e2009-09-15 12:20:11 +0000789 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000790 Handle<Object> type_obj = InternalizeUtf8String(type);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000791 Handle<Object> argv[] = { type_obj, args };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000792
793 // Invoke the JavaScript factory method. If an exception is thrown while
794 // running the factory method, use the exception as the result.
795 bool caught_exception;
796 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000797 isolate()->js_builtins_object(),
798 ARRAY_SIZE(argv),
799 argv,
800 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000801 return result;
802}
803
804
805Handle<Object> Factory::NewError(Handle<String> message) {
806 return NewError("$Error", message);
807}
808
809
810Handle<Object> Factory::NewError(const char* constructor,
811 Handle<String> message) {
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000812 Handle<String> constr = InternalizeUtf8String(constructor);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000813 Handle<JSFunction> fun = Handle<JSFunction>(
814 JSFunction::cast(isolate()->js_builtins_object()->
815 GetPropertyNoExceptionThrown(*constr)));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000816 Handle<Object> argv[] = { message };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000817
818 // Invoke the JavaScript factory method. If an exception is thrown while
819 // running the factory method, use the exception as the result.
820 bool caught_exception;
821 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000822 isolate()->js_builtins_object(),
823 ARRAY_SIZE(argv),
824 argv,
825 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000826 return result;
827}
828
829
830Handle<JSFunction> Factory::NewFunction(Handle<String> name,
831 InstanceType type,
832 int instance_size,
833 Handle<Code> code,
834 bool force_initial_map) {
835 // Allocate the function
836 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000837
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000838 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000839 // the function itself.
840 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000841 function->set_code(*code);
842
843 if (force_initial_map ||
844 type != JS_OBJECT_TYPE ||
845 instance_size != JSObject::kHeaderSize) {
846 Handle<Map> initial_map = NewMap(type, instance_size);
847 Handle<JSObject> prototype = NewFunctionPrototype(function);
848 initial_map->set_prototype(*prototype);
849 function->set_initial_map(*initial_map);
850 initial_map->set_constructor(*function);
851 } else {
852 ASSERT(!function->has_initial_map());
853 ASSERT(!function->has_prototype());
854 }
855
856 return function;
857}
858
859
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000860Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
861 InstanceType type,
862 int instance_size,
863 Handle<JSObject> prototype,
864 Handle<Code> code,
865 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000866 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000867 Handle<JSFunction> function = NewFunction(name, prototype);
868
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000869 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000870 // the function itself.
871 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000872 function->set_code(*code);
873
874 if (force_initial_map ||
875 type != JS_OBJECT_TYPE ||
876 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000877 Handle<Map> initial_map = NewMap(type,
878 instance_size,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000879 GetInitialFastElementsKind());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000880 function->set_initial_map(*initial_map);
881 initial_map->set_constructor(*function);
882 }
883
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000884 SetPrototypeProperty(function, prototype);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000885 return function;
886}
887
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000888
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000889Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
890 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000891 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000892 CLASSIC_MODE);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000893 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000894 function->set_code(*code);
895 ASSERT(!function->has_initial_map());
896 ASSERT(!function->has_prototype());
897 return function;
898}
899
900
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000901Handle<ScopeInfo> Factory::NewScopeInfo(int length) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000902 CALL_HEAP_FUNCTION(
903 isolate(),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000904 isolate()->heap()->AllocateScopeInfo(length),
905 ScopeInfo);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000906}
907
908
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +0000909Handle<JSObject> Factory::NewExternal(void* value) {
910 CALL_HEAP_FUNCTION(isolate(),
911 isolate()->heap()->AllocateExternal(value),
912 JSObject);
913}
914
915
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000916Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000917 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000918 Handle<Object> self_ref,
919 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000920 CALL_HEAP_FUNCTION(isolate(),
921 isolate()->heap()->CreateCode(
922 desc, flags, self_ref, immovable),
923 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000924}
925
926
927Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000928 CALL_HEAP_FUNCTION(isolate(),
929 isolate()->heap()->CopyCode(*code),
930 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000931}
932
933
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000934Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000935 CALL_HEAP_FUNCTION(isolate(),
936 isolate()->heap()->CopyCode(*code, reloc_info),
937 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000938}
939
940
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000941Handle<String> Factory::InternalizedStringFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000942 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000943 isolate()->heap()->InternalizeString(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000944}
945
946
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000947Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
948 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000949 CALL_HEAP_FUNCTION(
950 isolate(),
951 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000952}
953
954
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000955Handle<JSModule> Factory::NewJSModule(Handle<Context> context,
956 Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000957 CALL_HEAP_FUNCTION(
958 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000959 isolate()->heap()->AllocateJSModule(*context, *scope_info), JSModule);
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000960}
961
962
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000963Handle<GlobalObject> Factory::NewGlobalObject(
964 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000965 CALL_HEAP_FUNCTION(isolate(),
966 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000967 GlobalObject);
968}
969
970
971
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +0000972Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map,
973 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000974 CALL_HEAP_FUNCTION(
975 isolate(),
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +0000976 isolate()->heap()->AllocateJSObjectFromMap(*map, pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000977 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000978}
979
980
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000981Handle<JSArray> Factory::NewJSArray(int capacity,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000982 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000983 PretenureFlag pretenure) {
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000984 if (capacity != 0) {
985 elements_kind = GetHoleyElementsKind(elements_kind);
986 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000987 CALL_HEAP_FUNCTION(isolate(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000988 isolate()->heap()->AllocateJSArrayAndStorage(
989 elements_kind,
990 0,
991 capacity,
992 INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
993 pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000994 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000995}
996
997
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000998Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000999 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001000 PretenureFlag pretenure) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001001 CALL_HEAP_FUNCTION(
1002 isolate(),
1003 isolate()->heap()->AllocateJSArrayWithElements(*elements,
1004 elements_kind,
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001005 elements->length(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001006 pretenure),
1007 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001008}
1009
1010
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001011void Factory::SetElementsCapacityAndLength(Handle<JSArray> array,
1012 int capacity,
1013 int length) {
1014 ElementsAccessor* accessor = array->GetElementsAccessor();
1015 CALL_HEAP_FUNCTION_VOID(
1016 isolate(),
1017 accessor->SetCapacityAndLength(*array, capacity, length));
1018}
1019
1020
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001021void Factory::SetContent(Handle<JSArray> array,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001022 Handle<FixedArrayBase> elements) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001023 CALL_HEAP_FUNCTION_VOID(
1024 isolate(),
1025 array->SetContent(*elements));
1026}
1027
1028
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001029void Factory::EnsureCanContainHeapObjectElements(Handle<JSArray> array) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001030 CALL_HEAP_FUNCTION_VOID(
1031 isolate(),
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001032 array->EnsureCanContainHeapObjectElements());
1033}
1034
1035
1036void Factory::EnsureCanContainElements(Handle<JSArray> array,
1037 Handle<FixedArrayBase> elements,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001038 uint32_t length,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001039 EnsureElementsMode mode) {
1040 CALL_HEAP_FUNCTION_VOID(
1041 isolate(),
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001042 array->EnsureCanContainElements(*elements, length, mode));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001043}
1044
1045
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00001046Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
1047 Handle<Object> prototype) {
1048 CALL_HEAP_FUNCTION(
1049 isolate(),
1050 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
1051 JSProxy);
1052}
1053
1054
lrn@chromium.org34e60782011-09-15 07:25:40 +00001055void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001056 CALL_HEAP_FUNCTION_VOID(
1057 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +00001058 isolate()->heap()->ReinitializeJSReceiver(
1059 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
1060}
1061
1062
1063void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1064 CALL_HEAP_FUNCTION_VOID(
1065 isolate(),
1066 isolate()->heap()->ReinitializeJSReceiver(
1067 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001068}
1069
1070
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00001071void Factory::SetIdentityHash(Handle<JSObject> object, Smi* hash) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001072 CALL_HEAP_FUNCTION_VOID(
1073 isolate(),
1074 object->SetIdentityHash(hash, ALLOW_CREATION));
1075}
1076
1077
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001078Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001079 Handle<String> name,
1080 int number_of_literals,
1081 Handle<Code> code,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001082 Handle<ScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001083 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
1084 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001085 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001086 int literals_array_size = number_of_literals;
1087 // If the function contains object, regexp or array literals,
1088 // allocate extra space for a literals array prefix containing the
1089 // context.
1090 if (number_of_literals > 0) {
1091 literals_array_size += JSFunction::kLiteralsPrefixSize;
1092 }
1093 shared->set_num_literals(literals_array_size);
1094 return shared;
1095}
1096
1097
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001098Handle<JSMessageObject> Factory::NewJSMessageObject(
1099 Handle<String> type,
1100 Handle<JSArray> arguments,
1101 int start_position,
1102 int end_position,
1103 Handle<Object> script,
1104 Handle<Object> stack_trace,
1105 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001106 CALL_HEAP_FUNCTION(isolate(),
1107 isolate()->heap()->AllocateJSMessageObject(*type,
1108 *arguments,
1109 start_position,
1110 end_position,
1111 *script,
1112 *stack_trace,
1113 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001114 JSMessageObject);
1115}
1116
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001117Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001118 CALL_HEAP_FUNCTION(isolate(),
1119 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001120 SharedFunctionInfo);
1121}
1122
1123
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001124Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001125 CALL_HEAP_FUNCTION(isolate(),
1126 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001127}
1128
1129
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001130Handle<String> Factory::Uint32ToString(uint32_t value) {
1131 CALL_HEAP_FUNCTION(isolate(),
1132 isolate()->heap()->Uint32ToString(value), String);
1133}
1134
1135
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001136Handle<SeededNumberDictionary> Factory::DictionaryAtNumberPut(
1137 Handle<SeededNumberDictionary> dictionary,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001138 uint32_t key,
1139 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001140 CALL_HEAP_FUNCTION(isolate(),
1141 dictionary->AtNumberPut(key, *value),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001142 SeededNumberDictionary);
1143}
1144
1145
1146Handle<UnseededNumberDictionary> Factory::DictionaryAtNumberPut(
1147 Handle<UnseededNumberDictionary> dictionary,
1148 uint32_t key,
1149 Handle<Object> value) {
1150 CALL_HEAP_FUNCTION(isolate(),
1151 dictionary->AtNumberPut(key, *value),
1152 UnseededNumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001153}
1154
1155
1156Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1157 Handle<Object> prototype) {
1158 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001159 CALL_HEAP_FUNCTION(
1160 isolate(),
1161 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1162 *function_share,
1163 *prototype),
1164 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001165}
1166
1167
1168Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1169 Handle<Object> prototype) {
1170 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001171 fun->set_context(isolate()->context()->native_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001172 return fun;
1173}
1174
1175
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001176Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001177 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001178 LanguageMode language_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001179 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001180 Handle<Map> map = (language_mode == CLASSIC_MODE)
1181 ? isolate()->function_without_prototype_map()
1182 : isolate()->strict_mode_function_without_prototype_map();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001183 CALL_HEAP_FUNCTION(isolate(),
1184 isolate()->heap()->AllocateFunction(
1185 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001186 *function_share,
1187 *the_hole_value()),
1188 JSFunction);
1189}
1190
1191
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001192Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1193 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001194 LanguageMode language_mode) {
1195 Handle<JSFunction> fun =
1196 NewFunctionWithoutPrototypeHelper(name, language_mode);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001197 fun->set_context(isolate()->context()->native_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001198 return fun;
1199}
1200
1201
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001202Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001203 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001204}
1205
1206
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001207Handle<Object> Factory::ToObject(Handle<Object> object,
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001208 Handle<Context> native_context) {
1209 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*native_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001210}
1211
1212
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001213#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001214Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1215 // Get the original code of the function.
1216 Handle<Code> code(shared->code());
1217
1218 // Create a copy of the code before allocating the debug info object to avoid
1219 // allocation while setting up the debug info object.
1220 Handle<Code> original_code(*Factory::CopyCode(code));
1221
1222 // Allocate initial fixed array for active break points before allocating the
1223 // debug info object to avoid allocation while setting up the debug info
1224 // object.
1225 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001226 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001227
1228 // Create and set up the debug info object. Debug info contains function, a
1229 // copy of the original code, the executing code and initial fixed array for
1230 // active break points.
1231 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001232 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001233 debug_info->set_shared(*shared);
1234 debug_info->set_original_code(*original_code);
1235 debug_info->set_code(*code);
1236 debug_info->set_break_points(*break_points);
1237
1238 // Link debug info to function.
1239 shared->set_debug_info(*debug_info);
1240
1241 return debug_info;
1242}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001243#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001244
1245
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001246Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1247 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001248 CALL_HEAP_FUNCTION(
1249 isolate(),
1250 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001251}
1252
1253
1254Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001255 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001256 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1257 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001258
kasper.lund212ac232008-07-16 07:07:30 +00001259 int internal_field_count = 0;
1260 if (!obj->instance_template()->IsUndefined()) {
1261 Handle<ObjectTemplateInfo> instance_template =
1262 Handle<ObjectTemplateInfo>(
1263 ObjectTemplateInfo::cast(obj->instance_template()));
1264 internal_field_count =
1265 Smi::cast(instance_template->internal_field_count())->value();
1266 }
1267
1268 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001269 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001270 switch (instance_type) {
1271 case JavaScriptObject:
1272 type = JS_OBJECT_TYPE;
1273 instance_size += JSObject::kHeaderSize;
1274 break;
1275 case InnerGlobalObject:
1276 type = JS_GLOBAL_OBJECT_TYPE;
1277 instance_size += JSGlobalObject::kSize;
1278 break;
1279 case OuterGlobalObject:
1280 type = JS_GLOBAL_PROXY_TYPE;
1281 instance_size += JSGlobalProxy::kSize;
1282 break;
1283 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001284 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001285 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001286 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001287
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001288 Handle<JSFunction> result =
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +00001289 NewFunction(Factory::empty_string(),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001290 type,
1291 instance_size,
1292 code,
1293 true);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00001294
1295 // Set length.
1296 result->shared()->set_length(obj->length());
1297
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001298 // Set class name.
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001299 Handle<Object> class_name = Handle<Object>(obj->class_name(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001300 if (class_name->IsString()) {
1301 result->shared()->set_instance_class_name(*class_name);
1302 result->shared()->set_name(*class_name);
1303 }
1304
1305 Handle<Map> map = Handle<Map>(result->initial_map());
1306
1307 // Mark as undetectable if needed.
1308 if (obj->undetectable()) {
1309 map->set_is_undetectable();
1310 }
1311
1312 // Mark as hidden for the __proto__ accessor if needed.
1313 if (obj->hidden_prototype()) {
1314 map->set_is_hidden_prototype();
1315 }
1316
1317 // Mark as needs_access_check if needed.
1318 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001319 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001320 }
1321
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001322 // Set interceptor information in the map.
1323 if (!obj->named_property_handler()->IsUndefined()) {
1324 map->set_has_named_interceptor();
1325 }
1326 if (!obj->indexed_property_handler()->IsUndefined()) {
1327 map->set_has_indexed_interceptor();
1328 }
1329
1330 // Set instance call-as-function information in the map.
1331 if (!obj->instance_call_handler()->IsUndefined()) {
1332 map->set_has_instance_call_handler();
1333 }
1334
1335 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001336 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001337 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001338
1339 // Recursively copy parent templates' accessors, 'data' may be modified.
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001340 int max_number_of_additional_properties = 0;
1341 FunctionTemplateInfo* info = *obj;
1342 while (true) {
1343 Object* props = info->property_accessors();
1344 if (!props->IsUndefined()) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001345 Handle<Object> props_handle(props, isolate());
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001346 NeanderArray props_array(props_handle);
1347 max_number_of_additional_properties += props_array.length();
1348 }
1349 Object* parent = info->parent_template();
1350 if (parent->IsUndefined()) break;
1351 info = FunctionTemplateInfo::cast(parent);
1352 }
1353
1354 Map::EnsureDescriptorSlack(map, max_number_of_additional_properties);
1355
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001356 while (true) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001357 Handle<Object> props = Handle<Object>(obj->property_accessors(),
1358 isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001359 if (!props->IsUndefined()) {
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001360 Map::AppendCallbackDescriptors(map, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001361 }
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001362 Handle<Object> parent = Handle<Object>(obj->parent_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001363 if (parent->IsUndefined()) break;
1364 obj = Handle<FunctionTemplateInfo>::cast(parent);
1365 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001366
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001367 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001368 return result;
1369}
1370
1371
ager@chromium.org236ad962008-09-25 09:45:57 +00001372Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001373 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +00001374 MapCache::Allocate(isolate()->heap(),
1375 at_least_space_for),
1376 MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001377}
1378
1379
lrn@chromium.org303ada72010-10-27 09:33:13 +00001380MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1381 FixedArray* keys,
1382 Map* map) {
1383 Object* result;
1384 { MaybeObject* maybe_result =
1385 MapCache::cast(context->map_cache())->Put(keys, map);
1386 if (!maybe_result->ToObject(&result)) return maybe_result;
1387 }
1388 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001389 return result;
1390}
1391
1392
1393Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1394 Handle<FixedArray> keys,
1395 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001396 CALL_HEAP_FUNCTION(isolate(),
1397 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001398}
1399
1400
1401Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1402 Handle<FixedArray> keys) {
1403 if (context->map_cache()->IsUndefined()) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001404 // Allocate the new map cache for the native context.
ager@chromium.org236ad962008-09-25 09:45:57 +00001405 Handle<MapCache> new_cache = NewMapCache(24);
1406 context->set_map_cache(*new_cache);
1407 }
ager@chromium.org32912102009-01-16 10:38:43 +00001408 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001409 Handle<MapCache> cache =
1410 Handle<MapCache>(MapCache::cast(context->map_cache()));
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001411 Handle<Object> result = Handle<Object>(cache->Lookup(*keys), isolate());
ager@chromium.org236ad962008-09-25 09:45:57 +00001412 if (result->IsMap()) return Handle<Map>::cast(result);
1413 // Create a new map and add it to the cache.
1414 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001415 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1416 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001417 AddToMapCache(context, keys, map);
1418 return Handle<Map>(map);
1419}
1420
1421
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001422void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1423 JSRegExp::Type type,
1424 Handle<String> source,
1425 JSRegExp::Flags flags,
1426 Handle<Object> data) {
1427 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1428
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001429 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1430 store->set(JSRegExp::kSourceIndex, *source);
1431 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1432 store->set(JSRegExp::kAtomPatternIndex, *data);
1433 regexp->set_data(*store);
1434}
1435
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001436void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1437 JSRegExp::Type type,
1438 Handle<String> source,
1439 JSRegExp::Flags flags,
1440 int capture_count) {
1441 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001442 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001443 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1444 store->set(JSRegExp::kSourceIndex, *source);
1445 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001446 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1447 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1448 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1449 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001450 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1451 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1452 Smi::FromInt(capture_count));
1453 regexp->set_data(*store);
1454}
1455
1456
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001457
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001458void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1459 Handle<JSObject> instance,
1460 bool* pending_exception) {
1461 // Configure the instance by adding the properties specified by the
1462 // instance template.
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001463 Handle<Object> instance_template(desc->instance_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001464 if (!instance_template->IsUndefined()) {
1465 Execution::ConfigureInstance(instance,
1466 instance_template,
1467 pending_exception);
1468 } else {
1469 *pending_exception = false;
1470 }
1471}
1472
1473
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001474Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1475 Heap* h = isolate()->heap();
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +00001476 if (name->Equals(h->undefined_string())) return undefined_value();
1477 if (name->Equals(h->nan_string())) return nan_value();
1478 if (name->Equals(h->infinity_string())) return infinity_value();
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001479 return Handle<Object>::null();
1480}
1481
1482
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001483Handle<Object> Factory::ToBoolean(bool value) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001484 return value ? true_value() : false_value();
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001485}
1486
1487
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001488} } // namespace v8::internal