Issue 240507.1: Add support for "properties"

Author: Martin Friebe
Champion: Adrian Prantl
Date submitted: 2024-05-07
Date revised: 2024-11-25
Date closed:
Type: Enhancement
Status: Open
DWARF version: 6

Background

Pascal has a property construct, that allows a "variable like" identifier, which can either point to a field (member variable) or a getter/setter function.

TFoo = class
  FField: integer;
  function GetProp: integer;
  procedure SetProp(AVal: Integer);
  property MyProp: integer read GetProp write SetProp;
  property MyOtherProp: integer read FField;
end;

There may be partial overlaps with properties in Objective-C and C#.

References

Proposed Changes

Section 2.1: The Debugging Information Entry

In Table 2.1, add DW_TAG_property, DW_TAG_property_getter, DW_TAG_property_setter, and DW_TAG_property_stored.

Section 5.7: Structure, Union and Class Type Entries

Add the following new subsection after Section 5.7.6 Data Member Entries:

5.7.x Property Entries

[Non-normative] Many object-oriented languages like Pascal and Objective-C have properties, which are member functions that syntactically behave like data members of an object. Pascal can also have global properties.

A property is represented by a debugging information entry with the tag DW_TAG_property. A property entry has a DW_AT_name string attribute whose value is the property name. A property entry may have a DW_AT_type attribute to denote the type of that property.

A property may have DW_AT_accessibility, DW_AT_external, DW_AT_virtuality, DW_AT_start_scope, DW_AT_decl_column, DW_AT_decl_file and DW_AT_decl_line attributes with the respective semantics described for these attributes for DW_TAG_member (see Section 5.7.6).

A property may have one or several of DW_TAG_property_getter, DW_TAG_property_setter, or DW_TAG_property_stored children to represent the getter and setter (member) functions, or the Pascal-style stored accessor for this property. Each of these tags have a DW_AT_property_forward attribute to point to a (member) function declaration or a data member. If they point to a function, they may also have DW_TAG_formal_parameter children (matching the ones in the function) that can have DW_AT_default_value attributes to declare additional default arguments for when these functions are used as property accessors.

Some languages can automatically derive accessors for properties from a field in property's parent object. In such cases the DW_AT_property_forward attribute of the accessor entry points to the DW_TAG_property's sibling DW_TAG_member entry of field that holds the properties underlying storage.

Property accessors may also have any other attributes allowed in a DW_TAG_subprogram function declaration. If the value of a property can be derived by evaluating a DWARF expression, the DW_TAG_property_getter may have a DW_TAG_location holding a DWARF expression that may use DW_OP_push_object_address to inquire the address of the property's parent object.

To change the accessibility of a property in an inherited class, a DW_TAG_property can be specified with just a name and accessibility. For example if in a subclass property a becomes private it is sufficient to add the following to the subclass entry:

DW_TAG_property
  DW_AT_name            "a"
  DW_AT_accessibility   DW_ACCESS_private

Appendix D: Examples

Add a new subsection:

D.x Properties

The properties in the Pascal object in this example are represented by the following DWARF.

TClass = class
     FField: integer;
     function GetProp: integer;
     procedure SetProp(AVal: Integer);
     property MyProp: integer read GetProp write SetProp;
     property MyOtherProp: integer read FField;
     function GetFoo(x: word; AIndex: Integer): char;
     property Foo[x: word]: char index 1 read GetFoo;
end;


DW_TAG_class_type
  DW_AT_name "TClass"
  DW_TAG_member
    DW_AT_name "FField"
    DW_AT_type <ref to integer>
  DW_TAG_subprogram
    DW_AT_name "GetProp"
    ...
  DW_TAG_subprogram
    DW_AT_name "SetProp"
    ...

  DW_TAG_property
    DW_AT_name "MyProp"
    DW_TAG_property_getter
      DW_AT_property_forward <ref to GetProp>
    DW_TAG_property_setter
      DW_AT_property_forward <ref to SetProp>

  DW_TAG_property
    DW_AT_name "MyOtherProp"
    DW_TAG_property_getter
      DW_AT_property_forward <ref to FField>

  DW_TAG_subprogram
    DW_AT_name "GetFoo"
    ...

  DW_TAG_property
    DW_AT_name "Foo"

    DW_TAG_property_getter
      DW_AT_property_forward <ref to GetFoo>

      DW_TAG_formal_parameter  ; _this (no default specified, details inherited from GetFoo
      DW_TAG_formal_parameter  ; x (no default specified)
      DW_TAG_formal_parameter
        DW_AT_default_value <DW_OP_lit 1> ; property index

2024-05-07: Original proposal.

2024-10-12: Revised after online discussion.