// Copyright 2006-2008 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-visiting.h" namespace v8 { namespace internal { Handle Factory::NewFixedArray(int size, PretenureFlag pretenure) { ASSERT(0 <= size); CALL_HEAP_FUNCTION(Heap::AllocateFixedArray(size, pretenure), FixedArray); } Handle Factory::NewFixedArrayWithHoles(int size, PretenureFlag pretenure) { ASSERT(0 <= size); CALL_HEAP_FUNCTION(Heap::AllocateFixedArrayWithHoles(size, pretenure), FixedArray); } Handle Factory::NewStringDictionary(int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(StringDictionary::Allocate(at_least_space_for), StringDictionary); } Handle Factory::NewNumberDictionary(int at_least_space_for) { ASSERT(0 <= at_least_space_for); CALL_HEAP_FUNCTION(NumberDictionary::Allocate(at_least_space_for), NumberDictionary); } Handle Factory::NewDescriptorArray(int number_of_descriptors) { ASSERT(0 <= number_of_descriptors); CALL_HEAP_FUNCTION(DescriptorArray::Allocate(number_of_descriptors), DescriptorArray); } // Symbols are created in the old generation (data space). Handle Factory::LookupSymbol(Vector string) { CALL_HEAP_FUNCTION(Heap::LookupSymbol(string), String); } Handle Factory::NewStringFromAscii(Vector string, PretenureFlag pretenure) { CALL_HEAP_FUNCTION(Heap::AllocateStringFromAscii(string, pretenure), String); } Handle Factory::NewStringFromUtf8(Vector string, PretenureFlag pretenure) { CALL_HEAP_FUNCTION(Heap::AllocateStringFromUtf8(string, pretenure), String); } Handle Factory::NewStringFromTwoByte(Vector string, PretenureFlag pretenure) { CALL_HEAP_FUNCTION(Heap::AllocateStringFromTwoByte(string, pretenure), String); } Handle Factory::NewRawAsciiString(int length, PretenureFlag pretenure) { CALL_HEAP_FUNCTION(Heap::AllocateRawAsciiString(length, pretenure), String); } Handle Factory::NewRawTwoByteString(int length, PretenureFlag pretenure) { CALL_HEAP_FUNCTION(Heap::AllocateRawTwoByteString(length, pretenure), String); } Handle Factory::NewConsString(Handle first, Handle second) { CALL_HEAP_FUNCTION(Heap::AllocateConsString(*first, *second), String); } Handle Factory::NewSubString(Handle str, int begin, int end) { CALL_HEAP_FUNCTION(str->SubString(begin, end), String); } Handle Factory::NewExternalStringFromAscii( ExternalAsciiString::Resource* resource) { CALL_HEAP_FUNCTION(Heap::AllocateExternalStringFromAscii(resource), String); } Handle Factory::NewExternalStringFromTwoByte( ExternalTwoByteString::Resource* resource) { CALL_HEAP_FUNCTION(Heap::AllocateExternalStringFromTwoByte(resource), String); } Handle Factory::NewGlobalContext() { CALL_HEAP_FUNCTION(Heap::AllocateGlobalContext(), Context); } Handle Factory::NewFunctionContext(int length, Handle closure) { CALL_HEAP_FUNCTION(Heap::AllocateFunctionContext(length, *closure), Context); } Handle Factory::NewWithContext(Handle previous, Handle extension, bool is_catch_context) { CALL_HEAP_FUNCTION(Heap::AllocateWithContext(*previous, *extension, is_catch_context), Context); } Handle Factory::NewStruct(InstanceType type) { CALL_HEAP_FUNCTION(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