Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for symbolization (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/traceback.go

    					}
    				} else {
    					stop = printOneCgoTraceback(pc, commitFrame, &arg)
    					anySymbolized = true
    					if stop {
    						break
    					}
    				}
    			}
    			if anySymbolized {
    				// Free symbolization state.
    				arg.pc = 0
    				callCgoSymbolizer(&arg)
    			}
    			if stop {
    				return
    			}
    		}
    	}
    	return n, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top