Bug 794286 - ReconstructPcStack, Keep hidden stack depth only when following gotos. r=luke

This commit is contained in:
Nicolas B. Pierron 2012-09-28 15:56:29 -07:00
parent 33682dd25b
commit f85ae576fe
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,5 @@
for (var i = 0; i < 1; i++) {
let y
if (undefined) continue
undefined.e
}

View File

@ -6431,6 +6431,7 @@ ReconstructPCStack(JSContext *cx, JSScript *script, jsbytecode *target,
if (0 < jmpoff && pc + jmpoff <= target) {
pc += jmpoff;
oplen = 0;
/* Use the Hidden pc count if we follow the goto */
if (hpcdepth != unsigned(-1)) {
pcdepth = hpcdepth;
hpcdepth = unsigned(-1);
@ -6438,8 +6439,11 @@ ReconstructPCStack(JSContext *cx, JSScript *script, jsbytecode *target,
continue;
}
if (!script->hasTrynotes())
if (!script->hasTrynotes()) {
/* Use the normal pc count if continue after the goto */
hpcdepth = unsigned(-1);
continue;
}
/*
* If we do not follow a goto we look for another mean to continue