Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PutAbstractFunc (0.32 sec)

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

    		StartPos:      startPos,
    		External:      !s.Static(),
    		Scopes:        scopes,
    		InlCalls:      inlcalls,
    		UseBASEntries: ctxt.UseBASEntries,
    	}
    	if absfunc != nil {
    		err = dwarf.PutAbstractFunc(dwctxt, fnstate)
    		if err != nil {
    			ctxt.Diag("emitting DWARF for %s failed: %v", s.Name, err)
    		}
    		err = dwarf.PutConcreteFunc(dwctxt, fnstate, s.Wrapper())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    // DIE (as a space-saving measure, so that name/type etc doesn't have
    // to be repeated for each inlined copy).
    func PutAbstractFunc(ctxt Context, s *FnState) error {
    	if logDwarf {
    		ctxt.Logf("PutAbstractFunc(%v)\n", s.Absfn)
    	}
    
    	abbrev := DW_ABRV_FUNCTION_ABSTRACT
    	Uleb128put(ctxt, s.Absfn, int64(abbrev))
    
    	fullname := s.Name
    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