Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendPCDeltaCFA (0.28 sec)

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

    	}
    
    	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 {
    	b = append(b, dwarf.DW_CFA_def_cfa_offset_sf)
    	b = dwarf.AppendSleb128(b, cfa/dataAlignmentFactor)
    
    	switch {
    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