Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for debug_name (0.17 sec)

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

    		rsize += uint64(d.ldr.SymSize(s))
    	}
    
    	if d.linkctxt.HeadType == objabi.Haix {
    		addDwsectCUSize(".debug_ranges", unit.Lib.Pkg, rsize)
    	}
    
    	return syms
    }
    
    /*
     *  Emit .debug_frame
     */
    const (
    	dataAlignmentFactor = -4
    )
    
    // appendPCDeltaCFA appends per-PC CFA deltas to b and returns the final slice.
    func appendPCDeltaCFA(arch *sys.Arch, b []byte, deltapc, cfa int64) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{".note.GNU-stack", SHT_PROGBITS, 0x0, 0x0, 0x888, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0},
    			{".debug_frame", SHT_PROGBITS, 0x0, 0x0, 0x888, 0x38, 0x0, 0x0, 0x8, 0x0, 0x38},
    			{".rela.debug_frame", SHT_RELA, SHF_INFO_LINK, 0x0, 0x1118, 0x30, 0x13, 0x10, 0x8, 0x18, 0x30},
    			{".shstrtab", SHT_STRTAB, 0x0, 0x0, 0x1148, 0xb3, 0x0, 0x0, 0x1, 0x0, 0xb3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	switch str {
    	default:
    		Exitf("unknown DWARF section name for XCOFF: %s", str)
    	case ".debug_abbrev":
    		return ".dwabrev", SSUBTYP_DWABREV
    	case ".debug_info":
    		return ".dwinfo", SSUBTYP_DWINFO
    	case ".debug_frame":
    		return ".dwframe", SSUBTYP_DWFRAME
    	case ".debug_line":
    		return ".dwline", SSUBTYP_DWLINE
    	case ".debug_loc":
    		return ".dwloc", SSUBTYP_DWLOC
    	case ".debug_pubnames":
    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