Index: src/runtime.cc |
=================================================================== |
--- src/runtime.cc (revision 1467) |
+++ src/runtime.cc (working copy) |
@@ -43,6 +43,7 @@ |
#include "scopeinfo.h" |
#include "v8threads.h" |
#include "smart-pointer.h" |
+#include "parser.h" |
namespace v8 { namespace internal { |
@@ -69,6 +70,13 @@ |
RUNTIME_ASSERT(obj->IsBoolean()); \ |
bool name = (obj)->IsTrue(); |
+// Cast the given object to an int and store it in a variable with |
+// the given name. If the object is not a Smi call IllegalOperation |
+// and return. |
+#define CONVERT_INT_CHECKED(name, obj) \ |
+ RUNTIME_ASSERT(obj->IsSmi()); \ |
+ int name = Smi::cast(obj)->value(); |
+ |
// Cast the given object to a double and store it in a variable with |
// the given name. If the object is not a number (as opposed to |
// the number not-a-number) call IllegalOperation and return. |
@@ -92,7 +100,7 @@ |
} |
-static Object* Runtime_CloneObjectLiteralBoilerplate(Arguments args) { |
+static Object* Runtime_CloneLiteralBoilerplate(Arguments args) { |
CONVERT_CHECKED(JSObject, boilerplate, args[0]); |
return Heap::CopyJSObject(boilerplate); |
} |
@@ -131,6 +139,11 @@ |
} |
+static Handle<Object> CreateLiteralBoilerplate( |
+ Handle<FixedArray> literals, |
+ Handle<FixedArray> constant_properties); |
+ |
+ |
static Handle<Object> CreateObjectLiteralBoilerplate( |
Handle<FixedArray> literals, |
Handle<FixedArray> constant_properties) { |
@@ -160,7 +173,8 @@ |
// The value contains the constant_properties of a |
// simple object literal. |
Handle<FixedArray> array = Handle<FixedArray>::cast(value); |
- value = CreateObjectLiteralBoilerplate(literals, array); |
+ value = CreateLiteralBoilerplate(literals, array); |
+ if (value.is_null()) return value; |
} |
Handle<Object> result; |
uint32_t element_index = 0; |
@@ -194,13 +208,57 @@ |
} |
+static Handle<Object> CreateArrayLiteralBoilerplate( |
+ Handle<FixedArray> literals, |
+ Handle<FixedArray> elements) { |
+ // Create the JSArray. |
+ Handle<JSFunction> constructor( |
+ JSFunction::GlobalContextFromLiterals(*literals)->array_function()); |
+ Handle<Object> object = Factory::NewJSObject(constructor); |
+ |
+ Handle<Object> copied_elements = Factory::CopyFixedArray(elements); |
+ |
+ Handle<FixedArray> content = Handle<FixedArray>::cast(copied_elements); |
+ for (int i = 0; i < content->length(); i++) { |
+ if (content->get(i)->IsFixedArray()) { |
+ // The value contains the constant_properties of a |
+ // simple object literal. |
+ Handle<FixedArray> fa(FixedArray::cast(content->get(i))); |
+ Handle<Object> result = CreateLiteralBoilerplate(literals, fa); |
+ if (result.is_null()) return result; |
+ content->set(i, *result); |
+ } |
+ } |
+ |
+ // Set the elements. |
+ Handle<JSArray>::cast(object)->SetContent(*content); |
+ return object; |
+} |
+ |
+ |
+static Handle<Object> CreateLiteralBoilerplate( |
+ Handle<FixedArray> literals, |
+ Handle<FixedArray> array) { |
+ Handle<FixedArray> elements = CompileTimeValue::GetElements(array); |
+ switch (CompileTimeValue::GetType(array)) { |
+ case CompileTimeValue::OBJECT_LITERAL: |
+ return CreateObjectLiteralBoilerplate(literals, elements); |
+ case CompileTimeValue::ARRAY_LITERAL: |
+ return CreateArrayLiteralBoilerplate(literals, elements); |
+ default: |
+ UNREACHABLE(); |
+ return Handle<Object>::null(); |
+ } |
+} |
+ |
+ |
static Object* Runtime_CreateObjectLiteralBoilerplate(Arguments args) { |
HandleScope scope; |
ASSERT(args.length() == 3); |
// Copy the arguments. |
- Handle<FixedArray> literals = args.at<FixedArray>(0); |
- int literals_index = Smi::cast(args[1])->value(); |
- Handle<FixedArray> constant_properties = args.at<FixedArray>(2); |
+ CONVERT_ARG_CHECKED(FixedArray, literals, 0); |
+ CONVERT_INT_CHECKED(literals_index, args[1]); |
+ CONVERT_ARG_CHECKED(FixedArray, constant_properties, 2); |
Handle<Object> result = |
CreateObjectLiteralBoilerplate(literals, constant_properties); |
@@ -214,28 +272,24 @@ |
} |
-static Object* Runtime_CreateArrayLiteral(Arguments args) { |
+static Object* Runtime_CreateArrayLiteralBoilerplate(Arguments args) { |
// Takes a FixedArray of elements containing the literal elements of |
// the array literal and produces JSArray with those elements. |
// Additionally takes the literals array of the surrounding function |
// which contains the context from which to get the Array function |
// to use for creating the array literal. |
- ASSERT(args.length() == 2); |
- CONVERT_CHECKED(FixedArray, elements, args[0]); |
- CONVERT_CHECKED(FixedArray, literals, args[1]); |
- JSFunction* constructor = |
- JSFunction::GlobalContextFromLiterals(literals)->array_function(); |
- // Create the JSArray. |
- Object* object = Heap::AllocateJSObject(constructor); |
- if (object->IsFailure()) return object; |
+ HandleScope scope; |
+ ASSERT(args.length() == 3); |
+ CONVERT_ARG_CHECKED(FixedArray, literals, 0); |
+ CONVERT_INT_CHECKED(literals_index, args[1]); |
+ CONVERT_ARG_CHECKED(FixedArray, elements, 2); |
- // Copy the elements. |
- Object* content = elements->Copy(); |
- if (content->IsFailure()) return content; |
+ Handle<Object> object = CreateArrayLiteralBoilerplate(literals, elements); |
+ if (object.is_null()) return Failure::Exception(); |
- // Set the elements. |
- JSArray::cast(object)->SetContent(FixedArray::cast(content)); |
- return object; |
+ // Update the functions literal and return the boilerplate. |
+ literals->set(literals_index, *object); |
+ return *object; |
} |