Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Symbolize (0.19 sec)

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

    )
    
    // Symbolizer implements the plugin.Symbolize interface.
    type Symbolizer struct {
    	Obj       plugin.ObjTool
    	UI        plugin.UI
    	Transport http.RoundTripper
    }
    
    // test taps for dependency injection
    var symbolzSymbolize = symbolz.Symbolize
    var localSymbolize = doLocalSymbolize
    var demangleFunction = Demangle
    
    // Symbolize attempts to symbolize profile p. First uses binutils on
    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

    )
    
    type source struct {
    	Sources   []string
    	ExecName  string
    	BuildID   string
    	Base      []string
    	DiffBase  bool
    	Normalize bool
    
    	Seconds            int
    	Timeout            int
    	Symbolize          string
    	HTTPHostport       string
    	HTTPDisableBrowser bool
    	Comment            string
    }
    
    // parseFlags parses the command lines through the specified flags package
    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/runtime/pprof/proto_test.go

    					continue
    				}
    			}
    
    			if traceback == "Go+C" {
    				// The test code was arranged to have PCs from C and
    				// they are not symbolized.
    				// Check no Location containing those unsymbolized PCs contains multiple lines.
    				for i, loc := range prof.Location {
    					if !symbolized(loc) && len(loc.Line) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    			}
    		}
    		pbase.Scale(-1)
    		p, m, err = combineProfiles([]*profile.Profile{p, pbase}, []plugin.MappingSources{m, mbase})
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	// Symbolize the merged profile.
    	if err := o.Sym.Symbolize(s.Symbolize, m, p); err != nil {
    		return nil, err
    	}
    	p.RemoveUninteresting()
    	unsourceMappings(p)
    
    	if s.Comment != "" {
    		p.Comments = append(p.Comments, s.Comment)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    			name, path = ct[0], ct[1]
    		}
    		paths[name] = append(paths[name], path)
    	}
    
    	defaultPath := paths[""]
    	b.llvmSymbolizer, b.llvmSymbolizerFound = chooseExe([]string{"llvm-symbolizer"}, []string{}, append(paths["llvm-symbolizer"], defaultPath...))
    	b.addr2line, b.addr2lineFound = chooseExe([]string{"addr2line"}, []string{"gaddr2line"}, append(paths["addr2line"], defaultPath...))
    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/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    // parameterized with a flag implementation, fetch and symbolize
    // mechanisms.
    package driver
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/internal/report"
    	"github.com/google/pprof/profile"
    )
    
    // PProf acquires a profile, and symbolizes it using a profile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	}
    	switch compiler.name {
    	case "gcc":
    		return compiler.major >= 10
    	case "clang":
    		// TODO(65606): The clang toolchain on the LUCI builders is not built against
    		// zlib, the ASAN runtime can't actually symbolize its own stack trace. Once
    		// this is resolved, one way or another, switch this back to 'true'. We still
    		// have coverage from the 'gcc' case above.
    		if inLUCIBuild() {
    			return false
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/runtime/race.go

    				// take an outermost wrapper over nothing.
    				continue
    			}
    
    			name := sf.name()
    			file, line := u.fileLine(uf)
    			if line == 0 {
    				// Failure to symbolize
    				continue
    			}
    			ctx.fn = &bytes(name)[0] // assume NUL-terminated
    			ctx.line = uintptr(line)
    			ctx.file = &bytes(file)[0] // assume NUL-terminated
    			ctx.off = pc - fi.entry()
    			ctx.res = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	// Strips C++ namespace prefix from a C++ function / method name.
    	// NOTE: Make sure to keep the template parameters in the name. Normally,
    	// template parameters are stripped from the C++ names but when
    	// -symbolize=demangle=templates flag is used, they will not be.
    	// See tests for examples.
    	cppRegExp                = regexp.MustCompile(`^(?:[_a-zA-Z]\w*::)+(_*[A-Z]\w*::~?[_a-zA-Z]\w*(?:<.*>)?)`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. src/internal/profile/profile.go

    }
    
    // HasFunctions determines if all locations in this profile have
    // symbolized function information.
    func (p *Profile) HasFunctions() bool {
    	for _, l := range p.Location {
    		if l.Mapping == nil || !l.Mapping.HasFunctions {
    			return false
    		}
    	}
    	return true
    }
    
    // HasFileLines determines if all locations in this profile have
    // symbolized file and line number information.
    func (p *Profile) HasFileLines() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top