Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findmoduledatap (0.15 sec)

  1. src/runtime/symtab.go

    		fi := (*funcinl)(unsafe.Pointer(fn))
    		return fi.startLine
    	}
    	return fn.funcInfo().startLine
    }
    
    // findmoduledatap looks up the moduledata for a PC.
    //
    // It is nosplit because it's part of the isgoexception
    // implementation.
    //
    //go:nosplit
    func findmoduledatap(pc uintptr) *moduledata {
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.minpc <= pc && pc < datap.maxpc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top