Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for putInlinedFunc (0.18 sec)

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

    func putInlinedFunc(ctxt Context, s *FnState, callIdx int) error {
    	ic := s.InlCalls.Calls[callIdx]
    	callee := ic.AbsFunSym
    
    	abbrev := DW_ABRV_INLINED_SUBROUTINE_RANGES
    	if len(ic.Ranges) == 1 {
    		abbrev = DW_ABRV_INLINED_SUBROUTINE
    	}
    	Uleb128put(ctxt, s.Info, int64(abbrev))
    
    	if logDwarf {
    		ctxt.Logf("putInlinedFunc(callee=%v,abbrev=%d)\n", callee, abbrev)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top