Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

        }
    
        void assertHasDebugSymbols() {
            assert listSymbols().find { it.name.contains(".debug_line") } != null
        }
    
        void assertDoesNotHaveDebugSymbols() {
            assert listSymbols().find { it.name.contains(".debug_line") } == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/debug/pe/symbols_test.go

    		39: testpoint{
    			name:   ".rdata$.refptr.__native_startup_lock",
    			ok:     true,
    			auxstr: "{Size:8 NumRelocs:1 NumLineNumbers:0 Checksum:0 SecNum:16 Selection:2 _:[0 0 0]}",
    		},
    		81: testpoint{
    			name:   ".debug_line",
    			ok:     true,
    			auxstr: "{Size:994 NumRelocs:1 NumLineNumbers:0 Checksum:1624223678 SecNum:32 Selection:0 _:[0 0 0]}",
    		},
    		155: testpoint{
    			name: ".file",
    			ok:   false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/dwtest/dwtest.go

    		idx = ex.IdxFromOffset(parentDie.Offset)
    	}
    }
    
    // FileRef takes a given DIE by index and a numeric file reference
    // (presumably from a decl_file or call_file attribute), looks up the
    // reference in the .debug_line file table, and returns the proper
    // string for it. We need to know which DIE is making the reference
    // so as to find the right compilation unit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.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 == staticLibraryName('test')
            debugLink.files[0].url == withStaticLibrarySuffix("test_debug-1.2")
            def debugRuntime = debugMetadata.variant('debugRuntime')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. 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)
Back to top