Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addDWARFSection (0.94 sec)

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

    	}
    	f.sections = append(f.sections, sect)
    	return sect
    }
    
    // addDWARFSection adds DWARF section to the COFF file f.
    // This function is similar to addSection, but DWARF section names are
    // longer than 8 characters, so they need to be stored in the string table.
    func (f *peFile) addDWARFSection(name string, size int) *peSection {
    	if size == 0 {
    		Exitf("DWARF section %q is empty", name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	f.sectNameToScnum[name] = int16(len(f.sections))
    	return sect
    }
    
    // addDwarfSection adds a dwarf section to the XCOFF file f.
    // This function is similar to addSection, but Dwarf section names
    // must be modified to conventional names and they are various subtypes.
    func (f *xcoffFile) addDwarfSection(s *sym.Section) *XcoffScnHdr64 {
    	newName, subtype := xcoffGetDwarfSubtype(s.Name)
    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