Bug 1067489 - IonMonkey: Make |this| recoverable. r=shu

This commit is contained in:
Nicolas B. Pierron
2014-09-25 19:12:55 +02:00
parent e7a155c020
commit 31e3c59a8f
6 changed files with 30 additions and 22 deletions

View File

@@ -6450,7 +6450,7 @@ js_DumpInterpreterFrame(JSContext *cx, InterpreterFrame *start)
fprintf(stderr, " current op: %s\n", js_CodeName[*pc]);
MaybeDumpObject("staticScope", i.script()->getStaticScope(pc));
}
MaybeDumpValue("this", i.thisv());
MaybeDumpValue("this", i.thisv(cx));
if (!i.isJit()) {
fprintf(stderr, " rval: ");
dumpValue(i.interpFrame()->returnValue());