Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for debug_line (0.14 sec)

  1. src/debug/pe/file_test.go

    			{".bss", 0, 0, 0, 0, 0, 0, 0, 0, 3224371328},
    			{".debug_abbrev", 0, 0, 137, 536, 0, 0, 0, 0, 0x42100000},
    			{".debug_info", 0, 0, 418, 673, 1470, 0, 7, 0, 1108344832},
    			{".debug_line", 0, 0, 128, 1091, 1540, 0, 1, 0, 1108344832},
    			{".rdata", 0, 0, 16, 1219, 0, 0, 0, 0, 1076887616},
    			{".debug_frame", 0, 0, 52, 1235, 1550, 0, 2, 0, 1110441984},
    			{".debug_loc", 0, 0, 56, 1287, 0, 0, 0, 0, 1108344832},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. src/debug/dwarf/line.go

    // instructions from that [LineEntry]'s PC to just before the next
    // [LineEntry]'s PC. The last entry will have the [LineEntry.EndSequence] field set.
    type LineReader struct {
    	buf buf
    
    	// Original .debug_line section data. Used by Seek.
    	section []byte
    
    	str     []byte // .debug_str
    	lineStr []byte // .debug_line_str
    
    	// Header information
    	version              uint16
    	addrsize             int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    	// R_DWARFSECREF resolves to the offset of the symbol from its section.
    	// Target of relocation must be size 4 (in current implementation).
    	R_DWARFSECREF
    
    	// R_DWARFFILEREF resolves to an index into the DWARF .debug_line
    	// file table for the specified file symbol. Must be applied to an
    	// attribute of form DW_FORM_data4.
    	R_DWARFFILEREF
    
    	// Platform dependent relocations. Architectures with fixed width instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top