Backed out changeset 750b497aea43 (bug 1089761) for rootanalysis orange on a CLOSED TREE

This commit is contained in:
Wes Kocher 2014-10-29 14:14:42 -07:00
Родитель e6a7c96ac8
Коммит 96904e1794
3 изменённых файлов: 3 добавлений и 20 удалений

Просмотреть файл

@ -1,14 +0,0 @@
var hits = 0;
for (var j = 0; j < 9; ++j) {
try {
(function() {
(function() {
eval("x")
let x
})()
})()
} catch (e) {
hits++;
}
}
assertEq(hits, 9);

Просмотреть файл

@ -57,9 +57,9 @@ inline void
CallObject::setAliasedLexicalsToThrowOnTouch(JSScript *script)
{
uint32_t aliasedLexicalBegin = script->bindings.aliasedBodyLevelLexicalBegin();
uint32_t aliasedLexicalEnd = slotSpan();
uint32_t aliasedLexicalEnd = numFixedSlots();
for (uint32_t slot = aliasedLexicalBegin; slot < aliasedLexicalEnd; slot++)
initSlot(slot, MagicValue(JS_UNINITIALIZED_LEXICAL));
initFixedSlot(slot, MagicValue(JS_UNINITIALIZED_LEXICAL));
}
template <AllowGC allowGC>

Просмотреть файл

@ -198,10 +198,6 @@ CallObject::createTemplateObject(JSContext *cx, HandleScript script, gc::Initial
if (!obj)
return nullptr;
// Set uninitialized lexicals even on template objects, as Ion will
// copy over the template object's slot values in the fast path.
obj->as<CallObject>().setAliasedLexicalsToThrowOnTouch(script);
return &obj->as<CallObject>();
}
@ -221,6 +217,7 @@ CallObject::create(JSContext *cx, HandleScript script, HandleObject enclosing, H
callobj->as<ScopeObject>().setEnclosingScope(enclosing);
callobj->initFixedSlot(CALLEE_SLOT, ObjectOrNullValue(callee));
callobj->setAliasedLexicalsToThrowOnTouch(script);
if (script->treatAsRunOnce()) {
Rooted<CallObject*> ncallobj(cx, callobj);