Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for __DWARF (0.17 sec)

  1. src/debug/macho/file_test.go

    			{"__debug_abbrev", "__DWARF", 0x100002000, 0x36, 0x1000, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_aranges", "__DWARF", 0x100002036, 0x30, 0x1036, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_frame", "__DWARF", 0x100002066, 0x40, 0x1066, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_info", "__DWARF", 0x1000020a6, 0x54, 0x10a6, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_line", "__DWARF", 0x1000020fa, 0x47, 0x10fa, 0x0, 0x0, 0x0, 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho_combine_dwarf.go

    		return err
    	}
    	if _, err := io.CopyN(outf, exef, int64(linkseg.Offset)); err != nil {
    		return err
    	}
    
    	realdwarf := dwarfm.Segment("__DWARF")
    	if realdwarf == nil {
    		return fmt.Errorf("missing __DWARF segment")
    	}
    
    	// Try to compress the DWARF sections. This includes some Apple
    	// proprietary sections like __apple_types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    	}
    
    	/* dwarf */
    	if !*FlagW {
    		if ctxt.LinkMode != LinkExternal {
    			ms = newMachoSeg("__DWARF", 20)
    			ms.vaddr = Segdwarf.Vaddr
    			ms.vsize = 0
    			ms.fileoffset = Segdwarf.Fileoff
    			ms.filesize = Segdwarf.Filelen
    		}
    		for _, sect := range Segdwarf.Sections {
    			machoshbits(ctxt, ms, sect, "__DWARF")
    		}
    	}
    
    	if ctxt.LinkMode != LinkExternal {
    		switch ctxt.Arch.Family {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		} else {
    			argv = append(argv, "-s")
    		}
    	}
    
    	// On darwin, whether to combine DWARF into executable.
    	// Only macOS supports unmapped segments such as our __DWARF segment.
    	combineDwarf := ctxt.IsDarwin() && !*FlagW && machoPlatform == PLATFORM_MACOS
    
    	switch ctxt.HeadType {
    	case objabi.Hdarwin:
    		if combineDwarf {
    			// Leave room for DWARF combining.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top