libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
mir_bitfield_spec Struct Reference

A bitfield or bitfield's field declaration. More...

#include <mir.h>

Collaboration diagram for mir_bitfield_spec:

Data Fields

dstring_t name
 Name of the bitfield.
 
mir_bitfield_spec_type_t type
 Specify the type of this bitfield specification.
 
dstring_t identifier
 Bitfield's value identifier.
 
int64_t value
 Bitfield's literal value.
 
struct mir_bitfield_specspec
 Bitfield's list of field specifications.
 
unsigned int spec_length
 Number of elements on the spec array.
 
unsigned int _spec_size
 Size of the allocated memory for spec array.
 

Detailed Description

A bitfield or bitfield's field declaration.

Examples:

  1. Reg{arg1}
  2. Opcode { opcode = 0x11, reg = arg1 }

In the second example, the opcode = 0x11 and reg = arg1 are represented with this struct too, in the spec list of the Opcode{} specification.

Definition at line 67 of file mir.h.

Field Documentation

◆ _spec_size

unsigned int mir_bitfield_spec::_spec_size

Size of the allocated memory for spec array.

Definition at line 75 of file mir.h.

◆ identifier

dstring_t mir_bitfield_spec::identifier

Bitfield's value identifier.

Definition at line 71 of file mir.h.

◆ name

dstring_t mir_bitfield_spec::name

Name of the bitfield.

Definition at line 69 of file mir.h.

◆ spec

struct mir_bitfield_spec* mir_bitfield_spec::spec

Bitfield's list of field specifications.

Definition at line 73 of file mir.h.

◆ spec_length

unsigned int mir_bitfield_spec::spec_length

Number of elements on the spec array.

Definition at line 74 of file mir.h.

◆ type

mir_bitfield_spec_type_t mir_bitfield_spec::type

Specify the type of this bitfield specification.

Definition at line 70 of file mir.h.

◆ value

int64_t mir_bitfield_spec::value

Bitfield's literal value.

Definition at line 72 of file mir.h.


The documentation for this struct was generated from the following file: