Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for dwVars (0.13 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    		newattr(die, dwarf.DW_AT_encoding, dwarf.DW_CLS_CONSTANT, dwarf.DW_ATE_boolean, 0)
    		newattr(die, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, bytesize, 0)
    
    	case abi.Int,
    		abi.Int8,
    		abi.Int16,
    		abi.Int32,
    		abi.Int64:
    		die = d.newdie(&dwtypes, dwarf.DW_ABRV_BASETYPE, name)
    		newattr(die, dwarf.DW_AT_encoding, dwarf.DW_CLS_CONSTANT, dwarf.DW_ATE_signed, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.4.1", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "go-relocation-test.c", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrCompDir, Val: "/tmp", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		}
    		if t.Align = t.Size; t.Align >= c.ptrSize {
    			t.Align = c.ptrSize
    		}
    
    	case *dwarf.VoidType:
    		t.Go = c.goVoid
    		t.C.Set("void")
    		t.Align = 1
    	}
    
    	switch dtype.(type) {
    	case *dwarf.AddrType, *dwarf.BoolType, *dwarf.CharType, *dwarf.ComplexType, *dwarf.IntType, *dwarf.FloatType, *dwarf.UcharType, *dwarf.UintType:
    		s := dtype.Common().Name
    		if s != "" {
    			if ss, ok := dwarfToName[s]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    )
    const (
    	SSUBTYP_DWINFO  = 0x10000 // DWARF info section
    	SSUBTYP_DWLINE  = 0x20000 // DWARF line-number section
    	SSUBTYP_DWPBNMS = 0x30000 // DWARF public names section
    	SSUBTYP_DWPBTYP = 0x40000 // DWARF public types section
    	SSUBTYP_DWARNGE = 0x50000 // DWARF aranges section
    	SSUBTYP_DWABREV = 0x60000 // DWARF abbreviation section
    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    					list = append(list, dwarf.DW_OP_call_frame_cfa)
    				} else {
    					list = append(list, dwarf.DW_OP_fbreg)
    					list = dwarf.AppendSleb128(list, int64(loc.stackOffsetValue()))
    				}
    			} else {
    				regnum := state.ctxt.Arch.DWARFRegisters[state.registers[firstReg(loc.Registers)].ObjNum()]
    				if regnum < 32 {
    					list = append(list, dwarf.DW_OP_reg0+byte(regnum))
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    			argv = append(argv, "-s")
    		}
    	}
    
    	// On darwin, whether to combine DWARF into executable.
    	// Only macOS supports unmapped segments such as our __DWARF segment.
    	combineDwarf := ctxt.IsDarwin() && !*FlagW && machoPlatform == PLATFORM_MACOS
    
    	switch ctxt.HeadType {
    	case objabi.Hdarwin:
    		if combineDwarf {
    			// Leave room for DWARF combining.
    			// -headerpad is incompatible with -fembed-bitcode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		case goobj.AuxDwarfInfo:
    			auxDwarfInfo = l.resolve(r, a.Sym())
    			if l.SymType(auxDwarfInfo) != sym.SDWARFFCN {
    				panic("aux dwarf info sym with wrong type")
    			}
    		case goobj.AuxDwarfLoc:
    			auxDwarfLoc = l.resolve(r, a.Sym())
    			if l.SymType(auxDwarfLoc) != sym.SDWARFLOC {
    				panic("aux dwarf loc sym with wrong type")
    			}
    		case goobj.AuxDwarfRanges:
    			auxDwarfRanges = l.resolve(r, a.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The absolute file path of the generated archive.
    
    `destinationDirectory` — `DirectoryProperty`, default: depends on archive type::
    The target directory in which to put the generated archive. By default, JARs and WARs go into `layout.buildDirectory.dir("libs")`. ZIPs and TARs go into `layout.buildDirectory.dir("distributions")`.
    
    `archiveBaseName` — `Property<String>`, default: `__project.name__`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    		// main branch for day-to-day work on the Go toolchain itself can
    		// still have full paths for stack traces for compiler crashes and the like.
    		env = append(env, "GOFLAGS=-trimpath -ldflags=-w -gcflags=cmd/...=-dwarf=false")
    	}
    	return env
    }
    
    var toolchain = []string{"cmd/asm", "cmd/cgo", "cmd/compile", "cmd/link", "cmd/preprofile"}
    
    // The bootstrap command runs a build from scratch,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	goExperiment string
    	goDebug      string
    
    	// dirs are the directories to look for *.go files in.
    	// TODO(bradfitz): just use all directories?
    	dirs = []string{".", "ken", "chan", "interface", "syntax", "dwarf", "fixedbugs", "codegen", "runtime", "abi", "typeparam", "typeparam/mdempsky", "arenas"}
    )
    
    // Test is the main entrypoint that runs tests in the GOROOT/test directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top