Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Symbolize (0.31 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/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)
  5. 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)
  6. src/cmd/go/internal/test/test.go

    		return nil, nil, nil, err
    	}
    
    	pmain.Dir = testDir
    	pmain.Internal.OmitDebug = !testC && !testNeedBinary()
    	if pmain.ImportPath == "runtime.test" {
    		// The runtime package needs a symbolized binary for its tests.
    		// See runtime/unsafepoint_test.go.
    		pmain.Internal.OmitDebug = false
    	}
    
    	if !cfg.BuildN {
    		// writeTestmain writes _testmain.go,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    			newtextp = append(newtextp, ctxt.tramps[i:ntramps]...)
    
    			ctxt.Textp = newtextp
    		}
    	}
    
    	// Add MinLC size after etext, so it won't collide with the next symbol
    	// (which may confuse some symbolizer).
    	sect.Length = va - sect.Vaddr + uint64(ctxt.Arch.MinLC)
    	ldr.SetSymSect(etext, sect)
    	if ldr.SymValue(etext) == 0 {
    		// Set the address of the start/end symbols, if not already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top