Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 146 for dwarf (0.04 sec)

  1. test/fixedbugs/issue44378.go

    // compile
    
    // Copyright 2021 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.
    
    // This test case caused a panic in the compiler's DWARF gen code.
    
    // Note to future maintainers of this code:
    //
    //    ** Do NOT run gofmt when editing this file **
    //
    // In order for the buggy behavior to be triggered in the compiler,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/putvarabbrevgen.go

    // Code generated by TestPutVarAbbrevGenerator. DO NOT EDIT.
    // Regenerate using go test -run TestPutVarAbbrevGenerator -generate instead.
    
    package dwarf
    
    var putvarAbbrevs = []dwAbbrev{
    	{
    		DW_TAG_variable,
    		DW_CHILDREN_no,
    		[]dwAttrForm{
    			{DW_AT_name, DW_FORM_string},
    			{DW_AT_decl_line, DW_FORM_udata},
    			{DW_AT_type, DW_FORM_ref_addr},
    		},
    	},
    	{
    		DW_TAG_formal_parameter,
    		DW_CHILDREN_no,
    		[]dwAttrForm{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/SymbolExtractorOsConfig.java

    import java.util.List;
    
    public enum SymbolExtractorOsConfig {
        OBJCOPY("objcopy", Lists.newArrayList("--only-keep-debug"), ".debug"),
        DSYMUTIL("dsymutil", Lists.<String>newArrayList("-f"), ".dwarf") {
            @Override
            public List<String> getInputOutputFileArguments(String inputFilePath, String outputFilePath) {
                return Lists.newArrayList("-o", outputFilePath, inputFilePath);
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/amd64/l.go

    // THE SOFTWARE.
    
    package amd64
    
    const (
    	maxAlign  = 32 // max data alignment
    	minAlign  = 1  // min data alignment
    	funcAlign = 32
    )
    
    /* Used by ../internal/ld/dwarf.go */
    const (
    	dwarfRegSP = 7
    	dwarfRegLR = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 03:02:35 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/x86/l.go

    // THE SOFTWARE.
    
    package x86
    
    const (
    	maxAlign  = 32 // max data alignment
    	minAlign  = 1  // min data alignment
    	funcAlign = 16
    )
    
    /* Used by ../internal/ld/dwarf.go */
    const (
    	dwarfRegSP = 4
    	dwarfRegLR = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  6. api/go1.4.txt

    # CL 117280043 debug/dwarf: fix Reader panic on DW_TAG_unspecified_type, Derek Parker <******@****.***>
    pkg debug/dwarf, method (*UnspecifiedType) Basic() *BasicType
    pkg debug/dwarf, method (*UnspecifiedType) Common() *CommonType
    pkg debug/dwarf, method (*UnspecifiedType) Size() int64
    pkg debug/dwarf, method (*UnspecifiedType) String() string
    pkg debug/dwarf, type UnspecifiedType struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/data.go

    	case 8:
    		ctxt.Arch.ByteOrder.PutUint64(s.P[off:], uint64(i))
    	}
    }
    
    func (s *LSym) writeAddr(ctxt *Link, off int64, siz int, rsym *LSym, roff int64, rtype objabi.RelocType) {
    	// Allow 4-byte addresses for DWARF.
    	if siz != ctxt.Arch.PtrSize && siz != 4 {
    		ctxt.Diag("WriteAddr: bad address size %d in %s", siz, s.Name)
    	}
    	s.prepwrite(ctxt, off, siz)
    	r := Addrel(s)
    	r.Off = int32(off)
    	if int64(r.Off) != off {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. src/debug/dwarf/tag_string.go

    // Code generated by "stringer -type Tag -trimprefix=Tag"; DO NOT EDIT.
    
    package dwarf
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[TagArrayType-1]
    	_ = x[TagClassType-2]
    	_ = x[TagEntryPoint-3]
    	_ = x[TagEnumerationType-4]
    	_ = x[TagFormalParameter-5]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:32:37 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/reproduciblebuilds_test.go

    	src := filepath.Join("testdata", "reproducible", "issue38068.go")
    	for i := range scenarios {
    		s := &scenarios[i]
    		s.libpath = filepath.Join(tmpdir, s.tag+".a")
    		// Note: use of "-p" required in order for DWARF to be generated.
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p=issue38068", "-buildid=", s.args, "-o", s.libpath, src)
    		out, err := cmd.CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/mips/l.go

    // THE SOFTWARE.
    
    const (
    	MaxAlign  = 32 // max data alignment
    	MinAlign  = 1  // min data alignment
    	FuncAlign = 4
    )
    
    /* Used by ../internal/ld/dwarf.go */
    const (
    	DWARFREGSP = 29
    	DWARFREGLR = 31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top