Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AbsFnDIEs (0.1 sec)

  1. src/cmd/link/internal/sym/compilation_unit.go

    	FileTable []string      // The file table used in this compilation unit.
    
    	Consts    LoaderSym   // Package constants DIEs
    	FuncDIEs  []LoaderSym // Function DIE subtrees
    	VarDIEs   []LoaderSym // Global variable DIEs
    	AbsFnDIEs []LoaderSym // Abstract function DIE subtrees
    	RangeSyms []LoaderSym // Symbols for debug_range
    	Textp     []LoaderSym // Text symbols in this CU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:39:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	dwarf.PutAttrs(d, ds, compunit.Abbrev, compunit.Attr)
    
    	// This is an under-estimate; more will be needed for type DIEs.
    	cu := make([]loader.Sym, 0, len(u.AbsFnDIEs)+len(u.FuncDIEs))
    	cu = append(cu, s)
    	cu = append(cu, u.AbsFnDIEs...)
    	cu = append(cu, u.FuncDIEs...)
    	if u.Consts != 0 {
    		cu = append(cu, loader.Sym(u.Consts))
    	}
    	cu = append(cu, u.VarDIEs...)
    	var cusize int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top