summaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-13 10:20:51 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-13 10:20:51 -0200
commit62f3b7c472c6bb293b3622ebdcd1747dc0e19d61 (patch)
tree21ce5190fc614dbe8afe432229670f70b59dffbf /ldebug.c
parentfb9be62f793240234ee3cedd29678b5103e3824d (diff)
downloadlua-github-62f3b7c472c6bb293b3622ebdcd1747dc0e19d61.tar.gz
detail
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/ldebug.c b/ldebug.c
index 037809a2..89b36f07 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
/*
-** $Id: ldebug.c,v 2.141 2017/11/07 17:20:42 roberto Exp roberto $
+** $Id: ldebug.c,v 2.142 2017/11/08 14:50:23 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
@@ -754,15 +754,16 @@ void luaG_traceexec (lua_State *L) {
luaD_hook(L, LUA_HOOKCOUNT, -1); /* call count hook */
if (mask & LUA_MASKLINE) {
Proto *p = ci_func(ci)->p;
- int npc = pcRel(ci->u.l.savedpc, p);
- if (npc == 0 || /* call linehook when enter a new function, */
- ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */
- changedline(p, pcRel(L->oldpc, p), npc)) { /* enter new line */
- int newline = luaG_getfuncline(p, npc); /* new line */
+ const Instruction *npc = ci->u.l.savedpc;
+ int npci = pcRel(npc, p);
+ if (npci == 0 || /* call linehook when enter a new function, */
+ npc <= L->oldpc || /* when jump back (loop), or when */
+ changedline(p, pcRel(L->oldpc, p), npci)) { /* enter new line */
+ int newline = luaG_getfuncline(p, npci); /* new line */
luaD_hook(L, LUA_HOOKLINE, newline); /* call line hook */
}
+ L->oldpc = npc;
}
- L->oldpc = ci->u.l.savedpc;
if (L->status == LUA_YIELD) { /* did hook yield? */
if (counthook)
L->hookcount = 1; /* undo decrement to zero */