Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for debug_loc (0.18 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/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)
  3. src/cmd/link/internal/ld/main.go

    	objabi.Flagcount("v", "print link trace", &ctxt.Debugvlog)
    	objabi.Flagfn1("importcfg", "read import configuration from `file`", ctxt.readImportCfg)
    
    	objabi.Flagparse(usage)
    	telemetry.CountFlags("link/flag:", *flag.CommandLine)
    
    	if ctxt.Debugvlog > 0 {
    		// dump symbol info on crash
    		defer func() { ctxt.loader.Dump() }()
    	}
    	if ctxt.Debugvlog > 1 {
    		// dump symbol info on error
    		AtExit(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/deadcode.go

    					continue
    				}
    				m := d.decodeIfaceMethod(d.ldr, d.ctxt.Arch, rs, r.Add())
    				if d.ctxt.Debugvlog > 1 {
    					d.ctxt.Logf("reached iface method: %v\n", m)
    				}
    				d.ifaceMethod[m] = true
    				continue
    			case objabi.R_USENAMEDMETHOD:
    				name := d.decodeGenericIfaceMethod(d.ldr, r.Sym())
    				if d.ctxt.Debugvlog > 1 {
    					d.ctxt.Logf("reached generic iface method: %s\n", name)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/runtime/lockrank_on.go

    // split on entry to lock2() would record stack split locks as taken after l,
    // even though l is not actually locked yet.
    func lockWithRank(l *mutex, rank lockRank) {
    	if l == &debuglock || l == &paniclk || l == &raceFiniLock {
    		// debuglock is only used for println/printlock(). Don't do lock
    		// rank recording for it, since print/println are used when
    		// printing out a lock ordering problem below.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/obj.go

    			}
    
    			if autosize&4 != 0 {
    				autosize += 4
    			}
    
    			if autosize == 0 && c.cursym.Func().Text.Mark&LEAF == 0 {
    				if c.cursym.Func().Text.From.Sym.NoSplit() {
    					if ctxt.Debugvlog {
    						ctxt.Logf("save suppressed in: %s\n", c.cursym.Name)
    					}
    
    					c.cursym.Func().Text.Mark |= LEAF
    				}
    			}
    
    			p.To.Offset = int64(autosize) - ctxt.Arch.FixedFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. src/net/rpc/server.go

    	resp.ServiceMethod = req.ServiceMethod
    	if errmsg != "" {
    		resp.Error = errmsg
    		reply = invalidRequest
    	}
    	resp.Seq = req.Seq
    	sending.Lock()
    	err := codec.WriteResponse(resp, reply)
    	if debugLog && err != nil {
    		log.Println("rpc: writing response:", err)
    	}
    	sending.Unlock()
    	server.freeResponse(resp)
    }
    
    func (m *methodType) NumCalls() (n uint) {
    	m.Lock()
    	n = m.numCalls
    	m.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/obj5.go

    			}
    
    			if autosize == 0 && cursym.Func().Text.Mark&LEAF == 0 {
    				// A very few functions that do not return to their caller
    				// are not identified as leaves but still have no frame.
    				if ctxt.Debugvlog {
    					ctxt.Logf("save suppressed in: %s\n", cursym.Name)
    				}
    
    				cursym.Func().Text.Mark |= LEAF
    			}
    
    			// FP offsets need an updated p.To.Offset.
    			p.To.Offset = int64(autosize) - 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/plist.go

    	// Build list of symbols, and assign instructions to lists.
    	var curtext *LSym
    	var etext *Prog
    	var text []*LSym
    
    	var plink *Prog
    	for p := plist.Firstpc; p != nil; p = plink {
    		if ctxt.Debugasm > 0 && ctxt.Debugvlog {
    			fmt.Printf("obj: %v\n", p)
    		}
    		plink = p.Link
    		p.Link = nil
    
    		switch p.As {
    		case AEND:
    			continue
    
    		case ATEXT:
    			s := p.From.Sym
    			if s == nil {
    				// func _() { }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/obj7.go

    				p.To.Offset = int64(c.autosize) | int64(extrasize)<<32
    			} else {
    				// NOFRAME
    				p.To.Offset = 0
    			}
    
    			if c.autosize == 0 && c.cursym.Func().Text.Mark&LEAF == 0 {
    				if c.ctxt.Debugvlog {
    					c.ctxt.Logf("save suppressed in: %s\n", c.cursym.Func().Text.From.Sym.Name)
    				}
    				c.cursym.Func().Text.Mark |= LEAF
    			}
    
    			if cursym.Func().Text.Mark&LEAF != 0 {
    				cursym.Set(obj.AttrLeaf, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top