Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for debugLog (0.13 sec)

  1. internal/grid/connection.go

    		LastPongTime:     time.Unix(0, c.LastPong).UTC(),
    	}
    	m.ByDestination = map[string]madmin.RPCMetrics{
    		c.Remote: m,
    	}
    	return m
    }
    
    func (c *Connection) debugMsg(d debugMsg, args ...any) {
    	if debugPrint {
    		fmt.Println("debug: sending message", d, args)
    	}
    
    	switch d {
    	case debugShutdown:
    		c.updateState(StateShutdown)
    	case debugKillInbound:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/symtab.go

    			strings.HasSuffix(name, ".args_stackmap"),
    			strings.HasSuffix(name, ".stkobj"):
    			ldr.SetAttrNotInSymbolTable(s, true)
    			symGroupType[s] = sym.SGOFUNC
    			ldr.SetCarrierSym(s, symgofunc)
    			if ctxt.Debugvlog != 0 {
    				align := ldr.SymAlign(s)
    				liveness += (ldr.SymSize(s) + int64(align) - 1) &^ (int64(align) - 1)
    			}
    
    		// Note: Check for "type:" prefix after checking for .arginfo1 suffix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/objz.go

    		}
    
    		if p.To.Type == obj.TYPE_REG && p.To.Reg == REGSP && p.Spadj == 0 {
    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s\n", c.cursym.Name)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    // to be linker input or for reading that input into the linker.
    type Link struct {
    	Headtype           objabi.HeadType
    	Arch               *LinkArch
    	Debugasm           int
    	Debugvlog          bool
    	Debugpcln          string
    	Flag_shared        bool
    	Flag_dynlink       bool
    	Flag_linkshared    bool
    	Flag_optimize      bool
    	Flag_locationlists bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    		if p.To.Type == obj.TYPE_REG && p.To.Reg == REGSP && p.Spadj == 0 && p.As != ACMPU {
    			f := c.cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				c.cursym.Func().FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", c.cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. src/internal/fuzz/worker.go

    					canMinimize: false,
    					limit:       input.limit,
    				}
    				if result.crasherMsg == "" {
    					result.crasherMsg = err.Error()
    				}
    			}
    			if shouldPrintDebugInfo() {
    				w.coordinator.debugLogf(
    					"input minimized, id: %s, original id: %s, crasher: %t, originally crasher: %t, minimizing took: %s",
    					result.entry.Path,
    					input.entry.Path,
    					result.crasherMsg != "",
    					input.crasherMsg != "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/obj6.go

    			if p.To.Type == obj.TYPE_REG && p.To.Reg == REG_SP && p.As != ACMPL && p.As != ACMPQ {
    				f := cursym.Func()
    				if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    					f.FuncFlag |= abi.FuncFlagSPWrite
    					if ctxt.Debugvlog || !ctxt.IsAsm {
    						ctxt.Logf("auto-SPWRITE: %s %v\n", cursym.Name, p)
    						if !ctxt.IsAsm {
    							ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    							ctxt.DiagFlush()
    							log.Fatalf("bad SPWRITE")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    			if ldr.AttrReachable(s) {
    				putaixsym(ctxt, s, UndefinedSym)
    			}
    		}
    	}
    
    	for _, s := range ctxt.Textp {
    		putaixsym(ctxt, s, TextSym)
    	}
    
    	if ctxt.Debugvlog != 0 {
    		ctxt.Logf("symsize = %d\n", uint32(symSize))
    	}
    	xfile.updatePreviousFile(ctxt, true)
    }
    
    func (f *xcoffFile) genDynSym(ctxt *Link) {
    	ldr := ctxt.loader
    	var dynsyms []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    				}
    			}
    			n++
    		}
    	}
    
    	ldr.SetSymValue(s, 0)
    	for sub := s; sub != 0; sub = ldr.SubSym(sub) {
    		ldr.SetSymValue(sub, ldr.SymValue(sub)+int64(va))
    		if ctxt.Debugvlog > 2 {
    			fmt.Println("assign text address:", ldr.SymName(sub), ldr.SymValue(sub))
    		}
    	}
    
    	va += funcsize
    
    	return sect, n, va
    }
    
    func resetAddress(ctxt *Link, s loader.Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    			}
    		}
    
    		if p.To.Type == obj.TYPE_REG && p.To.Reg == REGSP && p.Spadj == 0 {
    			f := cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				f.FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top