Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DW_TAG_variable (0.14 sec)

  1. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_TAG_template_type_parameter  = 0x2f
    	DW_TAG_template_value_parameter = 0x30
    	DW_TAG_thrown_type              = 0x31
    	DW_TAG_try_block                = 0x32
    	DW_TAG_variant_part             = 0x33
    	DW_TAG_variable                 = 0x34
    	DW_TAG_volatile_type            = 0x35
    	// Dwarf3
    	DW_TAG_dwarf_procedure  = 0x36
    	DW_TAG_restrict_type    = 0x37
    	DW_TAG_interface_type   = 0x38
    	DW_TAG_namespace        = 0x39
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    var logDwarf bool
    
    // Sym represents a symbol.
    type Sym interface {
    }
    
    // A Var represents a local variable or a function parameter.
    type Var struct {
    	Name          string
    	Tag           int // Either DW_TAG_variable or DW_TAG_formal_parameter
    	WithLoclist   bool
    	IsReturnValue bool
    	IsInlFormal   bool
    	DictIndex     uint16 // index of the dictionary entry describing the type of this variable
    	StackOffset   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    				if child.Tag == dwarf.TagVariable && child.Val(dwarf.AttrName).(string) == "i" {
    					iEntry = child
    					break
    				}
    			}
    			if iEntry == nil {
    				t.Fatalf("didn't find DW_TAG_variable for i in main.main")
    			}
    
    			// Verify line/file attributes.
    			line, lineOK := iEntry.Val(dwarf.AttrDeclLine).(int64)
    			if !lineOK {
    				t.Errorf("missing or invalid DW_AT_decl_line for i")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top