Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WriteCURelativeAddr (0.18 sec)

  1. src/cmd/internal/obj/data.go

    	s.writeAddr(ctxt, off, siz, rsym, roff, objabi.R_WEAKADDR)
    }
    
    // WriteCURelativeAddr writes a pointer-sized address into s at offset off.
    // rsym and roff specify the relocation for the address which will be
    // resolved by the linker to an offset from the DW_AT_low_pc attribute of
    // the DWARF Compile Unit of rsym.
    func (s *LSym) WriteCURelativeAddr(ctxt *Link, off int64, rsym *LSym, roff int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/dwarf.go

    	} else {
    		ls.WriteInt(c.Link, ls.Size, size, value)
    	}
    }
    func (c dwCtxt) AddCURelativeAddress(s dwarf.Sym, data interface{}, value int64) {
    	ls := s.(*LSym)
    	rsym := data.(*LSym)
    	ls.WriteCURelativeAddr(c.Link, ls.Size, rsym, value)
    }
    func (c dwCtxt) AddSectionOffset(s dwarf.Sym, size int, t interface{}, ofs int64) {
    	panic("should be used only in the linker")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(begin))
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(end))
    		} else {
    			listSym.WriteCURelativeAddr(ctxt, listSym.Size, startPC, int64(begin))
    			listSym.WriteCURelativeAddr(ctxt, listSym.Size, startPC, int64(end))
    		}
    
    		i += 2 * ctxt.Arch.PtrSize
    		datalen := 2 + int(ctxt.Arch.ByteOrder.Uint16(list[i:]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top