Home | History | Annotate | Download | only in obj

Lines Matching refs:Prog

61 func (p *Prog) Line() string {
116 func (p *Prog) String() string {
118 return "<nil Prog>"
122 return "<Prog without ctxt>"
165 func (ctxt *Link) NewProg() *Prog {
166 var p *Prog
171 p = new(Prog) // should be the only call to this; all others should use ctxt.NewProg
179 s[i] = Prog{}
196 func Dconv(p *Prog, a *Addr) string {
230 str = fmt.Sprint(a.Val.(*Prog).Pc)