Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dwarfGenerateDebugSyms (0.17 sec)

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

    	bench.Start("pclntab")
    	containers := ctxt.findContainerSyms()
    	pclnState := ctxt.pclntab(containers)
    	bench.Start("findfunctab")
    	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()
    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/dwarf.go

    // dwarfGenerateDebugInfo generated debug info entries for all types,
    // variables and functions in the program.
    // Along with dwarfGenerateDebugSyms they are the two main entry points into
    // dwarf generation: dwarfGenerateDebugInfo does all the work that should be
    // done before symbol names are mangled while dwarfGenerateDebugSyms does
    // all the work that can only be done after addresses have been assigned to
    // text symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top