forked from TrueCloudLab/neoneo-go
compiler: manage variables in a separate varScope struct
Abstract var scope management from the funcScope.
This commit is contained in:
parent
8065114da6
commit
1ee4acbdbc
3 changed files with 72 additions and 20 deletions
|
@ -166,10 +166,9 @@ func (c *codegen) emitStoreStructField(i int) {
|
||||||
// according to current scope.
|
// according to current scope.
|
||||||
func (c *codegen) getVarIndex(name string) (varType, int) {
|
func (c *codegen) getVarIndex(name string) (varType, int) {
|
||||||
if c.scope != nil {
|
if c.scope != nil {
|
||||||
if i, ok := c.scope.arguments[name]; ok {
|
vt, val := c.scope.vars.getVarIndex(name)
|
||||||
return varArgument, i
|
if val >= 0 {
|
||||||
} else if i, ok := c.scope.locals[name]; ok {
|
return vt, val
|
||||||
return varLocal, i
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if i, ok := c.globals[name]; ok {
|
if i, ok := c.globals[name]; ok {
|
||||||
|
@ -311,6 +310,9 @@ func (c *codegen) convertFuncDecl(file ast.Node, decl *ast.FuncDecl) {
|
||||||
emit.Instruction(c.prog.BinWriter, opcode.INITSLOT, []byte{byte(sizeLoc), byte(sizeArg)})
|
emit.Instruction(c.prog.BinWriter, opcode.INITSLOT, []byte{byte(sizeLoc), byte(sizeArg)})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
f.vars.newScope()
|
||||||
|
defer f.vars.dropScope()
|
||||||
|
|
||||||
// We need to handle methods, which in Go, is just syntactic sugar.
|
// We need to handle methods, which in Go, is just syntactic sugar.
|
||||||
// The method receiver will be passed in as first argument.
|
// The method receiver will be passed in as first argument.
|
||||||
// We check if this declaration has a receiver and load it into scope.
|
// We check if this declaration has a receiver and load it into scope.
|
||||||
|
|
|
@ -31,8 +31,7 @@ type funcScope struct {
|
||||||
variables []string
|
variables []string
|
||||||
|
|
||||||
// Local variables
|
// Local variables
|
||||||
locals map[string]int
|
vars varScope
|
||||||
arguments map[string]int
|
|
||||||
|
|
||||||
// voidCalls are basically functions that return their value
|
// voidCalls are basically functions that return their value
|
||||||
// into nothing. The stack has their return value but there
|
// into nothing. The stack has their return value but there
|
||||||
|
@ -55,8 +54,7 @@ func newFuncScope(decl *ast.FuncDecl, label uint16) *funcScope {
|
||||||
name: name,
|
name: name,
|
||||||
decl: decl,
|
decl: decl,
|
||||||
label: label,
|
label: label,
|
||||||
locals: map[string]int{},
|
vars: newVarScope(),
|
||||||
arguments: map[string]int{},
|
|
||||||
voidCalls: map[*ast.CallExpr]bool{},
|
voidCalls: map[*ast.CallExpr]bool{},
|
||||||
variables: []string{},
|
variables: []string{},
|
||||||
i: -1,
|
i: -1,
|
||||||
|
@ -139,18 +137,7 @@ func (c *funcScope) stackSize() int64 {
|
||||||
|
|
||||||
// newVariable creates a new local variable or argument in the scope of the function.
|
// newVariable creates a new local variable or argument in the scope of the function.
|
||||||
func (c *funcScope) newVariable(t varType, name string) int {
|
func (c *funcScope) newVariable(t varType, name string) int {
|
||||||
var n int
|
return c.vars.newVariable(t, name)
|
||||||
switch t {
|
|
||||||
case varLocal:
|
|
||||||
n = len(c.locals)
|
|
||||||
c.locals[name] = n
|
|
||||||
case varArgument:
|
|
||||||
n = len(c.arguments)
|
|
||||||
c.arguments[name] = n
|
|
||||||
default:
|
|
||||||
panic("invalid type")
|
|
||||||
}
|
|
||||||
return n
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// newLocal creates a new local variable into the scope of the function.
|
// newLocal creates a new local variable into the scope of the function.
|
||||||
|
|
63
pkg/compiler/vars.go
Normal file
63
pkg/compiler/vars.go
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
package compiler
|
||||||
|
|
||||||
|
type varScope struct {
|
||||||
|
localsCnt int
|
||||||
|
argCnt int
|
||||||
|
arguments map[string]int
|
||||||
|
locals []map[string]int
|
||||||
|
}
|
||||||
|
|
||||||
|
func newVarScope() varScope {
|
||||||
|
return varScope{
|
||||||
|
arguments: make(map[string]int),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *varScope) newScope() {
|
||||||
|
c.locals = append(c.locals, map[string]int{})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *varScope) dropScope() {
|
||||||
|
c.locals = c.locals[:len(c.locals)-1]
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *varScope) getVarIndex(name string) (varType, int) {
|
||||||
|
for i := len(c.locals) - 1; i >= 0; i-- {
|
||||||
|
if i, ok := c.locals[i][name]; ok {
|
||||||
|
return varLocal, i
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if i, ok := c.arguments[name]; ok {
|
||||||
|
return varArgument, i
|
||||||
|
}
|
||||||
|
return 0, -1
|
||||||
|
}
|
||||||
|
|
||||||
|
// newVariable creates a new local variable or argument in the scope of the function.
|
||||||
|
func (c *varScope) newVariable(t varType, name string) int {
|
||||||
|
var n int
|
||||||
|
switch t {
|
||||||
|
case varLocal:
|
||||||
|
return c.newLocal(name)
|
||||||
|
case varArgument:
|
||||||
|
_, ok := c.arguments[name]
|
||||||
|
if ok {
|
||||||
|
panic("argument is already allocated")
|
||||||
|
}
|
||||||
|
n = len(c.arguments)
|
||||||
|
c.arguments[name] = n
|
||||||
|
default:
|
||||||
|
panic("invalid type")
|
||||||
|
}
|
||||||
|
return n
|
||||||
|
}
|
||||||
|
|
||||||
|
// newLocal creates a new local variable in the current scope.
|
||||||
|
func (c *varScope) newLocal(name string) int {
|
||||||
|
idx := len(c.locals) - 1
|
||||||
|
m := c.locals[idx]
|
||||||
|
m[name] = c.localsCnt
|
||||||
|
c.localsCnt++
|
||||||
|
c.locals[idx] = m
|
||||||
|
return c.localsCnt - 1
|
||||||
|
}
|
Loading…
Reference in a new issue