Chromium Code Reviews| Index: src/runtime.cc |
| diff --git a/src/runtime.cc b/src/runtime.cc |
| index e0f507e1774bbd7c7d500994f40a07e74ae8f1e6..a9f60c55b5cd122873737660bc178d6d844f7dc5 100644 |
| --- a/src/runtime.cc |
| +++ b/src/runtime.cc |
| @@ -4568,6 +4568,42 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_SetProperty) { |
| } |
| +MaybeObject* TransitionElements(Handle<Object> object, |
| + ElementsKind to_kind, |
| + Isolate* isolate) { |
| + HandleScope scope(isolate); |
| + if (!object->IsJSObject()) return isolate->ThrowIllegalOperation(); |
| + ElementsKind from_kind = |
| + Handle<JSObject>::cast(object)->map()->elements_kind(); |
| + // Only handle valid transitions. |
| + if ((from_kind == FAST_SMI_ONLY_ELEMENTS && |
| + (to_kind == FAST_DOUBLE_ELEMENTS || to_kind == FAST_ELEMENTS)) || |
| + (from_kind == FAST_DOUBLE_ELEMENTS && to_kind == FAST_ELEMENTS)) { |
|
danno
2011/10/18 08:57:03
Add a predicate IsValidFastElementTransition somew
Jakob Kummerow
2011/10/18 12:05:15
Done.
|
| + Handle<Object> result = |
| + TransitionElementsKind(Handle<JSObject>::cast(object), to_kind); |
| + if (result.is_null()) return isolate->ThrowIllegalOperation(); |
| + return *result; |
| + } |
| + return isolate->ThrowIllegalOperation(); |
| +} |
| + |
| + |
| +RUNTIME_FUNCTION(MaybeObject*, Runtime_TransitionElementsSmiToDouble) { |
| + NoHandleAllocation ha; |
| + RUNTIME_ASSERT(args.length() == 1); |
| + Handle<Object> object = args.at<Object>(0); |
| + return TransitionElements(object, FAST_DOUBLE_ELEMENTS, isolate); |
| +} |
| + |
| + |
| +RUNTIME_FUNCTION(MaybeObject*, Runtime_TransitionElementsDoubleToObject) { |
| + NoHandleAllocation ha; |
| + RUNTIME_ASSERT(args.length() == 1); |
| + Handle<Object> object = args.at<Object>(0); |
| + return TransitionElements(object, FAST_ELEMENTS, isolate); |
| +} |
| + |
| + |
| // Set the native flag on the function. |
| // This is used to decide if we should transform null and undefined |
| // into the global object when doing call and apply. |