diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-08-24 17:36:47 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-08-24 17:36:47 -0300 |
| commit | 997f11f54322883c3181225f29d101a597f31730 (patch) | |
| tree | 22628b0ca4632fea24e279bc8ea1cc103a15bcb5 | |
| parent | 02060b7a37d88d4e92cf64a008c0651eae432c12 (diff) | |
| download | lua-997f11f54322883c3181225f29d101a597f31730.tar.gz lua-997f11f54322883c3181225f29d101a597f31730.tar.bz2 lua-997f11f54322883c3181225f29d101a597f31730.zip | |
Bug: 'break' may not properly close variable in a 'for' loop
Function 'leaveblock' was generating "break" label before removing
variables from the closing block. If 'createlabel' created a 'close'
instruction (which it did when matching a goto/break that exited
the scope of an upvalue), that instruction would use the wrong level.
| -rw-r--r-- | lparser.c | 16 | ||||
| -rw-r--r-- | testes/locals.lua | 20 |
2 files changed, 28 insertions, 8 deletions
| @@ -674,19 +674,19 @@ static void leaveblock (FuncState *fs) { | |||
| 674 | LexState *ls = fs->ls; | 674 | LexState *ls = fs->ls; |
| 675 | int hasclose = 0; | 675 | int hasclose = 0; |
| 676 | int stklevel = reglevel(fs, bl->nactvar); /* level outside the block */ | 676 | int stklevel = reglevel(fs, bl->nactvar); /* level outside the block */ |
| 677 | if (bl->isloop) /* fix pending breaks? */ | 677 | removevars(fs, bl->nactvar); /* remove block locals */ |
| 678 | lua_assert(bl->nactvar == fs->nactvar); /* back to level on entry */ | ||
| 679 | if (bl->isloop) /* has to fix pending breaks? */ | ||
| 678 | hasclose = createlabel(ls, luaS_newliteral(ls->L, "break"), 0, 0); | 680 | hasclose = createlabel(ls, luaS_newliteral(ls->L, "break"), 0, 0); |
| 679 | if (!hasclose && bl->previous && bl->upval) | 681 | if (!hasclose && bl->previous && bl->upval) /* still need a 'close'? */ |
| 680 | luaK_codeABC(fs, OP_CLOSE, stklevel, 0, 0); | 682 | luaK_codeABC(fs, OP_CLOSE, stklevel, 0, 0); |
| 681 | fs->bl = bl->previous; | ||
| 682 | removevars(fs, bl->nactvar); | ||
| 683 | lua_assert(bl->nactvar == fs->nactvar); | ||
| 684 | fs->freereg = stklevel; /* free registers */ | 683 | fs->freereg = stklevel; /* free registers */ |
| 685 | ls->dyd->label.n = bl->firstlabel; /* remove local labels */ | 684 | ls->dyd->label.n = bl->firstlabel; /* remove local labels */ |
| 686 | if (bl->previous) /* inner block? */ | 685 | fs->bl = bl->previous; /* current block now is previous one */ |
| 687 | movegotosout(fs, bl); /* update pending gotos to outer block */ | 686 | if (bl->previous) /* was it a nested block? */ |
| 687 | movegotosout(fs, bl); /* update pending gotos to enclosing block */ | ||
| 688 | else { | 688 | else { |
| 689 | if (bl->firstgoto < ls->dyd->gt.n) /* pending gotos in outer block? */ | 689 | if (bl->firstgoto < ls->dyd->gt.n) /* still pending gotos? */ |
| 690 | undefgoto(ls, &ls->dyd->gt.arr[bl->firstgoto]); /* error */ | 690 | undefgoto(ls, &ls->dyd->gt.arr[bl->firstgoto]); /* error */ |
| 691 | } | 691 | } |
| 692 | } | 692 | } |
diff --git a/testes/locals.lua b/testes/locals.lua index ddb75054..d50beaa5 100644 --- a/testes/locals.lua +++ b/testes/locals.lua | |||
| @@ -360,6 +360,26 @@ do | |||
| 360 | end | 360 | end |
| 361 | 361 | ||
| 362 | 362 | ||
| 363 | do | ||
| 364 | -- bug in 5.4.4: 'break' may generate wrong 'close' instruction when | ||
| 365 | -- leaving a loop block. | ||
| 366 | |||
| 367 | local closed = false | ||
| 368 | |||
| 369 | local o1 = setmetatable({}, {__close=function() closed = true end}) | ||
| 370 | |||
| 371 | local function test() | ||
| 372 | for k, v in next, {}, nil, o1 do | ||
| 373 | local function f() return k end -- create an upvalue | ||
| 374 | break | ||
| 375 | end | ||
| 376 | assert(closed) | ||
| 377 | end | ||
| 378 | |||
| 379 | test() | ||
| 380 | end | ||
| 381 | |||
| 382 | |||
| 363 | do print("testing errors in __close") | 383 | do print("testing errors in __close") |
| 364 | 384 | ||
| 365 | -- original error is in __close | 385 | -- original error is in __close |
