зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1147660, part 3 - Rearrange NativeDefineProperty so that special cases are all dispensed with, and ES6 checks done, by the time we start thinking about how to update the object. r=efaust.
--HG-- extra : rebase_source : 89858f3cedbf4ca89bc3ed5ace302a4c4904c409
This commit is contained in:
Родитель
733f6abe90
Коммит
60213879bd
|
@ -1237,22 +1237,18 @@ js::NativeDefineProperty(ExclusiveContext* cx, HandleNativeObject obj, HandleId
|
|||
RootedShape shape(cx);
|
||||
RootedValue value(cx, desc.value());
|
||||
|
||||
/*
|
||||
* If defining a getter or setter, we must check for its counterpart and
|
||||
* update the attributes and property ops. A getter or setter is really
|
||||
* only half of a property.
|
||||
*/
|
||||
// If defining a getter or setter, we must check for its counterpart and
|
||||
// update the attributes and property ops. A getter or setter is really
|
||||
// only half of a property.
|
||||
if (desc.isAccessorDescriptor()) {
|
||||
if (!NativeLookupOwnProperty<CanGC>(cx, obj, id, &shape))
|
||||
return false;
|
||||
if (shape) {
|
||||
/*
|
||||
* If we are defining a getter whose setter was already defined, or
|
||||
* vice versa, finish the job via obj->changeProperty.
|
||||
*/
|
||||
// If we are defining a getter whose setter was already defined, or
|
||||
// vice versa, finish the job via obj->changeProperty.
|
||||
if (IsImplicitDenseOrTypedArrayElement(shape)) {
|
||||
if (IsAnyTypedArray(obj)) {
|
||||
/* Ignore getter/setter properties added to typed arrays. */
|
||||
// Ignore getter/setter properties added to typed arrays.
|
||||
return result.succeed();
|
||||
}
|
||||
if (!NativeObject::sparsifyDenseElement(cx, obj, JSID_TO_INT(id)))
|
||||
|
@ -1326,11 +1322,9 @@ js::NativeDefineProperty(ExclusiveContext* cx, HandleNativeObject obj, HandleId
|
|||
// Don't forget about arrays.
|
||||
if (IsImplicitDenseOrTypedArrayElement(shape)) {
|
||||
if (IsAnyTypedArray(obj)) {
|
||||
/*
|
||||
* Silently ignore attempts to change individual index attributes.
|
||||
* FIXME: Uses the same broken behavior as for accessors. This should
|
||||
* fail.
|
||||
*/
|
||||
// Silently ignore attempts to change individual index attributes.
|
||||
// FIXME: Uses the same broken behavior as for accessors. This should
|
||||
// fail.
|
||||
return result.succeed();
|
||||
}
|
||||
if (!NativeObject::sparsifyDenseElement(cx, obj, JSID_TO_INT(id)))
|
||||
|
@ -1365,41 +1359,12 @@ js::NativeDefineProperty(ExclusiveContext* cx, HandleNativeObject obj, HandleId
|
|||
}
|
||||
}
|
||||
|
||||
if (!PurgeScopeChain(cx, obj, id))
|
||||
return false;
|
||||
|
||||
// Dispense with any remaining JSPROP_IGNORE_* attributes. Any bits that
|
||||
// needed to be copied from an existing property have been copied by
|
||||
// now. Since we can never get here with JSPROP_IGNORE_VALUE relevant, just
|
||||
// clear it.
|
||||
attrs = ApplyOrDefaultAttributes(attrs) & ~JSPROP_IGNORE_VALUE;
|
||||
|
||||
MOZ_ASSERT(getter != JS_PropertyStub);
|
||||
MOZ_ASSERT(setter != JS_StrictPropertyStub);
|
||||
|
||||
/* Use dense storage for new indexed properties where possible. */
|
||||
if (JSID_IS_INT(id) &&
|
||||
!getter &&
|
||||
!setter &&
|
||||
attrs == JSPROP_ENUMERATE &&
|
||||
(!obj->isIndexed() || !obj->containsPure(id)) &&
|
||||
!IsAnyTypedArray(obj))
|
||||
{
|
||||
uint32_t index = JSID_TO_INT(id);
|
||||
if (WouldDefinePastNonwritableLength(obj, index))
|
||||
return result.fail(JSMSG_CANT_DEFINE_PAST_ARRAY_LENGTH);
|
||||
|
||||
NativeObject::EnsureDenseResult edResult = obj->ensureDenseElements(cx, index, 1);
|
||||
if (edResult == NativeObject::ED_FAILED)
|
||||
return false;
|
||||
if (edResult == NativeObject::ED_OK) {
|
||||
obj->setDenseElementWithType(cx, index, value);
|
||||
if (!CallAddPropertyHookDense(cx, obj, index, value))
|
||||
return false;
|
||||
return result.succeed();
|
||||
}
|
||||
}
|
||||
|
||||
if (obj->is<ArrayObject>()) {
|
||||
Rooted<ArrayObject*> arr(cx, &obj->as<ArrayObject>());
|
||||
if (id == NameToId(cx->names().length)) {
|
||||
|
@ -1413,15 +1378,42 @@ js::NativeDefineProperty(ExclusiveContext* cx, HandleNativeObject obj, HandleId
|
|||
if (WouldDefinePastNonwritableLength(obj, index))
|
||||
return result.fail(JSMSG_CANT_DEFINE_PAST_ARRAY_LENGTH);
|
||||
}
|
||||
}
|
||||
|
||||
// Don't define new indexed properties on typed arrays.
|
||||
if (IsAnyTypedArray(obj)) {
|
||||
} else if (IsAnyTypedArray(obj)) {
|
||||
// Don't define new indexed properties on typed arrays.
|
||||
uint64_t index;
|
||||
if (IsTypedArrayIndex(id, &index))
|
||||
return result.succeed();
|
||||
}
|
||||
|
||||
// At this point, no mutation has happened yet, but all ES6 error cases
|
||||
// have been dealt with.
|
||||
|
||||
MOZ_ASSERT(getter != JS_PropertyStub);
|
||||
MOZ_ASSERT(setter != JS_StrictPropertyStub);
|
||||
|
||||
if (!PurgeScopeChain(cx, obj, id))
|
||||
return false;
|
||||
|
||||
// Use dense storage for new indexed properties where possible.
|
||||
if (JSID_IS_INT(id) &&
|
||||
!getter &&
|
||||
!setter &&
|
||||
attrs == JSPROP_ENUMERATE &&
|
||||
(!obj->isIndexed() || !obj->containsPure(id)) &&
|
||||
!IsAnyTypedArray(obj))
|
||||
{
|
||||
uint32_t index = JSID_TO_INT(id);
|
||||
NativeObject::EnsureDenseResult edResult = obj->ensureDenseElements(cx, index, 1);
|
||||
if (edResult == NativeObject::ED_FAILED)
|
||||
return false;
|
||||
if (edResult == NativeObject::ED_OK) {
|
||||
obj->setDenseElementWithType(cx, index, value);
|
||||
if (!CallAddPropertyHookDense(cx, obj, index, value))
|
||||
return false;
|
||||
return result.succeed();
|
||||
}
|
||||
}
|
||||
|
||||
AutoRooterGetterSetter gsRoot(cx, attrs, &getter, &setter);
|
||||
shape = NativeObject::putProperty(cx, obj, id, getter, setter, SHAPE_INVALID_SLOT, attrs, 0);
|
||||
if (!shape)
|
||||
|
@ -1430,10 +1422,8 @@ js::NativeDefineProperty(ExclusiveContext* cx, HandleNativeObject obj, HandleId
|
|||
if (!UpdateShapeTypeAndValue(cx, obj, shape, value))
|
||||
return false;
|
||||
|
||||
/*
|
||||
* Clear any existing dense index after adding a sparse indexed property,
|
||||
* and investigate converting the object to dense indexes.
|
||||
*/
|
||||
// Clear any existing dense index after adding a sparse indexed property,
|
||||
// and investigate converting the object to dense indexes.
|
||||
if (JSID_IS_INT(id)) {
|
||||
if (!obj->maybeCopyElementsForWrite(cx))
|
||||
return false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче