Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for uf (0.16 sec)

  1. src/runtime/race.go

    func raceSymbolizeCode(ctx *symbolizeCodeContext) {
    	pc := ctx.pc
    	fi := findfunc(pc)
    	if fi.valid() {
    		u, uf := newInlineUnwinder(fi, pc)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && u.isInlined(uf) {
    				// Ignore wrappers, unless we're at the outermost frame of u.
    				// A non-inlined wrapper frame always means we have a physical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    			if more := skipOrAdd(retPC); !more {
    				break outer
    			}
    			continue
    		}
    
    		u, uf := newInlineUnwinder(fi, callPC)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && elideWrapperCalling(lastFuncID) {
    				// ignore wrappers
    			} else if more := skipOrAdd(uf.pc + 1); !more {
    				break outer
    			}
    			lastFuncID = sf.funcID
    		}
    	}
    	return n
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    	calleeID := abi.FuncIDNormal
    
    	// Remove pc from stk; we'll re-add it below.
    	stk = stk[:len(stk)-1]
    
    	for ; uf.valid(); uf = u.next(uf) {
    		funcID := u.srcFunc(uf).funcID
    		if funcID == abi.FuncIDWrapper && elideWrapperCalling(calleeID) {
    			// ignore wrappers
    		} else {
    			stk = append(stk, uf.pc+1)
    		}
    		calleeID = funcID
    	}
    
    	return stk
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. src/runtime/preempt.go

    		// It might be possible to preempt any assembly functions
    		// except the ones that have funcFlag_SPWRITE set in f.flag.
    		return false, 0
    	}
    	// Check the inner-most name
    	u, uf := newInlineUnwinder(f, pc)
    	name := u.srcFunc(uf).name()
    	if stringslite.HasPrefix(name, "runtime.") ||
    		stringslite.HasPrefix(name, "runtime/internal/") ||
    		stringslite.HasPrefix(name, "reflect.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top