Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for debug_loc (0.14 sec)

  1. src/debug/pe/file_test.go

    			{".debug_line", 0, 0, 128, 1091, 1540, 0, 1, 0, 1108344832},
    			{".rdata", 0, 0, 16, 1219, 0, 0, 0, 0, 1076887616},
    			{".debug_frame", 0, 0, 52, 1235, 1550, 0, 2, 0, 1110441984},
    			{".debug_loc", 0, 0, 56, 1287, 0, 0, 0, 0, 1108344832},
    			{".debug_pubnames", 0, 0, 27, 1343, 1570, 0, 1, 0, 1108344832},
    			{".debug_pubtypes", 0, 0, 38, 1370, 1580, 0, 1, 0, 1108344832},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	d.synthesizeslicetypes(ctxt, dwtypes.Child)
    	d.synthesizemaptypes(ctxt, dwtypes.Child)
    	d.synthesizechantypes(ctxt, dwtypes.Child)
    }
    
    // dwarfGenerateDebugSyms constructs debug_line, debug_frame, and
    // debug_loc. It also writes out the debug_info section using symbols
    // generated in dwarfGenerateDebugInfo2.
    func dwarfGenerateDebugSyms(ctxt *Link) {
    	if !dwarfEnabled(ctxt) {
    		return
    	}
    	d := &dwctxt{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    		for j := 0; j < len(subSyms); j++ {
    			s := subSyms[j]
    			if ctxt.HeadType == objabi.Haix && curType == sym.SDWARFLOC {
    				// Update the size of .debug_loc for this symbol's
    				// package.
    				addDwsectCUSize(".debug_loc", ldr.SymPkg(s), uint64(ldr.SymSize(s)))
    			}
    		}
    		sect.Length = uint64(state.datsize) - sect.Vaddr
    		checkSectSize(sect)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	case ".debug_info":
    		return ".dwinfo", SSUBTYP_DWINFO
    	case ".debug_frame":
    		return ".dwframe", SSUBTYP_DWFRAME
    	case ".debug_line":
    		return ".dwline", SSUBTYP_DWLINE
    	case ".debug_loc":
    		return ".dwloc", SSUBTYP_DWLOC
    	case ".debug_pubnames":
    		return ".dwpbnms", SSUBTYP_DWPBNMS
    	case ".debug_pubtypes":
    		return ".dwpbtyp", SSUBTYP_DWPBTYP
    	case ".debug_ranges":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/debuglog.go

    // and use the methods on that to add values. The values will be
    // space-separated in the output (much like println).
    //
    // This facility can be enabled by passing -tags debuglog when
    // building. Without this tag, dlog calls compile to nothing.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/runtime/debuglog_test.go

    // TODO(austin): All of these tests are skipped if the debuglog build
    // tag isn't provided. That means we basically never test debuglog.
    // There are two potential ways around this:
    //
    // 1. Make these tests re-build the runtime test with the debuglog
    // build tag and re-invoke themselves.
    //
    // 2. Always build the whole debuglog infrastructure and depend on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. src/runtime/print.go

    	mp := getg().m
    	mp.locks++ // do not reschedule between printlock++ and lock(&debuglock).
    	mp.printlock++
    	if mp.printlock == 1 {
    		lock(&debuglock)
    	}
    	mp.locks-- // now we know debuglock is held and holding up mp.locks for us.
    }
    
    func printunlock() {
    	mp := getg().m
    	mp.printlock--
    	if mp.printlock == 0 {
    		unlock(&debuglock)
    	}
    }
    
    // write to goroutine-local buffer if diverting output,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/runtime/debuglog_off.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !debuglog
    
    package runtime
    
    const dlogEnabled = false
    
    type dlogPerM struct{}
    
    func getCachedDlogger() *dlogger {
    	return nil
    }
    
    func putCachedDlogger(l *dlogger) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 357 bytes
    - Viewed (0)
  9. .github/workflows/latest-changes.yml

            with:
              token: ${{ secrets.GITHUB_TOKEN }}
              latest_changes_file: docs/en/docs/release-notes.md
              latest_changes_header: '## Latest Changes'
              end_regex: '^## '
              debug_logs: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 14:57:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/config.go

    }
    
    // mustLinkExternal reports whether the program being linked requires
    // the external linker be used to complete the link.
    func mustLinkExternal(ctxt *Link) (res bool, reason string) {
    	if ctxt.Debugvlog > 1 {
    		defer func() {
    			if res {
    				ctxt.Logf("external linking is forced by: %s\n", reason)
    			}
    		}()
    	}
    
    	if platform.MustLinkExternal(buildcfg.GOOS, buildcfg.GOARCH, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top