mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 865626 - Disallow generating extra barrier instructions when compiling Array.push, r=dvander.
This commit is contained in:
parent
0282df309d
commit
1d9b09d62c
@ -311,10 +311,9 @@ IonBuilder::inlineArrayPush(CallInfo &callInfo)
|
||||
|
||||
MDefinition *obj = callInfo.thisArg();
|
||||
MDefinition *value = callInfo.getArg(0);
|
||||
if (PropertyWriteNeedsTypeBarrier(cx, current, &obj, NULL, &value))
|
||||
return InliningStatus_NotInlined;
|
||||
if (obj != callInfo.thisArg() || value != callInfo.getArg(0))
|
||||
if (PropertyWriteNeedsTypeBarrier(cx, current, &obj, NULL, &value, /* canModify = */ false))
|
||||
return InliningStatus_NotInlined;
|
||||
JS_ASSERT(obj == callInfo.thisArg() && value == callInfo.getArg(0));
|
||||
|
||||
if (getInlineReturnType() != MIRType_Int32)
|
||||
return InliningStatus_NotInlined;
|
||||
@ -926,7 +925,7 @@ IonBuilder::inlineUnsafeSetElement(CallInfo &callInfo)
|
||||
MDefinition *id = callInfo.getArg(idxi);
|
||||
MDefinition *elem = callInfo.getArg(elemi);
|
||||
|
||||
if (PropertyWriteNeedsTypeBarrier(cx, current, &obj, NULL, &elem))
|
||||
if (PropertyWriteNeedsTypeBarrier(cx, current, &obj, NULL, &elem, /* canModify = */ false))
|
||||
return InliningStatus_NotInlined;
|
||||
|
||||
int arrayType;
|
||||
|
@ -2493,7 +2493,7 @@ AddTypeGuard(MBasicBlock *current, MDefinition *obj, types::TypeObject *typeObje
|
||||
|
||||
bool
|
||||
ion::PropertyWriteNeedsTypeBarrier(JSContext *cx, MBasicBlock *current, MDefinition **pobj,
|
||||
PropertyName *name, MDefinition **pvalue)
|
||||
PropertyName *name, MDefinition **pvalue, bool canModify)
|
||||
{
|
||||
// If any value being written is not reflected in the type information for
|
||||
// objects which obj could represent, a type barrier is needed when writing
|
||||
@ -2535,6 +2535,12 @@ ion::PropertyWriteNeedsTypeBarrier(JSContext *cx, MBasicBlock *current, MDefinit
|
||||
break;
|
||||
}
|
||||
if (!TypeSetIncludes(property, (*pvalue)->type(), (*pvalue)->resultTypeSet())) {
|
||||
// Either pobj or pvalue needs to be modified to filter out the
|
||||
// types which the value could have but are not in the property,
|
||||
// or a VM call is required. A VM call is always required if pobj
|
||||
// and pvalue cannot be modified.
|
||||
if (!canModify)
|
||||
return true;
|
||||
success = TryAddTypeBarrierForWrite(cx, current, types, id, pvalue);
|
||||
break;
|
||||
}
|
||||
|
@ -7725,7 +7725,8 @@ bool PropertyReadNeedsTypeBarrier(JSContext *cx, MDefinition *obj, PropertyName
|
||||
types::StackTypeSet *observed);
|
||||
bool PropertyReadIsIdempotent(JSContext *cx, MDefinition *obj, PropertyName *name);
|
||||
bool PropertyWriteNeedsTypeBarrier(JSContext *cx, MBasicBlock *current, MDefinition **pobj,
|
||||
PropertyName *name, MDefinition **pvalue);
|
||||
PropertyName *name, MDefinition **pvalue,
|
||||
bool canModify = true);
|
||||
|
||||
} // namespace ion
|
||||
} // namespace js
|
||||
|
Loading…
Reference in New Issue
Block a user