Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debug_loc (0.27 sec)

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

    	d.synthesizeslicetypes(ctxt, dwtypes.Child)
    	d.synthesizemaptypes(ctxt, dwtypes.Child)
    	d.synthesizechantypes(ctxt, dwtypes.Child)
    }
    
    // dwarfGenerateDebugSyms constructs debug_line, debug_frame, and
    // debug_loc. It also writes out the debug_info section using symbols
    // generated in dwarfGenerateDebugInfo2.
    func dwarfGenerateDebugSyms(ctxt *Link) {
    	if !dwarfEnabled(ctxt) {
    		return
    	}
    	d := &dwctxt{
    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/xcoff.go

    	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":
    		return ".dwpbnms", SSUBTYP_DWPBNMS
    	case ".debug_pubtypes":
    		return ".dwpbtyp", SSUBTYP_DWPBTYP
    	case ".debug_ranges":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    			shlibname := filepath.Join(libdir, name+".shlibname")
    			if ctxt.Debugvlog != 0 {
    				ctxt.Logf("searching for %s.a in %s\n", name, shlibname)
    			}
    			if _, err := os.Stat(shlibname); err == nil {
    				return addlibpath(ctxt, "internal", "internal", "", name, shlibname, zerofp)
    			}
    		}
    		pname := filepath.Join(libdir, name+".a")
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("searching for %s.a in %s\n", name, pname)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    			}
    		}
    
    		if p.To.Type == obj.TYPE_REG && p.To.Reg == REGSP && p.Spadj == 0 {
    			f := cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				f.FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top