Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for debug_line (0.11 sec)

  1. src/cmd/internal/src/xpos.go

    func (t *PosTable) FileTable() []string {
    	// Create a LUT of the global package level file indices. This table is what
    	// is written in the debug_lines header, the file[N] will be referenced as
    	// N+1 in the debug_lines table.
    	fileLUT := make([]string, len(t.nameMap))
    	for str, i := range t.nameMap {
    		fileLUT[i] = str
    	}
    	return fileLUT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            def debugMetadata = debug.parsedModuleMetadata
            debugMetadata.variants.size() == 2
            def debugLink = debugMetadata.variant('debugLink')
            debugLink.dependencies.empty
            debugLink.files.size() == 1
            debugLink.files[0].name == linkLibraryName('test')
            debugLink.files[0].url == withLinkLibrarySuffix("test_debug-1.2")
            def debugRuntime = debugMetadata.variant('debugRuntime')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/dwarf.go

    )
    
    // generateDebugLinesSymbol fills the debug lines symbol of a given function.
    //
    // It's worth noting that this function doesn't generate the full debug_lines
    // DWARF section, saving that for the linker. This function just generates the
    // state machine part of debug_lines. The full table is generated by the
    // linker.  Also, we use the file numbers from the full package (not just the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. src/debug/macho/file_test.go

    			{"__debug_frame", "__DWARF", 0x100002066, 0x40, 0x1066, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_info", "__DWARF", 0x1000020a6, 0x54, 0x10a6, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_line", "__DWARF", 0x1000020fa, 0x47, 0x10fa, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_pubnames", "__DWARF", 0x100002141, 0x1b, 0x1141, 0x0, 0x0, 0x0, 0x0},
    			{"__debug_str", "__DWARF", 0x10000215c, 0x60, 0x115c, 0x0, 0x0, 0x0, 0x0},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top