Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for symbolization (0.33 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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