Lines Matching full:ctxt
225 // Every Prog has a Ctxt field that defines various context, including the current LineHist.
226 // Progs should be allocated using ctxt.NewProg(), not new(Prog).
231 Ctxt *Link // linker context
769 func (ctxt *Link) Diag(format string, args ...interface{}) {
770 ctxt.Errors++
771 ctxt.DiagFunc(format, args...)
774 func (ctxt *Link) Logf(format string, args ...interface{}) {
775 fmt.Fprintf(ctxt.Bso, format, args...)
776 ctxt.Bso.Flush()
783 func (ctxt *Link) FixedFrameSize() int64 {
784 switch ctxt.Arch.Family {
790 return int64(4 * ctxt.Arch.PtrSize)
792 return int64(ctxt.Arch.PtrSize)