Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for dodata (0.1 sec)

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

    	ctxt.findfunctab(pclnState, containers)
    	bench.Start("dwarfGenerateDebugSyms")
    	dwarfGenerateDebugSyms(ctxt)
    	bench.Start("symtab")
    	symGroupType := ctxt.symtab(pclnState)
    	bench.Start("dodata")
    	ctxt.dodata(symGroupType)
    	bench.Start("address")
    	order := ctxt.address()
    	bench.Start("dwarfcompress")
    	dwarfcompress(ctxt)
    	bench.Start("layout")
    	filesize := ctxt.layout(order)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		}
    		n++
    	}
    
    	ctxt.xdefine("runtime.rodata", sym.SRODATA, int64(rodata.Vaddr))
    	ctxt.xdefine("runtime.erodata", sym.SRODATA, int64(rodata.Vaddr+rodata.Length))
    	ctxt.xdefine("runtime.types", sym.SRODATA, int64(types.Vaddr))
    	ctxt.xdefine("runtime.etypes", sym.SRODATA, int64(types.Vaddr+types.Length))
    
    	s := ldr.Lookup("runtime.gcdata", 0)
    	ldr.SetAttrLocal(s, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    			ml := newMachoLoad(ctxt.Arch, LC_DYLD_INFO_ONLY, 10)
    			ml.data[0] = uint32(linkoff)      // rebase off
    			ml.data[1] = uint32(s1)           // rebase size
    			ml.data[2] = uint32(linkoff + s1) // bind off
    			ml.data[3] = uint32(s2)           // bind size
    			ml.data[4] = 0                    // weak bind off
    			ml.data[5] = 0                    // weak bind size
    			ml.data[6] = 0                    // lazy bind off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    	if *flagBuildid != "" {
    		shstrtabAddstring(".note.go.buildid")
    	}
    	shstrtabAddstring(".elfdata")
    	shstrtabAddstring(".rodata")
    	// See the comment about data.rel.ro.FOO section names in data.go.
    	relro_prefix := ""
    	if ctxt.UseRelro() {
    		shstrtabAddstring(".data.rel.ro")
    		relro_prefix = ".data.rel.ro"
    	}
    	shstrtabAddstring(relro_prefix + ".typelink")
    	shstrtabAddstring(relro_prefix + ".itablink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/covdata/covdata.go

    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata [command]\n")
    	fmt.Fprintf(os.Stderr, `
    Commands are:
    
    textfmt     convert coverage data to textual format
    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    func        output coverage profile information for each function
    merge       merge data files together
    subtract    subtract one set of data files from another set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/sym/symkind.go

    var AbiSymKindToSymKind = [...]SymKind{
    	objabi.Sxxx:                    Sxxx,
    	objabi.STEXT:                   STEXT,
    	objabi.SRODATA:                 SRODATA,
    	objabi.SNOPTRDATA:              SNOPTRDATA,
    	objabi.SDATA:                   SDATA,
    	objabi.SBSS:                    SBSS,
    	objabi.SNOPTRBSS:               SNOPTRBSS,
    	objabi.STLSBSS:                 STLSBSS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pkg/controlplane/storageversionhashdata/data.go

    Alexander Zielenski <******@****.***> 1716482549 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/internal/coverage/rtcov/rtcov.go

    package rtcov
    
    import "unsafe"
    
    // This package contains types whose structure is shared between
    // the runtime package and the "runtime/coverage" implementation.
    
    // CovMetaBlob is a container for holding the meta-data symbol (an
    // RODATA variable) for an instrumented Go package. Here "p" points to
    // the symbol itself, "len" is the length of the sym in bytes, and
    // "hash" is an md5sum for the sym computed by the compiler. When
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/emitdata_test.go

    		return
    	}
    	args := []string{"tool", "covdata", "merge", "-pkg=runtime/coverage",
    		"-o", testGoCoverDir, "-i", gocoverdir}
    	t.Logf("up-merge of covdata from %s to %s", gocoverdir, testGoCoverDir)
    	t.Logf("executing: go %+v", args)
    	cmd := exec.Command(testenv.GoToolPath(t), args...)
    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Fatalf("covdata merge failed (%v): %s", err, b)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. cmd/data-scanner_test.go

    Krishnan Parthasarathi <******@****.***> 1714735138 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top