Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #514 : Fix compileRegAssignment cardinality #528

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions _glua-tests/issues.lua
Original file line number Diff line number Diff line change
Expand Up @@ -490,3 +490,22 @@ function test()
assert(b == nil)
end
test()

-- issue #514
function test()
local tbl = {foo = 42, bar = "baz"}
local iter = function(s,k)
k,_ = next(tbl, k)
return k
end
local seen1, seen2 = {}, {}
for item in iter do
seen1[item] = true
end
for item in iter do
seen2[item] = true
end
assert(seen1.foo and seen1.bar)
assert(seen2.foo and seen2.bar)
end
test()
17 changes: 8 additions & 9 deletions compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -812,20 +812,19 @@ func compileAssignStmt(context *funcContext, stmt *ast.AssignStmt) { // {{{
}
} // }}}

func compileRegAssignment(context *funcContext, names []string, exprs []ast.Expr, reg int, nvars int, line int) { // {{{
lennames := len(names)
func compileRegAssignment(context *funcContext, exprs []ast.Expr, reg int, nvars int, line int) { // {{{
lenexprs := len(exprs)
namesassigned := 0
ec := &expcontext{}

for namesassigned < lennames && namesassigned < lenexprs {
for namesassigned < nvars && namesassigned < lenexprs {
if isVarArgReturnExpr(exprs[namesassigned]) && (lenexprs-namesassigned-1) <= 0 {

varargopt := nvars - namesassigned
ecupdate(ec, ecVararg, reg, varargopt-1)
compileExpr(context, reg, exprs[namesassigned], ec)
reg += varargopt
namesassigned = lennames
namesassigned = nvars
} else {
ecupdate(ec, ecLocal, reg, 0)
compileExpr(context, reg, exprs[namesassigned], ec)
Expand All @@ -835,8 +834,8 @@ func compileRegAssignment(context *funcContext, names []string, exprs []ast.Expr
}

// extra left names
if lennames > namesassigned {
restleft := lennames - namesassigned - 1
if nvars > namesassigned {
restleft := nvars - namesassigned - 1
context.Code.AddLoadNil(reg, reg+restleft, line)
reg += restleft
}
Expand All @@ -857,12 +856,12 @@ func compileLocalAssignStmt(context *funcContext, stmt *ast.LocalAssignStmt) { /
if len(stmt.Names) == 1 && len(stmt.Exprs) == 1 {
if _, ok := stmt.Exprs[0].(*ast.FunctionExpr); ok {
context.RegisterLocalVar(stmt.Names[0])
compileRegAssignment(context, stmt.Names, stmt.Exprs, reg, len(stmt.Names), sline(stmt))
compileRegAssignment(context, stmt.Exprs, reg, len(stmt.Names), sline(stmt))
return
}
}

compileRegAssignment(context, stmt.Names, stmt.Exprs, reg, len(stmt.Names), sline(stmt))
compileRegAssignment(context, stmt.Exprs, reg, len(stmt.Names), sline(stmt))
for _, name := range stmt.Names {
context.RegisterLocalVar(name)
}
Expand Down Expand Up @@ -1100,7 +1099,7 @@ func compileGenericForStmt(context *funcContext, stmt *ast.GenericForStmt) { //
context.RegisterLocalVar("(for state)")
context.RegisterLocalVar("(for control)")

compileRegAssignment(context, stmt.Names, stmt.Exprs, context.RegTop()-3, 3, sline(stmt))
compileRegAssignment(context, stmt.Exprs, context.RegTop()-3, 3, sline(stmt))

code.AddASbx(OP_JMP, 0, fllabel, sline(stmt))

Expand Down