Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fdSyms (0.3 sec)

  1. src/cmd/link/internal/ld/pcln.go

    // NB: fdSyms is used as scratch space.
    func funcData(ldr *loader.Loader, s loader.Sym, fi loader.FuncInfo, inlSym loader.Sym, fdSyms []loader.Sym) []loader.Sym {
    	fdSyms = fdSyms[:0]
    	if fi.Valid() {
    		fdSyms = ldr.Funcdata(s, fdSyms)
    		if fi.NumInlTree() > 0 {
    			if len(fdSyms) < abi.FUNCDATA_InlTree+1 {
    				fdSyms = append(fdSyms, make([]loader.Sym, abi.FUNCDATA_InlTree+1-len(fdSyms))...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/internal/xcoff/xcoff.go

    // File Header.
    type FileHeader32 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    	Ftimedat uint32 // Time and date of file creation
    	Fsymptr  uint32 // Byte offset to symbol table start
    	Fnsyms   uint32 // Number of entries in symbol table
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    }
    
    type FileHeader64 struct {
    	Fmagic   uint16 // Target machine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/internal/xcoff/file.go

    		}
    		nscns = fhdr.Fnscns
    		symptr = uint64(fhdr.Fsymptr)
    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_32
    	case U64_TOCMAGIC:
    		fhdr := new(FileHeader64)
    		if err := binary.Read(sr, binary.BigEndian, fhdr); err != nil {
    			return nil, err
    		}
    		nscns = fhdr.Fnscns
    		symptr = fhdr.Fsymptr
    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_64
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	Fnscns   uint16 // Number of sections
    	Ftimedat int32  // Time and date of file creation
    	Fsymptr  uint64 // Byte offset to symbol table start
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    	Fnsyms   int32  // Number of entries in symbol table
    }
    
    const (
    	U64_TOCMAGIC = 0767 // AIX 64-bit XCOFF
    )
    
    // Flags that describe the type of the object file.
    const (
    	F_RELFLG    = 0x0001
    	F_EXEC      = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top