Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/proc.go

    		n = debug.tracebackancestors
    	}
    	ancestors := make([]ancestorInfo, n)
    	copy(ancestors[1:], callerAncestors)
    
    	var pcs [tracebackInnerFrames]uintptr
    	npcs := gcallers(callergp, 0, pcs[:])
    	ipcs := make([]uintptr, npcs)
    	copy(ipcs, pcs[:])
    	ancestors[0] = ancestorInfo{
    		pcs:  ipcs,
    		goid: callergp.goid,
    		gopc: callergp.gopc,
    	}
    
    	ancestorsp := new([]ancestorInfo)
    	*ancestorsp = ancestors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	data = append(data, s...)
    	return data
    }
    
    // assign addresses to text
    func (ctxt *Link) textaddress() {
    	addsection(ctxt.loader, ctxt.Arch, &Segtext, ".text", 05)
    
    	// Assign PCs in text segment.
    	// Could parallelize, by assigning to text
    	// and then letting threads copy down, but probably not worth it.
    	sect := Segtext.Sections[0]
    
    	sect.Align = int32(Funcalign)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	for _, jt := range cursym.Func().JumpTables {
    		for i, p := range jt.Targets {
    			// The ith jumptable entry points to the p.Pc'th
    			// byte in the function symbol s.
    			// TODO: try using relative PCs.
    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, cursym, p.Pc)
    		}
    	}
    }
    
    // isUnsafePoint returns whether p is an unsafe point.
    func (c *ctxt7) isUnsafePoint(p *obj.Prog) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top