From e79bfcaf3f71f798b928c47055301a4727107221 Mon Sep 17 00:00:00 2001 From: "antonm@chromium.org" Date: Fri, 18 Feb 2011 10:53:38 +0000 Subject: [PATCH] Use [[DefineOwnProperty]] to put 'constructor' field on the protoype object. That better follows ECMA-262 (see 13.2 Creating Function Objects) and allows to ignore nasty JS accessors for 'constructor' property. BUG=v8:1172 TEST=test/mjsunit/regress/regress-1172.js Review URL: http://codereview.chromium.org/6531037 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6849 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/heap.cc | 5 ++--- src/runtime.cc | 1 + test/mjsunit/mjsunit.js | 7 +++++++ test/mjsunit/regress/regress-1172.js | 39 ++++++++++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 test/mjsunit/regress/regress-1172.js diff --git a/src/heap.cc b/src/heap.cc index f88ebda..87c0f54 100644 --- a/src/heap.cc +++ b/src/heap.cc @@ -2924,9 +2924,8 @@ MaybeObject* Heap::AllocateFunctionPrototype(JSFunction* function) { // constructor to the function. Object* result; { MaybeObject* maybe_result = - JSObject::cast(prototype)->SetProperty(constructor_symbol(), - function, - DONT_ENUM); + JSObject::cast(prototype)->SetLocalPropertyIgnoreAttributes( + constructor_symbol(), function, DONT_ENUM); if (!maybe_result->ToObject(&result)) return maybe_result; } return prototype; diff --git a/src/runtime.cc b/src/runtime.cc index df403bc..5a443ef 100644 --- a/src/runtime.cc +++ b/src/runtime.cc @@ -6946,6 +6946,7 @@ static MaybeObject* Runtime_NewObject(Arguments args) { bool first_allocation = !shared->live_objects_may_exist(); Handle result = Factory::NewJSObject(function); + RETURN_IF_EMPTY_HANDLE(result); // Delay setting the stub if inobject slack tracking is in progress. if (first_allocation && !shared->IsInobjectSlackTrackingInProgress()) { TrySettingInlineConstructStub(function); diff --git a/test/mjsunit/mjsunit.js b/test/mjsunit/mjsunit.js index 558282f..fe580f3 100644 --- a/test/mjsunit/mjsunit.js +++ b/test/mjsunit/mjsunit.js @@ -104,6 +104,13 @@ function deepEquals(a, b) { } +function assertSame(expected, found, name_opt) { + if (found !== expected) { + fail(expected, found, name_opt); + } +} + + function assertEquals(expected, found, name_opt) { if (!deepEquals(found, expected)) { fail(expected, found, name_opt); diff --git a/test/mjsunit/regress/regress-1172.js b/test/mjsunit/regress/regress-1172.js new file mode 100644 index 0000000..f5ef67b --- /dev/null +++ b/test/mjsunit/regress/regress-1172.js @@ -0,0 +1,39 @@ +// Copyright 2011 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. + +// Check that 'constructor' property is forcefully installed on +// function's prototype even in the presence of JS accessors. + +// Note: no setters would lead to runtime exception if we ever attempt +// to use JS accessors to set 'constructor' property. +Object.prototype.__defineGetter__('constructor', function() { throw 42; }); + +function f() {} +assertSame(f, f.prototype.constructor); + +var o = new f(); +assertSame(f, o.constructor); -- 2.7.4