123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- package eval
- import (
- "fw/cp"
- "fw/cp/constant/enter"
- "fw/cp/node"
- "fw/rt2"
- "fw/rt2/context"
- "fw/rt2/frame"
- "fw/rt2/scope"
- "reflect"
- "ypk/assert"
- )
- import (
- "ypk/halt"
- )
- func BeginExpression(in IN) (out OUT) {
- switch e := in.IR.(type) {
- case node.ConstantNode:
- out = Now(getConst)
- case node.DyadicNode:
- out = Now(getDop)
- case node.MonadicNode:
- out = Now(getMop)
- case node.RangeNode:
- out = Now(getRange)
- case node.Designator:
- out = Now(BeginDesignator)
- default:
- halt.As(100, reflect.TypeOf(e))
- }
- return
- }
- func BeginDesignator(in IN) (out OUT) {
- switch e := in.IR.(type) {
- case node.VariableNode:
- out = Now(getVar)
- case node.ParameterNode:
- out = Now(getVarPar)
- case node.ProcedureNode:
- out = Now(getProc)
- case node.DerefNode:
- out = Now(getDeref)
- case node.FieldNode:
- out = Now(getField)
- case node.IndexNode:
- out = Now(getIndex)
- case node.GuardNode:
- out = Now(getGuard)
- default:
- halt.As(100, reflect.TypeOf(e))
- }
- return
- }
- func GetStrange(in IN, key interface{}, ss node.Node, next Do) (out OUT) {
- assert.For(ss != nil, 20)
- assert.For(key != nil, 21)
- switch ss.(type) {
- case node.IfNode:
- nf := rt2.New(ss)
- rt2.Push(nf, in.Frame)
- rt2.RegOf(in.Frame)[context.KEY] = key
- rt2.Assert(in.Frame, func(f frame.Frame, do frame.Condition) {
- v := rt2.RegOf(f)[key]
- do(v != nil, 1980)
- })
- return Later(func(IN) OUT {
- return Now(next)
- })
- default:
- halt.As(100, reflect.TypeOf(ss))
- }
- return
- }
- func GetExpression(in IN, key interface{}, expr node.Node, next Do) OUT {
- assert.For(expr != nil, 20)
- _, e_ok := expr.(node.Expression)
- _, d_ok := expr.(node.Designator)
- assert.For(e_ok || d_ok, 21, reflect.TypeOf(expr))
- assert.For(key != nil, 22)
- nf := rt2.New(expr)
- rt2.Push(nf, in.Frame)
- rt2.RegOf(in.Frame)[context.KEY] = key
- rt2.RegOf(in.Frame)[key] = nil
- rt2.Assert(in.Frame, func(f frame.Frame, do frame.Condition) {
- if _, call := expr.(node.CallNode); call {
- tmp := rt2.RegOf(in.Frame)[context.RETURN]
- if tmp != nil {
- tmp_id := cp.ID(cp.Some())
- rt2.RegOf(in.Frame)[key] = tmp_id
- rt2.ValueOf(in.Frame)[tmp_id] = tmp.(scope.Value)
- }
- }
- v := rt2.RegOf(f)[key]
- do(v != nil, 1961, key)
- })
- return Later(func(IN) OUT {
- return Now(next)
- })
- }
- func GetDesignator(in IN, key interface{}, design node.Node, next Do) OUT {
- assert.For(design != nil, 20)
- _, ok := design.(node.Designator)
- _, call := design.(node.CallNode)
- assert.For(ok || call, 21, reflect.TypeOf(design))
- assert.For(key != nil, 22)
- nf := rt2.New(design)
- rt2.Push(nf, in.Frame)
- rt2.RegOf(in.Frame)[context.KEY] = key
- rt2.RegOf(in.Frame)[key] = nil
- rt2.RegOf(in.Frame)[context.META] = nil
- rt2.Assert(in.Frame, func(f frame.Frame, do frame.Condition) {
- //do(m != nil, 1480, " no meta")
- if m := rt2.RegOf(f)[context.META]; m != nil {
- meta := m.(*Meta)
- if call {
- tmp := rt2.RegOf(in.Frame)[context.RETURN]
- assert.For(tmp != nil, 40)
- tmp_id := cp.ID(cp.Some())
- rt2.RegOf(in.Frame)[key] = tmp_id
- vr := tmp.(scope.Pointer).Copy()
- assert.For(vr != nil, 50)
- rt2.ValueOf(in.Frame)[tmp_id] = vr
- //meta.Scope = rt2.ScopeFor(in.Frame, vr.Id())
- //meta.Id = vr.Id()
- }
- do(meta.Scope != nil || meta.Rec != nil || meta.Arr != nil, 1380, " wrong meta")
- }
- v := rt2.RegOf(f)[key]
- do(v != nil, 1957, " no data for ", key)
- })
- return Later(func(IN) OUT {
- return Now(next)
- })
- }
- func BeginStrange(in IN) OUT {
- switch s := in.IR.(type) {
- case node.IfNode:
- return Now(doIf)
- default:
- halt.As(100, reflect.TypeOf(s))
- }
- panic(0)
- }
- func BeginStatement(in IN) (out OUT) {
- switch n := in.IR.(type) {
- case node.EnterNode:
- var tail Do
- tail = func(in IN) OUT {
- q := in.Frame.Root().Queue()
- if q != nil {
- in.Frame.Root().PushFor(q, nil)
- return Later(tail)
- } else {
- return Now(doEnter)
- }
- }
- out = Now(tail)
- case node.CompNode:
- next := n
- return Now(func(IN) OUT {
- right := func(in IN) OUT {
- if next.Right() != nil {
- rt2.Push(rt2.New(next.Right()), in.Frame)
- return Later(Tail(STOP))
- }
- return End()
- }
- left := func(in IN) OUT {
- if next.Left() != nil {
- rt2.Push(rt2.New(next.Left()), in.Frame)
- return Later(right)
- }
- return Now(right)
- }
- return Now(left)
- })
- case node.AssignNode:
- out = Now(doAssign)
- case node.CallNode:
- out = Now(doCall)
- case node.ReturnNode:
- out = Now(doReturn)
- case node.ConditionalNode:
- out = Now(doCondition)
- case node.WhileNode:
- out = Now(doWhile)
- case node.RepeatNode:
- out = Now(doRepeat)
- case node.LoopNode:
- out = Now(doLoop)
- case node.ExitNode:
- out = Now(doExit)
- case node.InitNode:
- out = Later(Tail(STOP))
- case node.TrapNode:
- out = Now(doTrap)
- case node.WithNode:
- out = Now(doWith)
- case node.CaseNode:
- out = Now(doCase)
- default:
- halt.As(100, reflect.TypeOf(n))
- }
- return
- }
- func EndStatement(in IN) (out OUT) {
- switch n := in.IR.(type) {
- case node.EnterNode:
- out = Now(func(in IN) OUT {
- if n.Enter() == enter.PROCEDURE {
- rt2.CallScope(in.Frame).Target().(scope.ScopeAllocator).Dispose(n)
- }
- if in.Parent != nil {
- par := rt2.RegOf(in.Parent)
- for k, v := range rt2.RegOf(in.Frame) {
- par[k] = v
- }
- val := rt2.ValueOf(in.Parent)
- for k, v := range rt2.ValueOf(in.Frame) {
- val[k] = v
- }
- }
- return End()
- })
- case node.CallNode:
- out = Now(func(in IN) OUT {
- next := n.Link()
- if next != nil {
- nf := rt2.New(next)
- if nf != nil {
- in.Frame.Root().PushFor(nf, in.Parent)
- }
- }
- if _, ok := n.(node.CallNode); ok {
- if in.Parent != nil {
- par := rt2.RegOf(in.Parent)
- for k, v := range rt2.RegOf(in.Frame) {
- par[k] = v
- }
- val := rt2.ValueOf(in.Parent)
- for k, v := range rt2.ValueOf(in.Frame) {
- val[k] = v
- }
- }
- }
- return End()
- })
- case node.AssignNode, node.ConditionalNode, node.WhileNode, node.RepeatNode, node.ExitNode, node.InitNode, node.WithNode, node.CaseNode, node.CompNode:
- out = Now(func(in IN) OUT {
- next := n.Link()
- if next != nil {
- nf := rt2.New(next)
- if nf != nil {
- in.Frame.Root().PushFor(nf, in.Parent)
- }
- }
- return End()
- })
- case node.ReturnNode, node.LoopNode: //do nothing
- default:
- halt.As(100, "statement with no end", reflect.TypeOf(n))
- }
- if out.Next != WRONG {
- return out.Do(in)
- }
- return End()
- }
|