blob: fa609e01f4631a184b911677e7a5d2a97c80260d [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
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000073Handle<StringDictionary> Factory::NewStringDictionary(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(),
76 StringDictionary::Allocate(at_least_space_for),
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000077 StringDictionary);
78}
79
80
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000081Handle<SeededNumberDictionary> Factory::NewSeededNumberDictionary(
82 int at_least_space_for) {
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000083 ASSERT(0 <= at_least_space_for);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000084 CALL_HEAP_FUNCTION(isolate(),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000085 SeededNumberDictionary::Allocate(at_least_space_for),
86 SeededNumberDictionary);
87}
88
89
90Handle<UnseededNumberDictionary> Factory::NewUnseededNumberDictionary(
91 int at_least_space_for) {
92 ASSERT(0 <= at_least_space_for);
93 CALL_HEAP_FUNCTION(isolate(),
94 UnseededNumberDictionary::Allocate(at_least_space_for),
95 UnseededNumberDictionary);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000096}
97
98
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000099Handle<ObjectHashSet> Factory::NewObjectHashSet(int at_least_space_for) {
100 ASSERT(0 <= at_least_space_for);
101 CALL_HEAP_FUNCTION(isolate(),
102 ObjectHashSet::Allocate(at_least_space_for),
103 ObjectHashSet);
104}
105
106
vegorov@chromium.org7943d462011-08-01 11:41:52 +0000107Handle<ObjectHashTable> Factory::NewObjectHashTable(int at_least_space_for) {
108 ASSERT(0 <= at_least_space_for);
109 CALL_HEAP_FUNCTION(isolate(),
110 ObjectHashTable::Allocate(at_least_space_for),
111 ObjectHashTable);
112}
113
114
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000115Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
116 ASSERT(0 <= number_of_descriptors);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000117 CALL_HEAP_FUNCTION(isolate(),
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000118 DescriptorArray::Allocate(number_of_descriptors,
119 DescriptorArray::MAY_BE_SHARED),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000120 DescriptorArray);
121}
122
123
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000124Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
125 int deopt_entry_count,
126 PretenureFlag pretenure) {
127 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000128 CALL_HEAP_FUNCTION(isolate(),
129 DeoptimizationInputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000130 pretenure),
131 DeoptimizationInputData);
132}
133
134
135Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
136 int deopt_entry_count,
137 PretenureFlag pretenure) {
138 ASSERT(deopt_entry_count > 0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000139 CALL_HEAP_FUNCTION(isolate(),
140 DeoptimizationOutputData::Allocate(deopt_entry_count,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000141 pretenure),
142 DeoptimizationOutputData);
143}
144
145
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000146Handle<AccessorPair> Factory::NewAccessorPair() {
147 CALL_HEAP_FUNCTION(isolate(),
148 isolate()->heap()->AllocateAccessorPair(),
149 AccessorPair);
150}
151
152
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000153Handle<TypeFeedbackInfo> Factory::NewTypeFeedbackInfo() {
154 CALL_HEAP_FUNCTION(isolate(),
155 isolate()->heap()->AllocateTypeFeedbackInfo(),
156 TypeFeedbackInfo);
157}
158
159
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000160// Symbols are created in the old generation (data space).
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000161Handle<String> Factory::LookupSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000162 CALL_HEAP_FUNCTION(isolate(),
163 isolate()->heap()->LookupSymbol(string),
164 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000165}
166
danno@chromium.org40cb8782011-05-25 07:58:50 +0000167// Symbols are created in the old generation (data space).
168Handle<String> Factory::LookupSymbol(Handle<String> string) {
169 CALL_HEAP_FUNCTION(isolate(),
170 isolate()->heap()->LookupSymbol(*string),
171 String);
172}
173
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000174Handle<String> Factory::LookupAsciiSymbol(Vector<const char> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000175 CALL_HEAP_FUNCTION(isolate(),
176 isolate()->heap()->LookupAsciiSymbol(string),
177 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000178}
179
danno@chromium.org40cb8782011-05-25 07:58:50 +0000180
181Handle<String> Factory::LookupAsciiSymbol(Handle<SeqAsciiString> string,
182 int from,
183 int length) {
184 CALL_HEAP_FUNCTION(isolate(),
185 isolate()->heap()->LookupAsciiSymbol(string,
186 from,
187 length),
188 String);
189}
190
191
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000192Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000193 CALL_HEAP_FUNCTION(isolate(),
194 isolate()->heap()->LookupTwoByteSymbol(string),
195 String);
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +0000196}
197
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000198
199Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
200 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000201 CALL_HEAP_FUNCTION(
202 isolate(),
203 isolate()->heap()->AllocateStringFromAscii(string, pretenure),
204 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000205}
206
207Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
208 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000209 CALL_HEAP_FUNCTION(
210 isolate(),
211 isolate()->heap()->AllocateStringFromUtf8(string, pretenure),
212 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000213}
214
215
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000216Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
217 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000218 CALL_HEAP_FUNCTION(
219 isolate(),
220 isolate()->heap()->AllocateStringFromTwoByte(string, pretenure),
221 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000222}
223
224
ager@chromium.org04921a82011-06-27 13:21:41 +0000225Handle<SeqAsciiString> Factory::NewRawAsciiString(int length,
226 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000227 CALL_HEAP_FUNCTION(
228 isolate(),
229 isolate()->heap()->AllocateRawAsciiString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000230 SeqAsciiString);
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +0000231}
232
233
ager@chromium.org04921a82011-06-27 13:21:41 +0000234Handle<SeqTwoByteString> Factory::NewRawTwoByteString(int length,
235 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000236 CALL_HEAP_FUNCTION(
237 isolate(),
238 isolate()->heap()->AllocateRawTwoByteString(length, pretenure),
ager@chromium.org04921a82011-06-27 13:21:41 +0000239 SeqTwoByteString);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000240}
241
242
243Handle<String> Factory::NewConsString(Handle<String> first,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000244 Handle<String> second) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000245 CALL_HEAP_FUNCTION(isolate(),
246 isolate()->heap()->AllocateConsString(*first, *second),
247 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000248}
249
250
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000251Handle<String> Factory::NewSubString(Handle<String> str,
252 int begin,
253 int end) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000254 CALL_HEAP_FUNCTION(isolate(),
255 str->SubString(begin, end),
256 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000257}
258
259
ager@chromium.org04921a82011-06-27 13:21:41 +0000260Handle<String> Factory::NewProperSubString(Handle<String> str,
261 int begin,
262 int end) {
263 ASSERT(begin > 0 || end < str->length());
264 CALL_HEAP_FUNCTION(isolate(),
265 isolate()->heap()->AllocateSubString(*str, begin, end),
266 String);
267}
268
269
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000270Handle<String> Factory::NewExternalStringFromAscii(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000271 const ExternalAsciiString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000272 CALL_HEAP_FUNCTION(
273 isolate(),
274 isolate()->heap()->AllocateExternalStringFromAscii(resource),
275 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000276}
277
278
279Handle<String> Factory::NewExternalStringFromTwoByte(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000280 const ExternalTwoByteString::Resource* resource) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000281 CALL_HEAP_FUNCTION(
282 isolate(),
283 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
284 String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000285}
286
287
288Handle<Context> Factory::NewGlobalContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000289 CALL_HEAP_FUNCTION(
290 isolate(),
291 isolate()->heap()->AllocateGlobalContext(),
292 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000293}
294
295
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000296Handle<Context> Factory::NewModuleContext(Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000297 CALL_HEAP_FUNCTION(
298 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000299 isolate()->heap()->AllocateModuleContext(*scope_info),
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000300 Context);
301}
302
303
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000304Handle<Context> Factory::NewFunctionContext(int length,
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000305 Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000306 CALL_HEAP_FUNCTION(
307 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000308 isolate()->heap()->AllocateFunctionContext(length, *function),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000309 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000310}
311
312
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000313Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function,
314 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000315 Handle<String> name,
316 Handle<Object> thrown_object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000317 CALL_HEAP_FUNCTION(
318 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000319 isolate()->heap()->AllocateCatchContext(*function,
320 *previous,
321 *name,
322 *thrown_object),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000323 Context);
324}
325
326
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000327Handle<Context> Factory::NewWithContext(Handle<JSFunction> function,
328 Handle<Context> previous,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000329 Handle<JSObject> extension) {
330 CALL_HEAP_FUNCTION(
331 isolate(),
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000332 isolate()->heap()->AllocateWithContext(*function, *previous, *extension),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000333 Context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000334}
335
336
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000337Handle<Context> Factory::NewBlockContext(Handle<JSFunction> function,
338 Handle<Context> previous,
339 Handle<ScopeInfo> scope_info) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000340 CALL_HEAP_FUNCTION(
341 isolate(),
342 isolate()->heap()->AllocateBlockContext(*function,
343 *previous,
344 *scope_info),
345 Context);
346}
347
348
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000349Handle<Struct> Factory::NewStruct(InstanceType type) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000350 CALL_HEAP_FUNCTION(
351 isolate(),
352 isolate()->heap()->AllocateStruct(type),
353 Struct);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000354}
355
356
357Handle<AccessorInfo> Factory::NewAccessorInfo() {
358 Handle<AccessorInfo> info =
359 Handle<AccessorInfo>::cast(NewStruct(ACCESSOR_INFO_TYPE));
360 info->set_flag(0); // Must clear the flag, it was initialized as undefined.
361 return info;
362}
363
364
365Handle<Script> Factory::NewScript(Handle<String> source) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000366 // Generate id for this script.
367 int id;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000368 Heap* heap = isolate()->heap();
369 if (heap->last_script_id()->IsUndefined()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000370 // Script ids start from one.
371 id = 1;
372 } else {
373 // Increment id, wrap when positive smi is exhausted.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000374 id = Smi::cast(heap->last_script_id())->value();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000375 id++;
376 if (!Smi::IsValid(id)) {
377 id = 0;
378 }
379 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000380 heap->SetLastScriptId(Smi::FromInt(id));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000381
382 // Create and initialize script object.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000383 Handle<Foreign> wrapper = NewForeign(0, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000384 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
385 script->set_source(*source);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000386 script->set_name(heap->undefined_value());
387 script->set_id(heap->last_script_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000388 script->set_line_offset(Smi::FromInt(0));
389 script->set_column_offset(Smi::FromInt(0));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000390 script->set_data(heap->undefined_value());
391 script->set_context_data(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000392 script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
393 script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000394 script->set_compilation_state(
395 Smi::FromInt(Script::COMPILATION_STATE_INITIAL));
ager@chromium.org9085a012009-05-11 19:22:57 +0000396 script->set_wrapper(*wrapper);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000397 script->set_line_ends(heap->undefined_value());
398 script->set_eval_from_shared(heap->undefined_value());
ager@chromium.orge2902be2009-06-08 12:21:35 +0000399 script->set_eval_from_instructions_offset(Smi::FromInt(0));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000400
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000401 return script;
402}
403
404
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000405Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000406 CALL_HEAP_FUNCTION(isolate(),
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000407 isolate()->heap()->AllocateForeign(addr, pretenure),
408 Foreign);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000409}
410
411
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000412Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) {
413 return NewForeign((Address) desc, TENURED);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000414}
415
416
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000417Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000418 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000419 CALL_HEAP_FUNCTION(
420 isolate(),
421 isolate()->heap()->AllocateByteArray(length, pretenure),
422 ByteArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000423}
424
425
ager@chromium.org3811b432009-10-28 14:53:37 +0000426Handle<ExternalArray> Factory::NewExternalArray(int length,
427 ExternalArrayType array_type,
428 void* external_pointer,
429 PretenureFlag pretenure) {
430 ASSERT(0 <= length);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000431 CALL_HEAP_FUNCTION(
432 isolate(),
433 isolate()->heap()->AllocateExternalArray(length,
434 array_type,
435 external_pointer,
436 pretenure),
437 ExternalArray);
ager@chromium.org3811b432009-10-28 14:53:37 +0000438}
439
440
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000441Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
442 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000443 CALL_HEAP_FUNCTION(
444 isolate(),
445 isolate()->heap()->AllocateJSGlobalPropertyCell(*value),
446 JSGlobalPropertyCell);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000447}
448
449
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000450Handle<Map> Factory::NewMap(InstanceType type,
451 int instance_size,
452 ElementsKind elements_kind) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000453 CALL_HEAP_FUNCTION(
454 isolate(),
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000455 isolate()->heap()->AllocateMap(type, instance_size, elements_kind),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000456 Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000457}
458
459
460Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000461 CALL_HEAP_FUNCTION(
462 isolate(),
463 isolate()->heap()->AllocateFunctionPrototype(*function),
464 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000465}
466
467
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000468Handle<Map> Factory::CopyWithPreallocatedFieldDescriptors(Handle<Map> src) {
469 CALL_HEAP_FUNCTION(
470 isolate(), src->CopyWithPreallocatedFieldDescriptors(), Map);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000471}
472
473
ager@chromium.org32912102009-01-16 10:38:43 +0000474Handle<Map> Factory::CopyMap(Handle<Map> src,
475 int extra_inobject_properties) {
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000476 Handle<Map> copy = CopyWithPreallocatedFieldDescriptors(src);
ager@chromium.org32912102009-01-16 10:38:43 +0000477 // Check that we do not overflow the instance size when adding the
478 // extra inobject properties.
479 int instance_size_delta = extra_inobject_properties * kPointerSize;
480 int max_instance_size_delta =
481 JSObject::kMaxInstanceSize - copy->instance_size();
482 if (instance_size_delta > max_instance_size_delta) {
483 // If the instance size overflows, we allocate as many properties
484 // as we can as inobject properties.
485 instance_size_delta = max_instance_size_delta;
486 extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
487 }
488 // Adjust the map with the extra inobject properties.
489 int inobject_properties =
490 copy->inobject_properties() + extra_inobject_properties;
491 copy->set_inobject_properties(inobject_properties);
492 copy->set_unused_property_fields(inobject_properties);
493 copy->set_instance_size(copy->instance_size() + instance_size_delta);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000494 copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
ager@chromium.org32912102009-01-16 10:38:43 +0000495 return copy;
496}
497
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000498
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000499Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000500 CALL_HEAP_FUNCTION(isolate(),
501 src->CopyDropTransitions(DescriptorArray::MAY_BE_SHARED),
502 Map);
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000503}
504
505
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000506Handle<Map> Factory::GetElementsTransitionMap(
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000507 Handle<JSObject> src,
508 ElementsKind elements_kind) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000509 Isolate* i = isolate();
510 CALL_HEAP_FUNCTION(i,
511 src->GetElementsTransitionMap(i, elements_kind),
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000512 Map);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000513}
514
515
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000516Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000517 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000518}
519
520
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000521Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray(
522 Handle<FixedDoubleArray> array) {
523 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray);
524}
525
526
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000527Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
528 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000529 Handle<Map> function_map,
530 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000531 CALL_HEAP_FUNCTION(
532 isolate(),
533 isolate()->heap()->AllocateFunction(*function_map,
534 *function_info,
535 isolate()->heap()->the_hole_value(),
536 pretenure),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000537 JSFunction);
538}
539
540
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000541Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
542 Handle<SharedFunctionInfo> function_info,
sgjesse@chromium.org846fb742009-12-18 08:56:33 +0000543 Handle<Context> context,
544 PretenureFlag pretenure) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000545 Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000546 function_info,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000547 function_info->is_classic_mode()
548 ? isolate()->function_map()
549 : isolate()->strict_mode_function_map(),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000550 pretenure);
551
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000552 if (function_info->ic_age() != isolate()->heap()->global_ic_age()) {
553 function_info->ResetForNewContext(isolate()->heap()->global_ic_age());
554 }
555
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000556 result->set_context(*context);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000557
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000558 int index = function_info->SearchOptimizedCodeMap(context->global_context());
559 if (!function_info->bound() && index < 0) {
560 int number_of_literals = function_info->num_literals();
561 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
562 if (number_of_literals > 0) {
563 // Store the global context in the literals array prefix. This
564 // context will be used when creating object, regexp and array
565 // literals in this function.
566 literals->set(JSFunction::kLiteralGlobalContextIndex,
567 context->global_context());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000568 }
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000569 result->set_literals(*literals);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000570 }
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000571
572 if (index > 0) {
573 // Caching of optimized code enabled and optimized code found.
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000574 function_info->InstallFromOptimizedCodeMap(*result, index);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000575 return result;
576 }
577
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000578 if (V8::UseCrankshaft() &&
579 FLAG_always_opt &&
580 result->is_compiled() &&
581 !function_info->is_toplevel() &&
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000582 function_info->allows_lazy_compilation() &&
583 !function_info->optimization_disabled()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000584 result->MarkForLazyRecompilation();
585 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000586 return result;
587}
588
589
590Handle<Object> Factory::NewNumber(double value,
591 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000592 CALL_HEAP_FUNCTION(
593 isolate(),
594 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000595}
596
597
erikcorry0ad885c2011-11-21 13:51:57 +0000598Handle<Object> Factory::NewNumberFromInt(int32_t value,
599 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000600 CALL_HEAP_FUNCTION(
601 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000602 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000603}
604
605
erikcorry0ad885c2011-11-21 13:51:57 +0000606Handle<Object> Factory::NewNumberFromUint(uint32_t value,
607 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000608 CALL_HEAP_FUNCTION(
609 isolate(),
erikcorry0ad885c2011-11-21 13:51:57 +0000610 isolate()->heap()->NumberFromUint32(value, pretenure), Object);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000611}
612
613
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000614Handle<JSObject> Factory::NewNeanderObject() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000615 CALL_HEAP_FUNCTION(
616 isolate(),
617 isolate()->heap()->AllocateJSObjectFromMap(
618 isolate()->heap()->neander_map()),
619 JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000620}
621
622
623Handle<Object> Factory::NewTypeError(const char* type,
624 Vector< Handle<Object> > args) {
625 return NewError("MakeTypeError", type, args);
626}
627
628
629Handle<Object> Factory::NewTypeError(Handle<String> message) {
630 return NewError("$TypeError", message);
631}
632
633
634Handle<Object> Factory::NewRangeError(const char* type,
635 Vector< Handle<Object> > args) {
636 return NewError("MakeRangeError", type, args);
637}
638
639
640Handle<Object> Factory::NewRangeError(Handle<String> message) {
641 return NewError("$RangeError", message);
642}
643
644
645Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
646 return NewError("MakeSyntaxError", type, args);
647}
648
649
650Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
651 return NewError("$SyntaxError", message);
652}
653
654
655Handle<Object> Factory::NewReferenceError(const char* type,
656 Vector< Handle<Object> > args) {
657 return NewError("MakeReferenceError", type, args);
658}
659
660
661Handle<Object> Factory::NewReferenceError(Handle<String> message) {
662 return NewError("$ReferenceError", message);
663}
664
665
666Handle<Object> Factory::NewError(const char* maker, const char* type,
667 Vector< Handle<Object> > args) {
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000668 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000669 Handle<FixedArray> array = NewFixedArray(args.length());
ager@chromium.org7c537e22008-10-16 08:43:32 +0000670 for (int i = 0; i < args.length(); i++) {
671 array->set(i, *args[i]);
672 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000673 Handle<JSArray> object = NewJSArrayWithElements(array);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000674 Handle<Object> result = NewError(maker, type, object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000675 return result.EscapeFrom(&scope);
676}
677
678
679Handle<Object> Factory::NewEvalError(const char* type,
680 Vector< Handle<Object> > args) {
681 return NewError("MakeEvalError", type, args);
682}
683
684
685Handle<Object> Factory::NewError(const char* type,
686 Vector< Handle<Object> > args) {
687 return NewError("MakeError", type, args);
688}
689
690
verwaest@chromium.org37141392012-05-31 13:27:02 +0000691Handle<String> Factory::EmergencyNewError(const char* type,
692 Handle<JSArray> args) {
693 const int kBufferSize = 1000;
694 char buffer[kBufferSize];
695 size_t space = kBufferSize;
696 char* p = &buffer[0];
697
698 Vector<char> v(buffer, kBufferSize);
699 OS::StrNCpy(v, type, space);
700 space -= Min(space, strlen(type));
701 p = &buffer[kBufferSize] - space;
702
703 for (unsigned i = 0; i < ARRAY_SIZE(args); i++) {
704 if (space > 0) {
705 *p++ = ' ';
706 space--;
707 if (space > 0) {
708 MaybeObject* maybe_arg = args->GetElement(i);
709 Handle<String> arg_str(reinterpret_cast<String*>(maybe_arg));
710 const char* arg = *arg_str->ToCString();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000711 Vector<char> v2(p, static_cast<int>(space));
verwaest@chromium.org37141392012-05-31 13:27:02 +0000712 OS::StrNCpy(v2, arg, space);
713 space -= Min(space, strlen(arg));
714 p = &buffer[kBufferSize] - space;
715 }
716 }
717 }
718 if (space > 0) {
719 *p = '\0';
720 } else {
721 buffer[kBufferSize - 1] = '\0';
722 }
723 Handle<String> error_string = NewStringFromUtf8(CStrVector(buffer), TENURED);
724 return error_string;
725}
726
727
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000728Handle<Object> Factory::NewError(const char* maker,
729 const char* type,
730 Handle<JSArray> args) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000731 Handle<String> make_str = LookupAsciiSymbol(maker);
732 Handle<Object> fun_obj(
733 isolate()->js_builtins_object()->GetPropertyNoExceptionThrown(*make_str));
ager@chromium.org4af710e2009-09-15 12:20:11 +0000734 // If the builtins haven't been properly configured yet this error
735 // constructor may not have been defined. Bail out.
verwaest@chromium.org37141392012-05-31 13:27:02 +0000736 if (!fun_obj->IsJSFunction()) {
737 return EmergencyNewError(type, args);
738 }
ager@chromium.org4af710e2009-09-15 12:20:11 +0000739 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000740 Handle<Object> type_obj = LookupAsciiSymbol(type);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000741 Handle<Object> argv[] = { type_obj, args };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000742
743 // Invoke the JavaScript factory method. If an exception is thrown while
744 // running the factory method, use the exception as the result.
745 bool caught_exception;
746 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000747 isolate()->js_builtins_object(),
748 ARRAY_SIZE(argv),
749 argv,
750 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000751 return result;
752}
753
754
755Handle<Object> Factory::NewError(Handle<String> message) {
756 return NewError("$Error", message);
757}
758
759
760Handle<Object> Factory::NewError(const char* constructor,
761 Handle<String> message) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000762 Handle<String> constr = LookupAsciiSymbol(constructor);
763 Handle<JSFunction> fun = Handle<JSFunction>(
764 JSFunction::cast(isolate()->js_builtins_object()->
765 GetPropertyNoExceptionThrown(*constr)));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000766 Handle<Object> argv[] = { message };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000767
768 // Invoke the JavaScript factory method. If an exception is thrown while
769 // running the factory method, use the exception as the result.
770 bool caught_exception;
771 Handle<Object> result = Execution::TryCall(fun,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000772 isolate()->js_builtins_object(),
773 ARRAY_SIZE(argv),
774 argv,
775 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000776 return result;
777}
778
779
780Handle<JSFunction> Factory::NewFunction(Handle<String> name,
781 InstanceType type,
782 int instance_size,
783 Handle<Code> code,
784 bool force_initial_map) {
785 // Allocate the function
786 Handle<JSFunction> function = NewFunction(name, the_hole_value());
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000787
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000788 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000789 // the function itself.
790 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000791 function->set_code(*code);
792
793 if (force_initial_map ||
794 type != JS_OBJECT_TYPE ||
795 instance_size != JSObject::kHeaderSize) {
796 Handle<Map> initial_map = NewMap(type, instance_size);
797 Handle<JSObject> prototype = NewFunctionPrototype(function);
798 initial_map->set_prototype(*prototype);
799 function->set_initial_map(*initial_map);
800 initial_map->set_constructor(*function);
801 } else {
802 ASSERT(!function->has_initial_map());
803 ASSERT(!function->has_prototype());
804 }
805
806 return function;
807}
808
809
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000810Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
811 InstanceType type,
812 int instance_size,
813 Handle<JSObject> prototype,
814 Handle<Code> code,
815 bool force_initial_map) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000816 // Allocate the function.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000817 Handle<JSFunction> function = NewFunction(name, prototype);
818
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000819 // Set up the code pointer in both the shared function info and in
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000820 // the function itself.
821 function->shared()->set_code(*code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000822 function->set_code(*code);
823
824 if (force_initial_map ||
825 type != JS_OBJECT_TYPE ||
826 instance_size != JSObject::kHeaderSize) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000827 Handle<Map> initial_map = NewMap(type,
828 instance_size,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +0000829 GetInitialFastElementsKind());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000830 function->set_initial_map(*initial_map);
831 initial_map->set_constructor(*function);
832 }
833
834 // Set function.prototype and give the prototype a constructor
835 // property that refers to the function.
836 SetPrototypeProperty(function, prototype);
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000837 // Currently safe because it is only invoked from Genesis.
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000838 CHECK_NOT_EMPTY_HANDLE(isolate(),
839 JSObject::SetLocalPropertyIgnoreAttributes(
840 prototype, constructor_symbol(),
841 function, DONT_ENUM));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000842 return function;
843}
844
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000845
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000846Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
847 Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000848 Handle<JSFunction> function = NewFunctionWithoutPrototype(name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000849 CLASSIC_MODE);
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000850 function->shared()->set_code(*code);
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000851 function->set_code(*code);
852 ASSERT(!function->has_initial_map());
853 ASSERT(!function->has_prototype());
854 return function;
855}
856
857
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000858Handle<ScopeInfo> Factory::NewScopeInfo(int length) {
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000859 CALL_HEAP_FUNCTION(
860 isolate(),
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +0000861 isolate()->heap()->AllocateScopeInfo(length),
862 ScopeInfo);
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000863}
864
865
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000866Handle<Code> Factory::NewCode(const CodeDesc& desc,
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000867 Code::Flags flags,
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +0000868 Handle<Object> self_ref,
869 bool immovable) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000870 CALL_HEAP_FUNCTION(isolate(),
871 isolate()->heap()->CreateCode(
872 desc, flags, self_ref, immovable),
873 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000874}
875
876
877Handle<Code> Factory::CopyCode(Handle<Code> code) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000878 CALL_HEAP_FUNCTION(isolate(),
879 isolate()->heap()->CopyCode(*code),
880 Code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000881}
882
883
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000884Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000885 CALL_HEAP_FUNCTION(isolate(),
886 isolate()->heap()->CopyCode(*code, reloc_info),
887 Code);
fschneider@chromium.org086aac62010-03-17 13:18:24 +0000888}
889
890
lrn@chromium.org303ada72010-10-27 09:33:13 +0000891MUST_USE_RESULT static inline MaybeObject* DoCopyInsert(
892 DescriptorArray* array,
893 String* key,
894 Object* value,
895 PropertyAttributes attributes) {
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000896 CallbacksDescriptor desc(key, value, attributes, 0);
yangguo@chromium.org99aa4902012-07-06 16:21:55 +0000897 MaybeObject* obj = array->CopyInsert(&desc);
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000898 return obj;
899}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000900
901
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000902// Allocate the new array.
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000903Handle<DescriptorArray> Factory::CopyAppendForeignDescriptor(
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904 Handle<DescriptorArray> array,
905 Handle<String> key,
906 Handle<Object> value,
907 PropertyAttributes attributes) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000908 CALL_HEAP_FUNCTION(isolate(),
909 DoCopyInsert(*array, *key, *value, attributes),
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +0000910 DescriptorArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000911}
912
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000913
914Handle<String> Factory::SymbolFromString(Handle<String> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000915 CALL_HEAP_FUNCTION(isolate(),
916 isolate()->heap()->LookupSymbol(*value), String);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000917}
918
919
920Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
921 Handle<DescriptorArray> array,
922 Handle<Object> descriptors) {
923 v8::NeanderArray callbacks(descriptors);
924 int nof_callbacks = callbacks.length();
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +0000925 int descriptor_count = array->number_of_descriptors();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000926 Handle<DescriptorArray> result =
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +0000927 NewDescriptorArray(descriptor_count + nof_callbacks);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000928
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000929 // Ensure that marking will not progress and change color of objects.
930 DescriptorArray::WhitenessWitness witness(*result);
931
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000932 // Copy the descriptors from the array.
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +0000933 for (int i = 0; i < descriptor_count; i++) {
934 DescriptorArray::CopyFrom(result, i, array, i, witness);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000935 }
936
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000937 // Fill in new callback descriptors. Process the callbacks from
938 // back to front so that the last callback with a given name takes
939 // precedence over previously added callbacks with that name.
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000940 int added_descriptor_count = descriptor_count;
941 int next_enum = array->NextEnumerationIndex();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000942 for (int i = nof_callbacks - 1; i >= 0; i--) {
943 Handle<AccessorInfo> entry =
944 Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
945 // Ensure the key is a symbol before writing into the instance descriptor.
946 Handle<String> key =
947 SymbolFromString(Handle<String>(String::cast(entry->name())));
948 // Check if a descriptor with this name already exists before writing.
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000949 if (LinearSearch(*result, EXPECT_UNSORTED, *key, added_descriptor_count) ==
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000950 DescriptorArray::kNotFound) {
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000951 CallbacksDescriptor desc(*key,
952 *entry,
953 entry->property_attributes(),
954 next_enum++);
955 result->Set(added_descriptor_count, &desc, witness);
956 added_descriptor_count++;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000957 }
958 }
959
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000960 // Return the old descriptor array if there were no new elements.
961 if (added_descriptor_count == descriptor_count) return array;
962
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000963 // If duplicates were detected, allocate a result of the right size
964 // and transfer the elements.
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000965 if (added_descriptor_count < result->length()) {
966 Handle<DescriptorArray> new_result =
967 NewDescriptorArray(added_descriptor_count);
968 for (int i = 0; i < added_descriptor_count; i++) {
ulan@chromium.org65a89c22012-02-14 11:46:07 +0000969 DescriptorArray::CopyFrom(new_result, i, result, i, witness);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000970 }
971 result = new_result;
972 }
973
974 // Sort the result before returning.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000975 result->Sort(witness);
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000976 ASSERT(result->NextEnumerationIndex() == next_enum);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000977 return result;
978}
979
980
981Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
982 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000983 CALL_HEAP_FUNCTION(
984 isolate(),
985 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000986}
987
988
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000989Handle<JSModule> Factory::NewJSModule(Handle<Context> context,
990 Handle<ScopeInfo> scope_info) {
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000991 CALL_HEAP_FUNCTION(
992 isolate(),
danno@chromium.org81cac2b2012-07-10 11:28:27 +0000993 isolate()->heap()->AllocateJSModule(*context, *scope_info), JSModule);
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000994}
995
996
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000997Handle<GlobalObject> Factory::NewGlobalObject(
998 Handle<JSFunction> constructor) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000999 CALL_HEAP_FUNCTION(isolate(),
1000 isolate()->heap()->AllocateGlobalObject(*constructor),
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001001 GlobalObject);
1002}
1003
1004
1005
ager@chromium.org236ad962008-09-25 09:45:57 +00001006Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001007 CALL_HEAP_FUNCTION(
1008 isolate(),
1009 isolate()->heap()->AllocateJSObjectFromMap(*map, NOT_TENURED),
1010 JSObject);
ager@chromium.org236ad962008-09-25 09:45:57 +00001011}
1012
1013
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +00001014Handle<JSArray> Factory::NewJSArray(int capacity,
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001015 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001016 PretenureFlag pretenure) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001017 CALL_HEAP_FUNCTION(isolate(),
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001018 isolate()->heap()->AllocateJSArrayAndStorage(
1019 elements_kind,
1020 0,
1021 capacity,
1022 INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
1023 pretenure),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001024 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001025}
1026
1027
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001028Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements,
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001029 ElementsKind elements_kind,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001030 PretenureFlag pretenure) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001031 CALL_HEAP_FUNCTION(
1032 isolate(),
1033 isolate()->heap()->AllocateJSArrayWithElements(*elements,
1034 elements_kind,
1035 pretenure),
1036 JSArray);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001037}
1038
1039
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001040void Factory::SetElementsCapacityAndLength(Handle<JSArray> array,
1041 int capacity,
1042 int length) {
1043 ElementsAccessor* accessor = array->GetElementsAccessor();
1044 CALL_HEAP_FUNCTION_VOID(
1045 isolate(),
1046 accessor->SetCapacityAndLength(*array, capacity, length));
1047}
1048
1049
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001050void Factory::SetContent(Handle<JSArray> array,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001051 Handle<FixedArrayBase> elements) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001052 CALL_HEAP_FUNCTION_VOID(
1053 isolate(),
1054 array->SetContent(*elements));
1055}
1056
1057
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001058void Factory::EnsureCanContainHeapObjectElements(Handle<JSArray> array) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001059 CALL_HEAP_FUNCTION_VOID(
1060 isolate(),
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001061 array->EnsureCanContainHeapObjectElements());
1062}
1063
1064
1065void Factory::EnsureCanContainElements(Handle<JSArray> array,
1066 Handle<FixedArrayBase> elements,
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001067 uint32_t length,
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00001068 EnsureElementsMode mode) {
1069 CALL_HEAP_FUNCTION_VOID(
1070 isolate(),
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00001071 array->EnsureCanContainElements(*elements, length, mode));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001072}
1073
1074
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00001075Handle<JSProxy> Factory::NewJSProxy(Handle<Object> handler,
1076 Handle<Object> prototype) {
1077 CALL_HEAP_FUNCTION(
1078 isolate(),
1079 isolate()->heap()->AllocateJSProxy(*handler, *prototype),
1080 JSProxy);
1081}
1082
1083
lrn@chromium.org34e60782011-09-15 07:25:40 +00001084void Factory::BecomeJSObject(Handle<JSReceiver> object) {
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001085 CALL_HEAP_FUNCTION_VOID(
1086 isolate(),
lrn@chromium.org34e60782011-09-15 07:25:40 +00001087 isolate()->heap()->ReinitializeJSReceiver(
1088 *object, JS_OBJECT_TYPE, JSObject::kHeaderSize));
1089}
1090
1091
1092void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1093 CALL_HEAP_FUNCTION_VOID(
1094 isolate(),
1095 isolate()->heap()->ReinitializeJSReceiver(
1096 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001097}
1098
1099
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001100void Factory::SetIdentityHash(Handle<JSObject> object, Object* hash) {
1101 CALL_HEAP_FUNCTION_VOID(
1102 isolate(),
1103 object->SetIdentityHash(hash, ALLOW_CREATION));
1104}
1105
1106
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001107Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001108 Handle<String> name,
1109 int number_of_literals,
1110 Handle<Code> code,
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001111 Handle<ScopeInfo> scope_info) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001112 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
1113 shared->set_code(*code);
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001114 shared->set_scope_info(*scope_info);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00001115 int literals_array_size = number_of_literals;
1116 // If the function contains object, regexp or array literals,
1117 // allocate extra space for a literals array prefix containing the
1118 // context.
1119 if (number_of_literals > 0) {
1120 literals_array_size += JSFunction::kLiteralsPrefixSize;
1121 }
1122 shared->set_num_literals(literals_array_size);
1123 return shared;
1124}
1125
1126
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001127Handle<JSMessageObject> Factory::NewJSMessageObject(
1128 Handle<String> type,
1129 Handle<JSArray> arguments,
1130 int start_position,
1131 int end_position,
1132 Handle<Object> script,
1133 Handle<Object> stack_trace,
1134 Handle<Object> stack_frames) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001135 CALL_HEAP_FUNCTION(isolate(),
1136 isolate()->heap()->AllocateJSMessageObject(*type,
1137 *arguments,
1138 start_position,
1139 end_position,
1140 *script,
1141 *stack_trace,
1142 *stack_frames),
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00001143 JSMessageObject);
1144}
1145
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001146Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001147 CALL_HEAP_FUNCTION(isolate(),
1148 isolate()->heap()->AllocateSharedFunctionInfo(*name),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001149 SharedFunctionInfo);
1150}
1151
1152
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001153Handle<String> Factory::NumberToString(Handle<Object> number) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001154 CALL_HEAP_FUNCTION(isolate(),
1155 isolate()->heap()->NumberToString(*number), String);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001156}
1157
1158
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001159Handle<String> Factory::Uint32ToString(uint32_t value) {
1160 CALL_HEAP_FUNCTION(isolate(),
1161 isolate()->heap()->Uint32ToString(value), String);
1162}
1163
1164
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001165Handle<SeededNumberDictionary> Factory::DictionaryAtNumberPut(
1166 Handle<SeededNumberDictionary> dictionary,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001167 uint32_t key,
1168 Handle<Object> value) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001169 CALL_HEAP_FUNCTION(isolate(),
1170 dictionary->AtNumberPut(key, *value),
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00001171 SeededNumberDictionary);
1172}
1173
1174
1175Handle<UnseededNumberDictionary> Factory::DictionaryAtNumberPut(
1176 Handle<UnseededNumberDictionary> dictionary,
1177 uint32_t key,
1178 Handle<Object> value) {
1179 CALL_HEAP_FUNCTION(isolate(),
1180 dictionary->AtNumberPut(key, *value),
1181 UnseededNumberDictionary);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001182}
1183
1184
1185Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
1186 Handle<Object> prototype) {
1187 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001188 CALL_HEAP_FUNCTION(
1189 isolate(),
1190 isolate()->heap()->AllocateFunction(*isolate()->function_map(),
1191 *function_share,
1192 *prototype),
1193 JSFunction);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001194}
1195
1196
1197Handle<JSFunction> Factory::NewFunction(Handle<String> name,
1198 Handle<Object> prototype) {
1199 Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001200 fun->set_context(isolate()->context()->global_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001201 return fun;
1202}
1203
1204
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001205Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001206 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001207 LanguageMode language_mode) {
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001208 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001209 Handle<Map> map = (language_mode == CLASSIC_MODE)
1210 ? isolate()->function_without_prototype_map()
1211 : isolate()->strict_mode_function_without_prototype_map();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001212 CALL_HEAP_FUNCTION(isolate(),
1213 isolate()->heap()->AllocateFunction(
1214 *map,
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001215 *function_share,
1216 *the_hole_value()),
1217 JSFunction);
1218}
1219
1220
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001221Handle<JSFunction> Factory::NewFunctionWithoutPrototype(
1222 Handle<String> name,
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +00001223 LanguageMode language_mode) {
1224 Handle<JSFunction> fun =
1225 NewFunctionWithoutPrototypeHelper(name, language_mode);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001226 fun->set_context(isolate()->context()->global_context());
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001227 return fun;
1228}
1229
1230
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001231Handle<Object> Factory::ToObject(Handle<Object> object) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001232 CALL_HEAP_FUNCTION(isolate(), object->ToObject(), Object);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001233}
1234
1235
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001236Handle<Object> Factory::ToObject(Handle<Object> object,
1237 Handle<Context> global_context) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001238 CALL_HEAP_FUNCTION(isolate(), object->ToObject(*global_context), Object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001239}
1240
1241
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001242#ifdef ENABLE_DEBUGGER_SUPPORT
v8.team.kasperl727e9952008-09-02 14:56:44 +00001243Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
1244 // Get the original code of the function.
1245 Handle<Code> code(shared->code());
1246
1247 // Create a copy of the code before allocating the debug info object to avoid
1248 // allocation while setting up the debug info object.
1249 Handle<Code> original_code(*Factory::CopyCode(code));
1250
1251 // Allocate initial fixed array for active break points before allocating the
1252 // debug info object to avoid allocation while setting up the debug info
1253 // object.
1254 Handle<FixedArray> break_points(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001255 NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001256
1257 // Create and set up the debug info object. Debug info contains function, a
1258 // copy of the original code, the executing code and initial fixed array for
1259 // active break points.
1260 Handle<DebugInfo> debug_info =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001261 Handle<DebugInfo>::cast(NewStruct(DEBUG_INFO_TYPE));
v8.team.kasperl727e9952008-09-02 14:56:44 +00001262 debug_info->set_shared(*shared);
1263 debug_info->set_original_code(*original_code);
1264 debug_info->set_code(*code);
1265 debug_info->set_break_points(*break_points);
1266
1267 // Link debug info to function.
1268 shared->set_debug_info(*debug_info);
1269
1270 return debug_info;
1271}
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001272#endif
v8.team.kasperl727e9952008-09-02 14:56:44 +00001273
1274
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001275Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
1276 int length) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001277 CALL_HEAP_FUNCTION(
1278 isolate(),
1279 isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001280}
1281
1282
1283Handle<JSFunction> Factory::CreateApiFunction(
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001284 Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001285 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1286 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001287
kasper.lund212ac232008-07-16 07:07:30 +00001288 int internal_field_count = 0;
1289 if (!obj->instance_template()->IsUndefined()) {
1290 Handle<ObjectTemplateInfo> instance_template =
1291 Handle<ObjectTemplateInfo>(
1292 ObjectTemplateInfo::cast(obj->instance_template()));
1293 internal_field_count =
1294 Smi::cast(instance_template->internal_field_count())->value();
1295 }
1296
1297 int instance_size = kPointerSize * internal_field_count;
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001298 InstanceType type = INVALID_TYPE;
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001299 switch (instance_type) {
1300 case JavaScriptObject:
1301 type = JS_OBJECT_TYPE;
1302 instance_size += JSObject::kHeaderSize;
1303 break;
1304 case InnerGlobalObject:
1305 type = JS_GLOBAL_OBJECT_TYPE;
1306 instance_size += JSGlobalObject::kSize;
1307 break;
1308 case OuterGlobalObject:
1309 type = JS_GLOBAL_PROXY_TYPE;
1310 instance_size += JSGlobalProxy::kSize;
1311 break;
1312 default:
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00001313 break;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001314 }
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001315 ASSERT(type != INVALID_TYPE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001316
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001317 Handle<JSFunction> result =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001318 NewFunction(Factory::empty_symbol(),
1319 type,
1320 instance_size,
1321 code,
1322 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001323 // Set class name.
1324 Handle<Object> class_name = Handle<Object>(obj->class_name());
1325 if (class_name->IsString()) {
1326 result->shared()->set_instance_class_name(*class_name);
1327 result->shared()->set_name(*class_name);
1328 }
1329
1330 Handle<Map> map = Handle<Map>(result->initial_map());
1331
1332 // Mark as undetectable if needed.
1333 if (obj->undetectable()) {
1334 map->set_is_undetectable();
1335 }
1336
1337 // Mark as hidden for the __proto__ accessor if needed.
1338 if (obj->hidden_prototype()) {
1339 map->set_is_hidden_prototype();
1340 }
1341
1342 // Mark as needs_access_check if needed.
1343 if (obj->needs_access_check()) {
ager@chromium.org870a0b62008-11-04 11:43:05 +00001344 map->set_is_access_check_needed(true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001345 }
1346
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001347 // Set interceptor information in the map.
1348 if (!obj->named_property_handler()->IsUndefined()) {
1349 map->set_has_named_interceptor();
1350 }
1351 if (!obj->indexed_property_handler()->IsUndefined()) {
1352 map->set_has_indexed_interceptor();
1353 }
1354
1355 // Set instance call-as-function information in the map.
1356 if (!obj->instance_call_handler()->IsUndefined()) {
1357 map->set_has_instance_call_handler();
1358 }
1359
1360 result->shared()->set_function_data(*obj);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001361 result->shared()->set_construct_stub(*construct_stub);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00001362 result->shared()->DontAdaptArguments();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001363
1364 // Recursively copy parent templates' accessors, 'data' may be modified.
1365 Handle<DescriptorArray> array =
1366 Handle<DescriptorArray>(map->instance_descriptors());
1367 while (true) {
1368 Handle<Object> props = Handle<Object>(obj->property_accessors());
1369 if (!props->IsUndefined()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001370 array = CopyAppendCallbackDescriptors(array, props);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001371 }
1372 Handle<Object> parent = Handle<Object>(obj->parent_template());
1373 if (parent->IsUndefined()) break;
1374 obj = Handle<FunctionTemplateInfo>::cast(parent);
1375 }
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001376 if (!array->IsEmpty()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001377 map->set_instance_descriptors(*array);
1378 }
1379
vegorov@chromium.orgf8372902010-03-15 10:26:20 +00001380 ASSERT(result->shared()->IsApiFunction());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001381 return result;
1382}
1383
1384
ager@chromium.org236ad962008-09-25 09:45:57 +00001385Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001386 CALL_HEAP_FUNCTION(isolate(),
1387 MapCache::Allocate(at_least_space_for), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001388}
1389
1390
lrn@chromium.org303ada72010-10-27 09:33:13 +00001391MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
1392 FixedArray* keys,
1393 Map* map) {
1394 Object* result;
1395 { MaybeObject* maybe_result =
1396 MapCache::cast(context->map_cache())->Put(keys, map);
1397 if (!maybe_result->ToObject(&result)) return maybe_result;
1398 }
1399 context->set_map_cache(MapCache::cast(result));
ager@chromium.org236ad962008-09-25 09:45:57 +00001400 return result;
1401}
1402
1403
1404Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1405 Handle<FixedArray> keys,
1406 Handle<Map> map) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001407 CALL_HEAP_FUNCTION(isolate(),
1408 UpdateMapCacheWith(*context, *keys, *map), MapCache);
ager@chromium.org236ad962008-09-25 09:45:57 +00001409}
1410
1411
1412Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1413 Handle<FixedArray> keys) {
1414 if (context->map_cache()->IsUndefined()) {
1415 // Allocate the new map cache for the global context.
1416 Handle<MapCache> new_cache = NewMapCache(24);
1417 context->set_map_cache(*new_cache);
1418 }
ager@chromium.org32912102009-01-16 10:38:43 +00001419 // Check to see whether there is a matching element in the cache.
ager@chromium.org236ad962008-09-25 09:45:57 +00001420 Handle<MapCache> cache =
1421 Handle<MapCache>(MapCache::cast(context->map_cache()));
1422 Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
1423 if (result->IsMap()) return Handle<Map>::cast(result);
1424 // Create a new map and add it to the cache.
1425 Handle<Map> map =
ager@chromium.org32912102009-01-16 10:38:43 +00001426 CopyMap(Handle<Map>(context->object_function()->initial_map()),
1427 keys->length());
ager@chromium.org236ad962008-09-25 09:45:57 +00001428 AddToMapCache(context, keys, map);
1429 return Handle<Map>(map);
1430}
1431
1432
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001433void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1434 JSRegExp::Type type,
1435 Handle<String> source,
1436 JSRegExp::Flags flags,
1437 Handle<Object> data) {
1438 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1439
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001440 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1441 store->set(JSRegExp::kSourceIndex, *source);
1442 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1443 store->set(JSRegExp::kAtomPatternIndex, *data);
1444 regexp->set_data(*store);
1445}
1446
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001447void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1448 JSRegExp::Type type,
1449 Handle<String> source,
1450 JSRegExp::Flags flags,
1451 int capture_count) {
1452 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001453 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001454 store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1455 store->set(JSRegExp::kSourceIndex, *source);
1456 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00001457 store->set(JSRegExp::kIrregexpASCIICodeIndex, uninitialized);
1458 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
1459 store->set(JSRegExp::kIrregexpASCIICodeSavedIndex, uninitialized);
1460 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001461 store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1462 store->set(JSRegExp::kIrregexpCaptureCountIndex,
1463 Smi::FromInt(capture_count));
1464 regexp->set_data(*store);
1465}
1466
1467
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00001468
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001469void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1470 Handle<JSObject> instance,
1471 bool* pending_exception) {
1472 // Configure the instance by adding the properties specified by the
1473 // instance template.
1474 Handle<Object> instance_template = Handle<Object>(desc->instance_template());
1475 if (!instance_template->IsUndefined()) {
1476 Execution::ConfigureInstance(instance,
1477 instance_template,
1478 pending_exception);
1479 } else {
1480 *pending_exception = false;
1481 }
1482}
1483
1484
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001485Handle<Object> Factory::GlobalConstantFor(Handle<String> name) {
1486 Heap* h = isolate()->heap();
1487 if (name->Equals(h->undefined_symbol())) return undefined_value();
1488 if (name->Equals(h->nan_symbol())) return nan_value();
1489 if (name->Equals(h->infinity_symbol())) return infinity_value();
1490 return Handle<Object>::null();
1491}
1492
1493
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001494Handle<Object> Factory::ToBoolean(bool value) {
1495 return Handle<Object>(value
1496 ? isolate()->heap()->true_value()
1497 : isolate()->heap()->false_value());
1498}
1499
1500
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001501} } // namespace v8::internal