Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for debug_ranges (0.24 sec)

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

    // contained in it). For other sections (eg: .debug_info), the section
    // symbol is empty and all the content is in the sub-symbols. Finally
    // there are some sections (eg: .debug_ranges) where it is a mix (both
    // the section symbol and the sub-symbols have content)
    type dwarfSecInfo struct {
    	syms []loader.Sym
    }
    
    // secSym returns the section symbol for the section.
    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/cmd/link/internal/ld/data.go

    				o = ldr.SymValue(rs) - int64(Segtext.Sections[0].Vaddr) + r.Add()
    			} else {
    				o = ldr.SymValue(rs) - int64(ldr.SymSect(rs).Vaddr) + r.Add()
    			}
    
    		case objabi.R_ADDRCUOFF:
    			// debug_range and debug_loc elements use this relocation type to get an
    			// offset from the start of the compile unit.
    			o = ldr.SymValue(rs) + r.Add() - ldr.SymValue(loader.Sym(ldr.SymUnit(rs).Textp[0]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top