Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Symbolize (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/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: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/runtime/crash_cgo_test.go

    	default:
    		t.Skipf("not yet supported on %s", platform)
    	}
    	got := runTestProg(t, "testprogcgo", "CrashTraceback")
    	for i := 1; i <= 3; i++ {
    		if !strings.Contains(got, fmt.Sprintf("cgo symbolizer:%d", i)) {
    			t.Errorf("missing cgo symbolizer:%d", i)
    		}
    	}
    }
    
    func TestCgoCrashTracebackGo(t *testing.T) {
    	t.Parallel()
    	switch platform := runtime.GOOS + "/" + runtime.GOARCH; platform {
    	case "darwin/amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      }
    }
    
    void CopyStablehloModuleAttrs(ModuleOp stablehlo_module, XlaCallModuleOp op) {
      op->setAttr(kStablehloModuleAttrsAttrName,
                  stablehlo_module->getAttrDictionary());
    }
    
    // Symbolizes `called_index` attributes in custom all ops to `called_func`.
    LogicalResult SymbolizeCustomCallCalledIndex(
        ModuleOp module, llvm::ArrayRef<SymbolRefAttr> function_list) {
      WalkResult result =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto.go

    	// TODO: we set HasFunctions if all symbols from samples were symbolized (hasFuncs).
    	// Decide what to do about HasInlineFrames and HasLineNumbers.
    	// Also, another approach to handle the mapping entry with
    	// incomplete symbolization results is to duplicate the mapping
    	// entry (but with different Has* fields values) and use
    	// different entries for symbolized locations and unsymbolized locations.
    	if hasFuncs {
    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/tracestack.go

    		// produce incomplete results or crashes (hasCgoOnStack). Note that no
    		// cgo callback related crashes have been observed yet. The main
    		// motivation is to take advantage of a potentially registered cgo
    		// symbolizer.
    		pcBuf[0] = logicalStackSentinel
    		if getg() == gp {
    			nstk += callers(skip+1, pcBuf[1:])
    		} else if gp != nil {
    			nstk += gcallers(gp, skip, pcBuf[1:])
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    		})
    		if arg.more == 0 {
    			break
    		}
    		callCgoSymbolizer(&arg)
    	}
    
    	// No more frames for this PC. Tell the symbolizer we are done.
    	// We don't try to maintain a single cgoSymbolizerArg for the
    	// whole use of Frames, because there would be no good way to tell
    	// the symbolizer when we are done.
    	arg.pc = 0
    	callCgoSymbolizer(&arg)
    
    	return frames
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/runtime/debuglog.go

    			}
    		}
    		println()
    
    		// Move on to the next record.
    		s.begin = end
    		s.end = oldEnd
    		s.nextTick = s.peek()
    	}
    
    	printunlock()
    }
    
    // printDebugLogPC prints a single symbolized PC. If returnPC is true,
    // pc is a return PC that must first be converted to a call PC.
    func printDebugLogPC(pc uintptr, returnPC bool) {
    	fn := findfunc(pc)
    	if returnPC && (!fn.valid() || pc > fn.entry()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    			Location: sloc,
    		})
    	}
    
    	if err := parseAdditionalSections(s, p); err != nil {
    		return nil, err
    	}
    
    	cleanupDuplicateLocations(p)
    	return p, nil
    }
    
    // parseThreadSample parses a symbolized or unsymbolized stack trace.
    // Returns the first line after the traceback, the sample (or nil if
    // it hits a 'same-as-previous' marker) and an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top