Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for debugInfo (0.29 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	state.lists[varID] = list
    }
    
    // PutLocationList adds list (a location list in its intermediate representation) to listSym.
    func (debugInfo *FuncDebug) PutLocationList(list []byte, ctxt *obj.Link, listSym, startPC *obj.LSym) {
    	getPC := debugInfo.GetPC
    
    	if ctxt.UseBASEntries {
    		listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, ^0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{".bss", SHT_NOBITS, SHF_WRITE | SHF_ALLOC, 0x0, 0x4b, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0},
    			{".rodata", SHT_PROGBITS, SHF_ALLOC, 0x0, 0x4b, 0xd, 0x0, 0x0, 0x1, 0x0, 0xd},
    			{".debug_info", SHT_PROGBITS, SHF_COMPRESSED, 0x0, 0x58, 0xb4, 0x0, 0x0, 0x1, 0x0, 0x84},
    			{".rel.debug_info", SHT_REL, SHF_INFO_LINK, 0x0, 0x3ec, 0xa0, 0x13, 0x6, 0x4, 0x8, 0xa0},
    			{".debug_abbrev", SHT_PROGBITS, 0x0, 0x0, 0xdc, 0x5a, 0x0, 0x0, 0x1, 0x0, 0x5a},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    // sub-symbols in that section. Note that for some sections (eg:
    // .debug_abbrev), the section symbol is all there is (all content is
    // 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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // flow frame.
      while (!control_flow_info[src_node->id()].frame_name.empty()) {
        NodeDebugInfo debug_info(*src_node);
        NodeBuilder enter_builder(options.GetNameForOp("Enter"), "Enter",
                                  options.op_registry(), &debug_info);
        enter_builder.Attr("frame_name",
                           control_flow_info[src_node->id()].frame_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    func xcoffGetDwarfSubtype(str string) (string, uint32) {
    	switch str {
    	default:
    		Exitf("unknown DWARF section name for XCOFF: %s", str)
    	case ".debug_abbrev":
    		return ".dwabrev", SSUBTYP_DWABREV
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top