View source code
Display the source code in dmd/tocvdebug.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.

Struct dmd.tocvdebug.CvFieldList

Helper struct for field list records LF_FIELDLIST/LF_FIELDLIST_V2

struct CvFieldList;

if the size exceeds the maximum length of a record, the last entry is an LF_INDEX entry with the type index pointing to the next field list record

Processing is done in two phases:

Phase 1: computing the size of the field list and distributing it over multiple records - construct CvFieldList with some precalculated field count/length - for each field, call count(length of field)

Phase 2: write the actual data - call alloc() to allocate debtyp's - for each field, - call writePtr() to get a pointer into the current debtyp - fill memory with field data - call written(length of field) - call debtyp() to create type records and return the index of the first one

Authors

Walter Bright

License

Boost License 1.0