Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Symbolize (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top