8#define MIR_LIST_INITIAL_SIZE 50
9#define MIR_LIST_INCREMENT_SIZE 100
10#define MIR_BITFIELD_HASHTABLE_SIZE 1000
11#define MIR_INSTRUCTION_HASHTABLE_SIZE 1000
12#define MIR_REGISTER_HASHTABLE_SIZE 1000
13#define MIR_VARIABLE_HASHTABLE_SIZE 1000
A bitfield's field declaration.
uint32_t size
Size in bits of the field.
dstring_t name
Name of the field.
A bitfield or bitfield's field declaration.
mir_bitfield_spec_type_t type
Specify the type of this bitfield specification.
unsigned int _spec_size
Size of the allocated memory for spec array.
dstring_t identifier
Bitfield's value identifier.
struct mir_bitfield_spec * spec
Bitfield's list of field specifications.
unsigned int spec_length
Number of elements on the spec array.
dstring_t name
Name of the bitfield.
int64_t value
Bitfield's literal value.
mir_bitfield_field_t * fields
Array of fields.
unsigned int fields_length
Number of elements on the fields array.
uint32_t size
Size in bits of the bitfield.
unsigned int _fields_size
Size of the allocated memory for fields array.
dstring_t name
Name of the bitfield.
An instruction's parameter.
mir_type_t type
Type of the parameter.
uint32_t size
Size in bits of the parameter.
dstring_t name
Name of the parameter.
dstring_t name
Instruction name.
unsigned int fields_length
Number of elements on the fields array.
unsigned int _fields_size
Size of the allocated memory for fields array.
unsigned int _parameters_size
Size of the allocated memory for parameters array.
mir_inst_param_t * parameters
List of instruction's parameters.
uint32_t size
Instruction size in bits.
mir_bitfield_spec_t * fields
Instruction field's specification list.
unsigned int parameters_length
Number of paramenters on the parameters array.
uint32_t size
Register size in bits.
mir_bitfield_spec_t spec
Register's bitfield specification.
dstring_t name
Register name.
Mya in-memory intermediate representation.
unsigned int _instructions_size
The size of the allocated memory for instructions list.
unsigned int registers_length
The number of declared registers.
hashtable_t variables
Hashtable of variables.
unsigned int instructions_length
The number of declared instructions.
mir_bitfield_t * bitfields
List of bitfields.
unsigned int bitfields_length
The number of declared bitfields.
hashtable_t _bitfields_index
Bitfields indexes.
hashtable_t _instructions_index
Instructions indexes.
mir_inst_t * instructions
List of instructions.
unsigned int _registers_size
The size of the allocated memory for registers list.
unsigned int _bitfields_size
The size of the allocated memory for bitfields list.
mir_register_t * registers
List of registers.
hashtable_t _registers_index
Registers indexes.
struct dstring dstring_t
A dynamic string (dstring) that automatically reallocate her buffer when needed.
struct hashtable hashtable_t
A hashtable.
mir_bitfield_spec_type
A bitfield spec type.
@ FT_LITERAL
Bitfield spec value is a literal value.
@ FT_FIELDS
Bitfied spec value has a body with a list of fields.
@ FT_SPEC
Bitfield spec value is a bitfield spec.
@ FT_IDENTIFIER
Bitfield spec value is a identifier.
struct mir_register mir_register_t
Register declaration.
struct mir_bitfield_field mir_bitfield_field_t
A bitfield's field declaration.
enum mir_bitfield_spec_type mir_bitfield_spec_type_t
A bitfield spec type.
struct mir_inst_param mir_inst_param_t
An instruction's parameter.
struct mir_bitfield mir_bitfield_t
A bitfield declaration.
struct mir_bitfield_spec mir_bitfield_spec_t
A bitfield or bitfield's field declaration.
struct mir_inst mir_inst_t
Instruction declaration.
struct mir mir_t
Mya in-memory intermediate representation.