зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1114981 - IonMonkey: Don't increase the return typeset during inlining, r=jandem
This commit is contained in:
Родитель
c83863cefe
Коммит
976feb4d50
|
@ -4446,7 +4446,18 @@ IonBuilder::inlineScriptedCall(CallInfo &callInfo, JSFunction *target)
|
|||
if (!returnBlock->initEntrySlots(alloc()))
|
||||
return false;
|
||||
|
||||
return setCurrentAndSpecializePhis(returnBlock);
|
||||
if (!setCurrentAndSpecializePhis(returnBlock))
|
||||
return false;
|
||||
|
||||
// Improve return types with observed typeset, except for Setters.
|
||||
// Setters return their argument, not whatever value is returned.
|
||||
if (!callInfo.isSetter()) {
|
||||
types::TemporaryTypeSet *types = bytecodeTypes(pc);
|
||||
if (!pushTypeBarrier(retvalDefn, types, BarrierKind::TypeSet))
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
MDefinition *
|
||||
|
|
Загрузка…
Ссылка в новой задаче