Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for symbolization (0.18 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    				continue
    			}
    			s.UI.PrintErr("ignoring unrecognized symbolization option: " + mode)
    			s.UI.PrintErr("expecting -symbolize=[local|fastlocal|remote|none][:force][:demangle=[none|full|templates|default]")
    		}
    	}
    
    	var err error
    	if local {
    		// Symbolize locally using binutils.
    		if err = localSymbolize(p, fast, force, s.Obj, s.UI); err != nil {
    			s.UI.PrintErr("local symbolization: " + err.Error())
    		}
    	}
    	if remote {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	"      none                  Do not attempt symbolization\n" +
    	"      local                 Examine only local binaries\n" +
    	"      fastlocal             Only get function names from local binaries\n" +
    	"      remote                Do not examine local binaries\n" +
    	"      force                 Force re-symbolization\n" +
    	"    Binary                  Local path or build id of binary for symbolization\n"
    
    var usageMsgVars = "\n\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		if key == "" {
    			// If there is no build id or source file, use the source as the
    			// mapping file. This will enable remote symbolization for this
    			// mapping, in particular for Go profiles on the legacy format.
    			// The source is reset back to empty string by unsourceMapping
    			// which is called after symbolization is finished.
    			m.File = source
    			key = source
    		}
    		ms[key] = append(ms[key], src)
    	}
    	return ms
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto.go

    	funcs symbolizeFlag
    	fake  bool // map entry was faked; /proc/self/maps wasn't available
    }
    
    // symbolizeFlag keeps track of symbolization result.
    //
    //	0                  : no symbol lookup was performed
    //	1<<0 (lookupTried) : symbol lookup was performed
    //	1<<1 (lookupFailed): symbol lookup was performed but failed
    type symbolizeFlag uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto_test.go

    			}
    
    			for _, m := range prof.Mapping {
    				if miss[m] && m.HasFunctions {
    					t.Errorf("mapping %+v has HasFunctions=true, but contains locations with failed symbolization", m)
    					continue
    				}
    				if !miss[m] && hit[m] && !m.HasFunctions {
    					t.Errorf("mapping %+v has HasFunctions=false, but all referenced locations from this lapping were symbolized successfully", m)
    					continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	addr2line           string
    	addr2lineFound      bool
    	nm                  string
    	nmFound             bool
    	objdump             string
    	objdumpFound        bool
    	isLLVMObjdump       bool
    
    	// if fast, perform symbolization using nm (symbol names only),
    	// instead of file-line detail from the slower addr2line.
    	fast bool
    }
    
    // get returns the current representation for bu, initializing it if necessary.
    func (bu *Binutils) get() *binrep {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    				// more small program segments that fit on the same page, and a
    				// segment other than the last one includes uninitialized data, or
    				// if the debug binary used for symbolization is stripped of some
    				// sections, so segment file sizes are smaller than memory sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	HasInlineFrames bool
    
    	fileX    int64
    	buildIDX int64
    
    	// Name of the kernel relocation symbol ("_text" or "_stext"), extracted from File.
    	// For linux kernel mappings generated by some tools, correct symbolization depends
    	// on knowing which of the two possible relocation symbols was used for `Start`.
    	// This is given to us as a suffix in `File` (e.g. "[kernel.kallsyms]_stext").
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/runtime/crash_test.go

    	output := runTestProg(t, "testprog", "BadTraceback")
    	for _, want := range []string{
    		"unexpected return pc",
    		"called from 0xbad",
    		"00000bad",    // Smashed LR in hex dump
    		"<main.badLR", // Symbolization in hex dump (badLR1 or badLR2)
    	} {
    		if !strings.Contains(output, want) {
    			t.Errorf("output does not contain %q:\n%s", want, output)
    		}
    	}
    }
    
    func TestTimePprof(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top