blob: 9135d542c0460224997232eb40ef06f076ab8fe1 [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
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000581Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
582 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000583 Handle<Context> context,
584 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000585 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000586 function_info,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000587 function_info->is_classic_mode()
588 ? isolate()->function_map()
589 : isolate()->strict_mode_function_map(),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000590 pretenure);
591
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000592 if (function_info->ic_age() != isolate()->heap()->global_ic_age()) {
593 function_info->ResetForNewContext(isolate()->heap()->global_ic_age());
594 }
595
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000596 result->set_context(*context);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000597
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000598 int index = function_info->SearchOptimizedCodeMap(context->native_context());
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000599 if (!function_info->bound() && index < 0) {
600 int number_of_literals = function_info->num_literals();
601 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
602 if (number_of_literals > 0) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000603 // Store the native context in the literals array prefix. This
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000604 // context will be used when creating object, regexp and array
605 // literals in this function.
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000606 literals->set(JSFunction::kLiteralNativeContextIndex,
607 context->native_context());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000608 }
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000609 result->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000610 }
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000611
612 if (index > 0) {
613 // Caching of optimized code enabled and optimized code found.
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000614 function_info->InstallFromOptimizedCodeMap(*result, index);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000615 return result;
616 }
617
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000618 if (V8::UseCrankshaft() &&
619 FLAG_always_opt &&
620 result->is_compiled() &&
621 !function_info->is_toplevel() &&
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000622 function_info->allows_lazy_compilation() &&
623 !function_info->optimization_disabled()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000624 result->MarkForLazyRecompilation();
625 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000626 return result;
627}
628
629
630Handle<Object> Factory::NewNumber(double value,
631 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000632 CALL_HEAP_FUNCTION(
633 isolate(),
634 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000635}
636
637
erikcorry0ad885c2011-11-21 13:51:57 +0000638Handle<Object> Factory::NewNumberFromInt(int32_t value,
639 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000640 CALL_HEAP_FUNCTION(
641 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000642 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000643}
644
645
erikcorry0ad885c2011-11-21 13:51:57 +0000646Handle<Object> Factory::NewNumberFromUint(uint32_t value,
647 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000648 CALL_HEAP_FUNCTION(
649 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000650 isolate()->heap()->NumberFromUint32(value, pretenure), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000651}
652
653
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000654Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000655 CALL_HEAP_FUNCTION(
656 isolate(),
657 isolate()->heap()->AllocateJSObjectFromMap(
658 isolate()->heap()->neander_map()),
659 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000660}
661
662
663Handle<Object> Factory::NewTypeError(const char* type,
664 Vector< Handle<Object> > args) {
665 return NewError("MakeTypeError", type, args);
666}
667
668
669Handle<Object> Factory::NewTypeError(Handle<String> message) {
670 return NewError("$TypeError", message);
671}
672
673
674Handle<Object> Factory::NewRangeError(const char* type,
675 Vector< Handle<Object> > args) {
676 return NewError("MakeRangeError", type, args);
677}
678
679
680Handle<Object> Factory::NewRangeError(Handle<String> message) {
681 return NewError("$RangeError", message);
682}
683
684
685Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
686 return NewError("MakeSyntaxError", type, args);
687}
688
689
690Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
691 return NewError("$SyntaxError", message);
692}
693
694
695Handle<Object> Factory::NewReferenceError(const char* type,
696 Vector< Handle<Object> > args) {
697 return NewError("MakeReferenceError", type, args);
698}
699
700
701Handle<Object> Factory::NewReferenceError(Handle<String> message) {
702 return NewError("$ReferenceError", message);
703}
704
705
706Handle<Object> Factory::NewError(const char* maker, const char* type,
707 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000708 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000709 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000710 for (int i = 0; i < args.length(); i++) {
711 array->set(i, *args[i]);
712 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000713 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000714 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000715 return result.EscapeFrom(&scope);
716}
717
718
719Handle<Object> Factory::NewEvalError(const char* type,
720 Vector< Handle<Object> > args) {
721 return NewError("MakeEvalError", type, args);
722}
723
724
725Handle<Object> Factory::NewError(const char* type,
726 Vector< Handle<Object> > args) {
727 return NewError("MakeError", type, args);
728}
729
730
verwaest@chromium.org37141392012-05-31 13:27:02 +0000731Handle<String> Factory::EmergencyNewError(const char* type,
732 Handle<JSArray> args) {
733 const int kBufferSize = 1000;
734 char buffer[kBufferSize];
735 size_t space = kBufferSize;
736 char* p = &buffer[0];
737
738 Vector<char> v(buffer, kBufferSize);
739 OS::StrNCpy(v, type, space);
740 space -= Min(space, strlen(type));
741 p = &buffer[kBufferSize] - space;
742
743 for (unsigned i = 0; i < ARRAY_SIZE(args); i++) {
744 if (space > 0) {
745 *p++ = ' ';
746 space--;
747 if (space > 0) {
748 MaybeObject* maybe_arg = args->GetElement(i);
749 Handle<String> arg_str(reinterpret_cast<String*>(maybe_arg));
750 const char* arg = *arg_str->ToCString();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000751 Vector<char> v2(p, static_cast<int>(space));
verwaest@chromium.org37141392012-05-31 13:27:02 +0000752 OS::StrNCpy(v2, arg, space);
753 space -= Min(space, strlen(arg));
754 p = &buffer[kBufferSize] - space;
755 }
756 }
757 }
758 if (space > 0) {
759 *p = '\0';
760 } else {
761 buffer[kBufferSize - 1] = '\0';
762 }
763 Handle<String> error_string = NewStringFromUtf8(CStrVector(buffer), TENURED);
764 return error_string;
765}
766
767
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000768Handle<Object> Factory::NewError(const char* maker,
769 const char* type,
770 Handle<JSArray> args) {
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000771 Handle<String> make_str = InternalizeUtf8String(maker);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000772 Handle<Object> fun_obj(
ulan@chromium.org09d7ab52013-02-25 15:50:35 +0000773 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str),
774 isolate());
ager@chromium.org4af710e2009-09-15 12:20:11 +0000775 // If the builtins haven't been properly configured yet this error
776 // constructor may not have been defined. Bail out.
verwaest@chromium.org37141392012-05-31 13:27:02 +0000777 if (!fun_obj->IsJSFunction()) {
778 return EmergencyNewError(type, args);
779 }
ager@chromium.org4af710e2009-09-15 12:20:11 +0000780 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000781 Handle<Object> type_obj = InternalizeUtf8String(type);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000782 Handle<Object> argv[] = { type_obj, args };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000783
784 // Invoke the JavaScript factory method. If an exception is thrown while
785 // running the factory method, use the exception as the result.
786 bool caught_exception;
787 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000788 isolate()->js_builtins_object(),
789 ARRAY_SIZE(argv),
790 argv,
791 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000792 return result;
793}
794
795
796Handle<Object> Factory::NewError(Handle<String> message) {
797 return NewError("$Error", message);
798}
799
800
801Handle<Object> Factory::NewError(const char* constructor,
802 Handle<String> message) {
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000803 Handle<String> constr = InternalizeUtf8String(constructor);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000804 Handle<JSFunction> fun = Handle<JSFunction>(
805 JSFunction::cast(isolate()->js_builtins_object()->
806 GetPropertyNoExceptionThrown(*constr)));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000807 Handle<Object> argv[] = { message };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000808
809 // Invoke the JavaScript factory method. If an exception is thrown while
810 // running the factory method, use the exception as the result.
811 bool caught_exception;
812 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000813 isolate()->js_builtins_object(),
814 ARRAY_SIZE(argv),
815 argv,
816 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000817 return result;
818}
819
820
821Handle<JSFunction> Factory::NewFunction(Handle<String> name,
822 InstanceType type,
823 int instance_size,
824 Handle<Code> code,
825 bool force_initial_map) {
826 // Allocate the function
827 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000828
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000829 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000830 // the function itself.
831 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000832 function->set_code(*code);
833
834 if (force_initial_map ||
835 type != JS_OBJECT_TYPE ||
836 instance_size != JSObject::kHeaderSize) {
837 Handle<Map> initial_map = NewMap(type, instance_size);
838 Handle<JSObject> prototype = NewFunctionPrototype(function);
839 initial_map->set_prototype(*prototype);
840 function->set_initial_map(*initial_map);
841 initial_map->set_constructor(*function);
842 } else {
843 ASSERT(!function->has_initial_map());
844 ASSERT(!function->has_prototype());
845 }
846
847 return function;
848}
849
850
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000851Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
852 InstanceType type,
853 int instance_size,
854 Handle<JSObject> prototype,
855 Handle<Code> code,
856 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000857 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000858 Handle<JSFunction> function = NewFunction(name, prototype);
859
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000860 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000861 // the function itself.
862 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000863 function->set_code(*code);
864
865 if (force_initial_map ||
866 type != JS_OBJECT_TYPE ||
867 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000868 Handle<Map> initial_map = NewMap(type,
869 instance_size,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000870 GetInitialFastElementsKind());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000871 function->set_initial_map(*initial_map);
872 initial_map->set_constructor(*function);
873 }
874
875 // Set function.prototype and give the prototype a constructor
876 // property that refers to the function.
877 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000878 // Currently safe because it is only invoked from Genesis.
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000879 CHECK_NOT_EMPTY_HANDLE(isolate(),
880 JSObject::SetLocalPropertyIgnoreAttributes(
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000881 prototype, constructor_string(),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000882 function, DONT_ENUM));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000883 return function;
884}
885
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000886
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000887Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
888 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000889 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000890 CLASSIC_MODE);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000891 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000892 function->set_code(*code);
893 ASSERT(!function->has_initial_map());
894 ASSERT(!function->has_prototype());
895 return function;
896}
897
898
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000899Handle<ScopeInfo> Factory::NewScopeInfo(int length) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000900 CALL_HEAP_FUNCTION(
901 isolate(),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000902 isolate()->heap()->AllocateScopeInfo(length),
903 ScopeInfo);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000904}
905
906
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +0000907Handle<JSObject> Factory::NewExternal(void* value) {
908 CALL_HEAP_FUNCTION(isolate(),
909 isolate()->heap()->AllocateExternal(value),
910 JSObject);
911}
912
913
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000914Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000915 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000916 Handle<Object> self_ref,
917 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000918 CALL_HEAP_FUNCTION(isolate(),
919 isolate()->heap()->CreateCode(
920 desc, flags, self_ref, immovable),
921 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000922}
923
924
925Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000926 CALL_HEAP_FUNCTION(isolate(),
927 isolate()->heap()->CopyCode(*code),
928 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000929}
930
931
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000932Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000933 CALL_HEAP_FUNCTION(isolate(),
934 isolate()->heap()->CopyCode(*code, reloc_info),
935 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000936}
937
938
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000939Handle<String> Factory::InternalizedStringFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000940 CALL_HEAP_FUNCTION(isolate(),
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +0000941 isolate()->heap()->InternalizeString(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000942}
943
944
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000945Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
946 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000947 CALL_HEAP_FUNCTION(
948 isolate(),
949 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000950}
951
952
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000953Handle<JSModule> Factory::NewJSModule(Handle<Context> context,
954 Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000955 CALL_HEAP_FUNCTION(
956 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000957 isolate()->heap()->AllocateJSModule(*context, *scope_info), JSModule);
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000958}
959
960
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000961Handle<GlobalObject> Factory::NewGlobalObject(
962 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000963 CALL_HEAP_FUNCTION(isolate(),
964 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000965 GlobalObject);
966}
967
968
969
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +0000970Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map,
971 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000972 CALL_HEAP_FUNCTION(
973 isolate(),
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +0000974 isolate()->heap()->AllocateJSObjectFromMap(*map, pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000975 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +0000976}
977
978
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +0000979Handle<JSArray> Factory::NewJSArray(int capacity,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000980 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000981 PretenureFlag pretenure) {
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000982 if (capacity != 0) {
983 elements_kind = GetHoleyElementsKind(elements_kind);
984 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000985 CALL_HEAP_FUNCTION(isolate(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000986 isolate()->heap()->AllocateJSArrayAndStorage(
987 elements_kind,
988 0,
989 capacity,
990 INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
991 pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000992 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000993}
994
995
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000996Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements,
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000997 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000998 PretenureFlag pretenure) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000999 CALL_HEAP_FUNCTION(
1000 isolate(),
1001 isolate()->heap()->AllocateJSArrayWithElements(*elements,
1002 elements_kind,
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001003 elements->length(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001004 pretenure),
1005 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001006}
1007
1008
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001009void Factory::SetElementsCapacityAndLength(Handle<JSArray> array,
1010 int capacity,
1011 int length) {
1012 ElementsAccessor* accessor = array->GetElementsAccessor();
1013 CALL_HEAP_FUNCTION_VOID(
1014 isolate(),
1015 accessor->SetCapacityAndLength(*array, capacity, length));
1016}
1017
1018
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001019void Factory::SetContent(Handle<JSArray> array,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001020 Handle<FixedArrayBase> elements) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001021 CALL_HEAP_FUNCTION_VOID(
1022 isolate(),
1023 array->SetContent(*elements));
1024}
1025
1026
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001027void Factory::EnsureCanContainHeapObjectElements(Handle<JSArray> array) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001028 CALL_HEAP_FUNCTION_VOID(
1029 isolate(),
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001030 array->EnsureCanContainHeapObjectElements());
1031}
1032
1033
1034void Factory::EnsureCanContainElements(Handle<JSArray> array,
1035 Handle<FixedArrayBase> elements,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001036 uint32_t length,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001037 EnsureElementsMode mode) {
1038 CALL_HEAP_FUNCTION_VOID(
1039 isolate(),
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001040 array->EnsureCanContainElements(*elements, length, mode));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001041}
1042
1043
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00001044Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
1045 Handle<Object> prototype) {
1046 CALL_HEAP_FUNCTION(
1047 isolate(),
1048 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
1049 JSProxy);
1050}
1051
1052
lrn@chromium.org34e60782011-09-15 07:25:40 +00001053void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001054 CALL_HEAP_FUNCTION_VOID(
1055 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +00001056 isolate()->heap()->ReinitializeJSReceiver(
1057 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
1058}
1059
1060
1061void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1062 CALL_HEAP_FUNCTION_VOID(
1063 isolate(),
1064 isolate()->heap()->ReinitializeJSReceiver(
1065 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001066}
1067
1068
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00001069void Factory::SetIdentityHash(Handle<JSObject> object, Smi* hash) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001070 CALL_HEAP_FUNCTION_VOID(
1071 isolate(),
1072 object->SetIdentityHash(hash, ALLOW_CREATION));
1073}
1074
1075
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001076Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001077 Handle<String> name,
1078 int number_of_literals,
1079 Handle<Code> code,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001080 Handle<ScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001081 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
1082 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001083 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001084 int literals_array_size = number_of_literals;
1085 // If the function contains object, regexp or array literals,
1086 // allocate extra space for a literals array prefix containing the
1087 // context.
1088 if (number_of_literals > 0) {
1089 literals_array_size += JSFunction::kLiteralsPrefixSize;
1090 }
1091 shared->set_num_literals(literals_array_size);
1092 return shared;
1093}
1094
1095
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001096Handle<JSMessageObject> Factory::NewJSMessageObject(
1097 Handle<String> type,
1098 Handle<JSArray> arguments,
1099 int start_position,
1100 int end_position,
1101 Handle<Object> script,
1102 Handle<Object> stack_trace,
1103 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001104 CALL_HEAP_FUNCTION(isolate(),
1105 isolate()->heap()->AllocateJSMessageObject(*type,
1106 *arguments,
1107 start_position,
1108 end_position,
1109 *script,
1110 *stack_trace,
1111 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001112 JSMessageObject);
1113}
1114
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001115Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001116 CALL_HEAP_FUNCTION(isolate(),
1117 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001118 SharedFunctionInfo);
1119}
1120
1121
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001122Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001123 CALL_HEAP_FUNCTION(isolate(),
1124 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001125}
1126
1127
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001128Handle<String> Factory::Uint32ToString(uint32_t value) {
1129 CALL_HEAP_FUNCTION(isolate(),
1130 isolate()->heap()->Uint32ToString(value), String);
1131}
1132
1133
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001134Handle<SeededNumberDictionary> Factory::DictionaryAtNumberPut(
1135 Handle<SeededNumberDictionary> dictionary,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001136 uint32_t key,
1137 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001138 CALL_HEAP_FUNCTION(isolate(),
1139 dictionary->AtNumberPut(key, *value),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001140 SeededNumberDictionary);
1141}
1142
1143
1144Handle<UnseededNumberDictionary> Factory::DictionaryAtNumberPut(
1145 Handle<UnseededNumberDictionary> dictionary,
1146 uint32_t key,
1147 Handle<Object> value) {
1148 CALL_HEAP_FUNCTION(isolate(),
1149 dictionary->AtNumberPut(key, *value),
1150 UnseededNumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001151}
1152
1153
1154Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1155 Handle<Object> prototype) {
1156 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001157 CALL_HEAP_FUNCTION(
1158 isolate(),
1159 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1160 *function_share,
1161 *prototype),
1162 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001163}
1164
1165
1166Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1167 Handle<Object> prototype) {
1168 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001169 fun->set_context(isolate()->context()->native_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001170 return fun;
1171}
1172
1173
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001174Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001175 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001176 LanguageMode language_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001177 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001178 Handle<Map> map = (language_mode == CLASSIC_MODE)
1179 ? isolate()->function_without_prototype_map()
1180 : isolate()->strict_mode_function_without_prototype_map();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001181 CALL_HEAP_FUNCTION(isolate(),
1182 isolate()->heap()->AllocateFunction(
1183 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001184 *function_share,
1185 *the_hole_value()),
1186 JSFunction);
1187}
1188
1189
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001190Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1191 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001192 LanguageMode language_mode) {
1193 Handle<JSFunction> fun =
1194 NewFunctionWithoutPrototypeHelper(name, language_mode);
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001195 fun->set_context(isolate()->context()->native_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001196 return fun;
1197}
1198
1199
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001200Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001201 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001202}
1203
1204
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001205Handle<Object> Factory::ToObject(Handle<Object> object,
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001206 Handle<Context> native_context) {
1207 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*native_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001208}
1209
1210
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001211#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001212Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1213 // Get the original code of the function.
1214 Handle<Code> code(shared->code());
1215
1216 // Create a copy of the code before allocating the debug info object to avoid
1217 // allocation while setting up the debug info object.
1218 Handle<Code> original_code(*Factory::CopyCode(code));
1219
1220 // Allocate initial fixed array for active break points before allocating the
1221 // debug info object to avoid allocation while setting up the debug info
1222 // object.
1223 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001224 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001225
1226 // Create and set up the debug info object. Debug info contains function, a
1227 // copy of the original code, the executing code and initial fixed array for
1228 // active break points.
1229 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001230 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001231 debug_info->set_shared(*shared);
1232 debug_info->set_original_code(*original_code);
1233 debug_info->set_code(*code);
1234 debug_info->set_break_points(*break_points);
1235
1236 // Link debug info to function.
1237 shared->set_debug_info(*debug_info);
1238
1239 return debug_info;
1240}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001241#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001242
1243
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001244Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1245 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001246 CALL_HEAP_FUNCTION(
1247 isolate(),
1248 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001249}
1250
1251
1252Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001253 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001254 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1255 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001256
kasper.lund212ac232008-07-16 07:07:30 +00001257 int internal_field_count = 0;
1258 if (!obj->instance_template()->IsUndefined()) {
1259 Handle<ObjectTemplateInfo> instance_template =
1260 Handle<ObjectTemplateInfo>(
1261 ObjectTemplateInfo::cast(obj->instance_template()));
1262 internal_field_count =
1263 Smi::cast(instance_template->internal_field_count())->value();
1264 }
1265
1266 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001267 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001268 switch (instance_type) {
1269 case JavaScriptObject:
1270 type = JS_OBJECT_TYPE;
1271 instance_size += JSObject::kHeaderSize;
1272 break;
1273 case InnerGlobalObject:
1274 type = JS_GLOBAL_OBJECT_TYPE;
1275 instance_size += JSGlobalObject::kSize;
1276 break;
1277 case OuterGlobalObject:
1278 type = JS_GLOBAL_PROXY_TYPE;
1279 instance_size += JSGlobalProxy::kSize;
1280 break;
1281 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001282 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001283 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001284 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001285
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001286 Handle<JSFunction> result =
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +00001287 NewFunction(Factory::empty_string(),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001288 type,
1289 instance_size,
1290 code,
1291 true);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00001292
1293 // Set length.
1294 result->shared()->set_length(obj->length());
1295
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001296 // Set class name.
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001297 Handle<Object> class_name = Handle<Object>(obj->class_name(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001298 if (class_name->IsString()) {
1299 result->shared()->set_instance_class_name(*class_name);
1300 result->shared()->set_name(*class_name);
1301 }
1302
1303 Handle<Map> map = Handle<Map>(result->initial_map());
1304
1305 // Mark as undetectable if needed.
1306 if (obj->undetectable()) {
1307 map->set_is_undetectable();
1308 }
1309
1310 // Mark as hidden for the __proto__ accessor if needed.
1311 if (obj->hidden_prototype()) {
1312 map->set_is_hidden_prototype();
1313 }
1314
1315 // Mark as needs_access_check if needed.
1316 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001317 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001318 }
1319
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001320 // Set interceptor information in the map.
1321 if (!obj->named_property_handler()->IsUndefined()) {
1322 map->set_has_named_interceptor();
1323 }
1324 if (!obj->indexed_property_handler()->IsUndefined()) {
1325 map->set_has_indexed_interceptor();
1326 }
1327
1328 // Set instance call-as-function information in the map.
1329 if (!obj->instance_call_handler()->IsUndefined()) {
1330 map->set_has_instance_call_handler();
1331 }
1332
1333 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001334 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001335 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001336
1337 // Recursively copy parent templates' accessors, 'data' may be modified.
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001338 int max_number_of_additional_properties = 0;
1339 FunctionTemplateInfo* info = *obj;
1340 while (true) {
1341 Object* props = info->property_accessors();
1342 if (!props->IsUndefined()) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001343 Handle<Object> props_handle(props, isolate());
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001344 NeanderArray props_array(props_handle);
1345 max_number_of_additional_properties += props_array.length();
1346 }
1347 Object* parent = info->parent_template();
1348 if (parent->IsUndefined()) break;
1349 info = FunctionTemplateInfo::cast(parent);
1350 }
1351
1352 Map::EnsureDescriptorSlack(map, max_number_of_additional_properties);
1353
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001354 while (true) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001355 Handle<Object> props = Handle<Object>(obj->property_accessors(),
1356 isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001357 if (!props->IsUndefined()) {
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00001358 Map::AppendCallbackDescriptors(map, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001359 }
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001360 Handle<Object> parent = Handle<Object>(obj->parent_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001361 if (parent->IsUndefined()) break;
1362 obj = Handle<FunctionTemplateInfo>::cast(parent);
1363 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001364
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001365 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001366 return result;
1367}
1368
1369
ager@chromium.org236ad962008-09-25 09:45:57 +00001370Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001371 CALL_HEAP_FUNCTION(isolate(),
ulan@chromium.org6e196bf2013-03-13 09:38:22 +00001372 MapCache::Allocate(isolate()->heap(),
1373 at_least_space_for),
1374 MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001375}
1376
1377
lrn@chromium.org303ada72010-10-27 09:33:13 +00001378MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1379 FixedArray* keys,
1380 Map* map) {
1381 Object* result;
1382 { MaybeObject* maybe_result =
1383 MapCache::cast(context->map_cache())->Put(keys, map);
1384 if (!maybe_result->ToObject(&result)) return maybe_result;
1385 }
1386 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001387 return result;
1388}
1389
1390
1391Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1392 Handle<FixedArray> keys,
1393 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001394 CALL_HEAP_FUNCTION(isolate(),
1395 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001396}
1397
1398
1399Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1400 Handle<FixedArray> keys) {
1401 if (context->map_cache()->IsUndefined()) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001402 // Allocate the new map cache for the native context.
ager@chromium.org236ad962008-09-25 09:45:57 +00001403 Handle<MapCache> new_cache = NewMapCache(24);
1404 context->set_map_cache(*new_cache);
1405 }
ager@chromium.org32912102009-01-16 10:38:43 +00001406 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001407 Handle<MapCache> cache =
1408 Handle<MapCache>(MapCache::cast(context->map_cache()));
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001409 Handle<Object> result = Handle<Object>(cache->Lookup(*keys), isolate());
ager@chromium.org236ad962008-09-25 09:45:57 +00001410 if (result->IsMap()) return Handle<Map>::cast(result);
1411 // Create a new map and add it to the cache.
1412 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001413 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1414 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001415 AddToMapCache(context, keys, map);
1416 return Handle<Map>(map);
1417}
1418
1419
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001420void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1421 JSRegExp::Type type,
1422 Handle<String> source,
1423 JSRegExp::Flags flags,
1424 Handle<Object> data) {
1425 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1426
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001427 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1428 store->set(JSRegExp::kSourceIndex, *source);
1429 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1430 store->set(JSRegExp::kAtomPatternIndex, *data);
1431 regexp->set_data(*store);
1432}
1433
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001434void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1435 JSRegExp::Type type,
1436 Handle<String> source,
1437 JSRegExp::Flags flags,
1438 int capture_count) {
1439 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001440 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001441 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1442 store->set(JSRegExp::kSourceIndex, *source);
1443 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001444 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1445 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1446 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1447 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001448 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1449 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1450 Smi::FromInt(capture_count));
1451 regexp->set_data(*store);
1452}
1453
1454
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001455
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001456void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1457 Handle<JSObject> instance,
1458 bool* pending_exception) {
1459 // Configure the instance by adding the properties specified by the
1460 // instance template.
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001461 Handle<Object> instance_template(desc->instance_template(), isolate());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001462 if (!instance_template->IsUndefined()) {
1463 Execution::ConfigureInstance(instance,
1464 instance_template,
1465 pending_exception);
1466 } else {
1467 *pending_exception = false;
1468 }
1469}
1470
1471
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001472Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1473 Heap* h = isolate()->heap();
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +00001474 if (name->Equals(h->undefined_string())) return undefined_value();
1475 if (name->Equals(h->nan_string())) return nan_value();
1476 if (name->Equals(h->infinity_string())) return infinity_value();
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001477 return Handle<Object>::null();
1478}
1479
1480
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001481Handle<Object> Factory::ToBoolean(bool value) {
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001482 return value ? true_value() : false_value();
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001483}
1484
1485
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001486} } // namespace v8::internal