Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dwabrev (0.17 sec)

  1. src/internal/xcoff/file_test.go

    			{".loader", 0x00000000, 0x000004b3, STYP_LOADER, 0, 0},
    			{".dwline", 0x00000000, 0x000000df, STYP_DWARF | SSUBTYP_DWLINE, 0x7eb0, 0x7},
    			{".dwinfo", 0x00000000, 0x00000314, STYP_DWARF | SSUBTYP_DWINFO, 0x7ef6, 0xa},
    			{".dwabrev", 0x00000000, 0x000000d6, STYP_DWARF | SSUBTYP_DWABREV, 0, 0},
    			{".dwarnge", 0x00000000, 0x00000020, STYP_DWARF | SSUBTYP_DWARNGE, 0x7f5a, 0x2},
    			{".dwloc", 0x00000000, 0x00000074, STYP_DWARF | SSUBTYP_DWLOC, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    // and its subtype constant.
    func xcoffGetDwarfSubtype(str string) (string, uint32) {
    	switch str {
    	default:
    		Exitf("unknown DWARF section name for XCOFF: %s", str)
    	case ".debug_abbrev":
    		return ".dwabrev", SSUBTYP_DWABREV
    	case ".debug_info":
    		return ".dwinfo", SSUBTYP_DWINFO
    	case ".debug_frame":
    		return ".dwframe", SSUBTYP_DWFRAME
    	case ".debug_line":
    		return ".dwline", SSUBTYP_DWLINE
    	case ".debug_loc":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	fmt.Fprint(buf, `// Code generated by TestPutVarAbbrevGenerator. DO NOT EDIT.
    // Regenerate using go test -run TestPutVarAbbrevGenerator -generate instead.
    
    package dwarf
    
    var putvarAbbrevs = []dwAbbrev{
    `)
    
    	for _, abbrev := range abbrevslice {
    		fmt.Fprint(buf, abbrev+",\n")
    	}
    
    	fmt.Fprint(buf, "\n}\n\n")
    
    	fmt.Fprint(buf, "func putAbstractVarAbbrev(v *Var) int {\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    	DW_ABRV_SLICETYPE
    	DW_ABRV_STRINGTYPE
    	DW_ABRV_STRUCTTYPE
    	DW_ABRV_TYPEDECL
    	DW_ABRV_DICT_INDEX
    	DW_ABRV_PUTVAR_START
    )
    
    type dwAbbrev struct {
    	tag      uint8
    	children uint8
    	attr     []dwAttrForm
    }
    
    var abbrevsFinalized bool
    
    // expandPseudoForm takes an input DW_FORM_xxx value and translates it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top