Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa_test
    
    import (
    	cmddwarf "cmd/internal/dwarf"
    	"cmd/internal/quoted"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"internal/platform"
    	"internal/testenv"
    	"internal/xcoff"
    	"io"
    	"os"
    	"runtime"
    	"sort"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/link/dwarf_test.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bytes"
    	cmddwarf "cmd/internal/dwarf"
    	"cmd/internal/objfile"
    	"cmd/internal/quoted"
    	"debug/dwarf"
    	"internal/platform"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    	C_LSYM    = 129 // Automatic variable allocated on stack
    	C_PSYM    = 130 // Argument to subroutine allocated on stack
    	C_RSYM    = 131 // Register variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/internal/xcoff/xcoff.go

    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    	C_LSYM    = 129 // Automatic variable allocated on stack
    	C_PSYM    = 130 // Argument to subroutine allocated on stack
    	C_RSYM    = 131 // Register variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pe.go

    	h.shortName = fmt.Sprintf("/%d", off)
    	h.characteristics = IMAGE_SCN_ALIGN_1BYTES | IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_DISCARDABLE | IMAGE_SCN_CNT_INITIALIZED_DATA
    	return h
    }
    
    // addDWARF adds DWARF information to the COFF file f.
    func (f *peFile) addDWARF() {
    	if *FlagS { // disable symbol table
    		return
    	}
    	if *FlagW { // disable dwarf
    		return
    	}
    	for _, sect := range Segdwarf.Sections {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top