Home | History | Annotate | Download | only in obj

Lines Matching refs:Func

20 type ProgAlloc func() *Prog
22 func Flushplist(ctxt *Link, plist *Plist, newprog ProgAlloc, myimportpath string) {
43 // func _() { }
54 if curtext == nil { // func _() {}
84 for p := s.Func.Text; p != nil; p = p.Link {
92 p := Appendp(s.Func.Text, newprog)
113 func (ctxt *Link) InitTextSym(s *LSym, flag int) {
115 // func _() { }
118 if s.Func != nil {
121 s.Func = new(FuncInfo)
122 if s.Func.Text != nil {
153 gcargs := &s.Func.GCArgs
156 gclocals := &s.Func.GCLocals
161 func (ctxt *Link) Globl(s *LSym, size int64, flag int) {