Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for symaddr (0.22 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    	buf := bytes.NewBuffer(syms)
    
    	for {
    		symAddr, name, err := nextSymbol(buf)
    		if err == io.EOF {
    			// Done. If there was an unfinished group, append it.
    			if len(names) != 0 {
    				if match := matchSymbol(names, start, symAddr-1, r, address); match != nil {
    					symbols = append(symbols, &plugin.Sym{Name: match, File: file, Start: start, End: symAddr - 1})
    				}
    			}
    
    			// And return the symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loong64/asm.go

    		pc := ldr.SymValue(s) + int64(r.Off())
    		t := calculatePCAlignedReloc(r.Type(), ldr.SymAddr(rs)+r.Add(), pc)
    		if r.Type() == objabi.R_LOONG64_ADDR_LO {
    			return int64(val&0xffc003ff | (t << 10)), noExtReloc, isOk
    		}
    		return int64(val&0xfe00001f | (t << 5)), noExtReloc, isOk
    	case objabi.R_LOONG64_TLS_LE_HI,
    		objabi.R_LOONG64_TLS_LE_LO:
    		t := ldr.SymAddr(rs) + r.Add()
    		if r.Type() == objabi.R_LOONG64_TLS_LE_LO {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm_test.go

    		{&obj.Addr{Type: obj.TYPE_ADDR, Offset: 255}, Yu8},
    
    		{immAddr(0), Yi0},
    		{immAddr(1), Yi1},
    		{immAddr(2), Yu2},
    		{immAddr(3), Yu2},
    		{immAddr(4), Yu7},
    		{immAddr(86), Yu7},
    		{immAddr(127), Yu7},
    		{immAddr(128), Yu8},
    		{immAddr(200), Yu8},
    		{immAddr(255), Yu8},
    		{immAddr(-1), Yi8},
    		{immAddr(-100), Yi8},
    		{immAddr(-128), Yi8},
    
    		{regAddr(REG_AL), Yal},
    		{regAddr(REG_AX), Yax},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/runtime/signal_freebsd_arm64.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint64 { return c.regs().mc_gpregs.gp_elr }
    
    func (c *sigctxt) fault() uintptr { return uintptr(c.info.si_addr) }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint64)  { c.regs().mc_gpregs.gp_elr = x }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().mc_gpregs.gp_sp = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/signal_freebsd_riscv64.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint64 { return c.regs().mc_gpregs.gp_sepc }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint64) { c.regs().mc_gpregs.gp_sepc = x }
    func (c *sigctxt) set_ra(x uint64) { c.regs().mc_gpregs.gp_ra = x }
    func (c *sigctxt) set_sp(x uint64) { c.regs().mc_gpregs.gp_sp = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/runtime/signal_aix_ppc64.go

    // TODO(aix): find trap equivalent
    func (c *sigctxt) trap() uint32 { return 0x0 }
    
    func (c *sigctxt) sigcode() uint32 { return uint32(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return uint64(c.info.si_addr) }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.sigaddr()) }
    
    func (c *sigctxt) set_r0(x uint64)   { c.regs().gpr[0] = x }
    func (c *sigctxt) set_r12(x uint64)  { c.regs().gpr[12] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/runtime/signal_darwin_amd64.go

    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_rip(x uint64)     { c.regs().rip = x }
    func (c *sigctxt) set_rsp(x uint64)     { c.regs().rsp = x }
    func (c *sigctxt) set_sigcode(x uint64) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) { c.info.si_addr = x }
    
    //go:nosplit
    func (c *sigctxt) fixsigcode(sig uint32) {
    	switch sig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. src/runtime/signal_linux_ppc64x.go

    func (c *sigctxt) xer() uint64  { return c.regs().xer }
    func (c *sigctxt) ccr() uint64  { return c.regs().ccr }
    
    func (c *sigctxt) sigcode() uint32 { return uint32(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.regs().dar) }
    
    func (c *sigctxt) set_r0(x uint64)   { c.regs().gpr[0] = x }
    func (c *sigctxt) set_r12(x uint64)  { c.regs().gpr[12] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_s390x.go

    	sa_flags    uint64
    	sa_restorer uintptr
    	sa_mask     uint64
    }
    
    type siginfoFields struct {
    	si_signo int32
    	si_errno int32
    	si_code  int32
    	// below here is a union; si_addr is the only field we use
    	si_addr uint64
    }
    
    type siginfo struct {
    	siginfoFields
    
    	// Pad struct to the max size in the kernel.
    	_ [_si_max_size - unsafe.Sizeof(siginfoFields{})]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/net/resolverdialfunc_test.go

    	n = len(tcpRes) - 2
    	tcpRes[0] = byte(n >> 8)
    	tcpRes[1] = byte(n)
    	a.rbuf.Write(tcpRes[2:])
    
    	return len(packet), nil
    }
    
    type someaddr struct{}
    
    func (someaddr) Network() string { return "unused" }
    func (someaddr) String() string  { return "unused-someaddr" }
    
    func mapRCode(err error) dnsmessage.RCode {
    	switch err {
    	case nil:
    		return dnsmessage.RCodeSuccess
    	case ErrNotExist:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top