Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ldpkg (0.1 sec)

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

    // go-specific code shared across loaders (5l, 6l, 8l).
    
    // TODO:
    //	generate debugging section in binary.
    //	once the dust settles, try to move some code to
    //		libmach, so that other linkers and ar can share.
    
    func ldpkg(ctxt *Link, f *bio.Reader, lib *sym.Library, length int64, filename string) {
    	if *flagG {
    		return
    	}
    
    	if int64(int(length)) != length {
    		fmt.Fprintf(os.Stderr, "%s: too much pkg data in %s\n", os.Args[0], filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    					break
    				}
    			}
    			if !isLive {
    				// Skip this function.
    				i += coverage.FirstCtrOffset + int(nCtrs) - 1
    				continue
    			}
    
    			if s.debug {
    				if pkgId != dpkg {
    					dpkg = pkgId
    					fmt.Fprintf(os.Stderr, "\n=+= %d: pk=%d visit live fcn",
    						i, pkgId)
    				}
    				fmt.Fprintf(os.Stderr, " {i=%d F%d NC%d}", i, funcId, nCtrs)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top