Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PcdataAuxs (0.14 sec)

  1. src/cmd/link/internal/loader/loader.go

    }
    
    func (l *Loader) Pcsp(i Sym) Sym { return l.aux1(i, goobj.AuxPcsp) }
    
    // Returns all aux symbols of per-PC data for symbol i.
    // tmp is a scratch space for the pcdata slice.
    func (l *Loader) PcdataAuxs(i Sym, tmp []Sym) (pcsp, pcfile, pcline, pcinline Sym, pcdata []Sym) {
    	pcdata = tmp[:0]
    	r, auxs := l.auxs(i)
    	for j := range auxs {
    		a := &auxs[j]
    		switch a.Type() {
    		case goobj.AuxPcsp:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top