Home | History | Annotate | Download | only in gc

Lines Matching defs:lookupSymbol

102 			aux := s.lookupSymbol(n, &ssa.ArgSymbol{Typ: n.Type, Node: n})
1455 aux := s.lookupSymbol(n, &ssa.ExternSymbol{Typ: n.Type, Sym: n.Left.Sym})
3059 // lookupSymbol is used to retrieve the symbol (Extern, Arg or Auto) used for a particular node.
3062 func (s *state) lookupSymbol(n *Node, sym interface{}) interface{} {
3091 aux := s.lookupSymbol(n, &ssa.ExternSymbol{Typ: n.Type, Sym: n.Sym})
3106 aux := s.lookupSymbol(n, &ssa.ArgSymbol{Typ: n.Type, Node: n})
3112 aux := s.lookupSymbol(n, &ssa.AutoSymbol{Typ: n.Type, Node: n})
3117 aux := s.lookupSymbol(n, &ssa.ArgSymbol{Typ: n.Type, Node: n})