From: Ben Noordhuis Date: Fri, 23 May 2014 14:01:17 +0000 (+0000) Subject: deps: cherry-pick r21466 from v8 trunk X-Git-Tag: upstream/0.12.0~163 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d78a3787d26488c0848509b84b09c3fd30185f58;p=platform%2Fupstream%2Fnodejs.git deps: cherry-pick r21466 from v8 trunk Check for cached transition to ExternalArray elements kind. See [1] and [2] for details. [1] https://code.google.com/p/v8/issues/detail?id=3337 [2] https://codereview.chromium.org/291193011 Signed-off-by: Fedor Indutny --- diff --git a/deps/v8/src/objects.cc b/deps/v8/src/objects.cc index 956e46f..8aa2eb1 100644 --- a/deps/v8/src/objects.cc +++ b/deps/v8/src/objects.cc @@ -3362,9 +3362,16 @@ static Map* FindClosestElementsTransition(Map* map, ElementsKind to_kind) { ? to_kind : TERMINAL_FAST_ELEMENTS_KIND; - // Support for legacy API. + // Support for legacy API: SetIndexedPropertiesTo{External,Pixel}Data + // allows to change elements from arbitrary kind to any ExternalArray + // elements kind. Satisfy its requirements, checking whether we already + // have the cached transition. if (IsExternalArrayElementsKind(to_kind) && !IsFixedTypedArrayElementsKind(map->elements_kind())) { + if (map->HasElementsTransition()) { + Map* next_map = map->elements_transition_map(); + if (next_map->elements_kind() == to_kind) return next_map; + } return map; } diff --git a/deps/v8/test/cctest/test-api.cc b/deps/v8/test/cctest/test-api.cc index d8fa648..14df05a 100644 --- a/deps/v8/test/cctest/test-api.cc +++ b/deps/v8/test/cctest/test-api.cc @@ -21341,6 +21341,23 @@ THREADED_TEST(Regress142088) { } +THREADED_TEST(Regress3337) { + LocalContext context; + v8::Isolate* isolate = context->GetIsolate(); + v8::HandleScope scope(isolate); + Local o1 = Object::New(isolate); + Local o2 = Object::New(isolate); + i::Handle io1 = v8::Utils::OpenHandle(*o1); + i::Handle io2 = v8::Utils::OpenHandle(*o2); + CHECK(io1->map() == io2->map()); + o1->SetIndexedPropertiesToExternalArrayData( + NULL, v8::kExternalUint32Array, 0); + o2->SetIndexedPropertiesToExternalArrayData( + NULL, v8::kExternalUint32Array, 0); + CHECK(io1->map() == io2->map()); +} + + THREADED_TEST(Regress137496) { i::FLAG_expose_gc = true; LocalContext context;