Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for minpc (0.03 sec)

  1. src/runtime/plugin.go

    	}
    	return md.pluginpath, syms, md.inittasks, ""
    }
    
    func pluginftabverify(md *moduledata) {
    	badtable := false
    	for i := 0; i < len(md.ftab); i++ {
    		entry := md.textAddr(md.ftab[i].entryoff)
    		if md.minpc <= entry && entry <= md.maxpc {
    			continue
    		}
    
    		f := funcInfo{(*_func)(unsafe.Pointer(&md.pclntable[md.ftab[i].funcoff])), md}
    		name := funcname(f)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/internal/sys/arch.go

    	// predeclared "int", "uint", and "uintptr" types.
    	PtrSize int
    
    	// RegSize is the size in bytes of general purpose registers.
    	RegSize int
    
    	// MinLC is the minimum length of an instruction code.
    	MinLC int
    
    	// Alignment is maximum alignment required by the architecture
    	// for any (compiler-generated) load or store instruction.
    	// Loads or stores smaller than Alignment must be naturally aligned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/goobj.go

    	if uvdelta == 0 && !first {
    		return false
    	}
    	if uvdelta&1 != 0 {
    		uvdelta = ^(uvdelta >> 1)
    	} else {
    		uvdelta >>= 1
    	}
    	vdelta := int32(uvdelta)
    	pcdelta := readvarint(p) * uint32(arch.MinLC)
    	*pc += uint64(pcdelta)
    	*val += vdelta
    	return true
    }
    
    // readvarint reads, removes, and returns a varint from *p.
    func readvarint(p *[]byte) uint32 {
    	var v, shift uint32
    	s := *p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top