// Copyright 2012 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided // with the distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "v8.h" #include "api.h" #include "debug.h" #include "execution.h" #include "factory.h" #include "macro-assembler.h" #include "objects.h" #include "objects-visiting.h" #include "platform.h" #include "scopeinfo.h" namespace v8 { namespace internal { Handle Factory::NewFixedArray(int size, PretenureFlag pretenure) { ASSERT(0 <= size); CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateFixedArray(size, pretenure), FixedArray); } Handle Factory::NewFixedArrayWithHoles(int size, PretenureFlag pretenure) { ASSERT(0 <= size); CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateFixedArrayWithHoles(size, pretenure), FixedArray); } Handle Factory::NewFixedDoubleArray(int size, PretenureFlag pretenure) { ASSERT(0 <= size); CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure), FixedDoubleArray); } Handle Factory::NewStringDictionary(int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(isolate(), StringDictionary::Allocate(at_least_space_for), StringDictionary); } Handle Factory::NewSeededNumberDictionary( int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(isolate(), SeededNumberDictionary::Allocate(at_least_space_for), SeededNumberDictionary); } Handle Factory::NewUnseededNumberDictionary( int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(isolate(), UnseededNumberDictionary::Allocate(at_least_space_for), UnseededNumberDictionary); } Handle Factory::NewObjectHashSet(int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(isolate(), ObjectHashSet::Allocate(at_least_space_for), ObjectHashSet); } Handle Factory::NewObjectHashTable(int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(isolate(), ObjectHashTable::Allocate(at_least_space_for), ObjectHashTable); } Handle Factory::NewDescriptorArray(int number_of_descriptors, int slack) { ASSERT(0 <= number_of_descriptors); CALL_HEAP_FUNCTION(isolate(), DescriptorArray::Allocate(number_of_descriptors, slack), DescriptorArray); } Handle Factory::NewDeoptimizationInputData( int deopt_entry_count, PretenureFlag pretenure) { ASSERT(deopt_entry_count > 0); CALL_HEAP_FUNCTION(isolate(), DeoptimizationInputData::Allocate(deopt_entry_count, pretenure), DeoptimizationInputData); } Handle Factory::NewDeoptimizationOutputData( int deopt_entry_count, PretenureFlag pretenure) { ASSERT(deopt_entry_count > 0); CALL_HEAP_FUNCTION(isolate(), DeoptimizationOutputData::Allocate(deopt_entry_count, pretenure), DeoptimizationOutputData); } Handle Factory::NewAccessorPair() { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateAccessorPair(), AccessorPair); } Handle Factory::NewTypeFeedbackInfo() { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateTypeFeedbackInfo(), TypeFeedbackInfo); } // Symbols are created in the old generation (data space). Handle Factory::LookupSymbol(Vector string) { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->LookupSymbol(string), String); } // Symbols are created in the old generation (data space). Handle Factory::LookupSymbol(Handle string) { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->LookupSymbol(*string), String); } Handle Factory::LookupAsciiSymbol(Vector string) { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->LookupAsciiSymbol(string), String); } Handle Factory::LookupAsciiSymbol(Handle string, int from, int length) { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->LookupAsciiSymbol(string, from, length), String); } Handle Factory::LookupTwoByteSymbol(Vector string) { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->LookupTwoByteSymbol(string), String); } Handle Factory::NewStringFromAscii(Vector string, PretenureFlag pretenure) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateStringFromAscii(string, pretenure), String); } Handle Factory::NewStringFromUtf8(Vector string, PretenureFlag pretenure) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateStringFromUtf8(string, pretenure), String); } Handle Factory::NewStringFromTwoByte(Vector string, PretenureFlag pretenure) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateStringFromTwoByte(string, pretenure), String); } Handle Factory::NewRawAsciiString(int length, PretenureFlag pretenure) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateRawAsciiString(length, pretenure), SeqAsciiString); } Handle Factory::NewRawTwoByteString(int length, PretenureFlag pretenure) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateRawTwoByteString(length, pretenure), SeqTwoByteString); } Handle Factory::NewConsString(Handle first, Handle second) { CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateConsString(*first, *second), String); } Handle Factory::NewSubString(Handle str, int begin, int end) { CALL_HEAP_FUNCTION(isolate(), str->SubString(begin, end), String); } Handle Factory::NewProperSubString(Handle str, int begin, int end) { ASSERT(begin > 0 || end < str->length()); CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateSubString(*str, begin, end), String); } Handle Factory::NewExternalStringFromAscii( const ExternalAsciiString::Resource* resource) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateExternalStringFromAscii(resource), String); } Handle Factory::NewExternalStringFromTwoByte( const ExternalTwoByteString::Resource* resource) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateExternalStringFromTwoByte(resource), String); } Handle Factory::NewNativeContext() { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateNativeContext(), Context); } Handle Factory::NewGlobalContext(Handle function, Handle scope_info) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateGlobalContext(*function, *scope_info), Context); } Handle Factory::NewModuleContext(Handle scope_info) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateModuleContext(*scope_info), Context); } Handle Factory::NewFunctionContext(int length, Handle function) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateFunctionContext(length, *function), Context); } Handle Factory::NewCatchContext(Handle function, Handle previous, Handle name, Handle thrown_object) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateCatchContext(*function, *previous, *name, *thrown_object), Context); } Handle Factory::NewWithContext(Handle function, Handle previous, Handle extension) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateWithContext(*function, *previous, *extension), Context); } Handle Factory::NewBlockContext(Handle function, Handle previous, Handle scope_info) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateBlockContext(*function, *previous, *scope_info), Context); } Handle Factory::NewStruct(InstanceType type) { CALL_HEAP_FUNCTION( isolate(), isolate()->heap()->AllocateStruct(type), Struct); } Handle Factory::NewAccessorInfo() { Handle info = Handle::cast(NewStruct(ACCESSOR_INFO_TYPE)); info->set_flag(0); // Must clear the flag, it was initialized as undefined. return info; } Handle