libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
mir.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5#include "types/dstring.h"
6#include "types/hashtable.h"
7
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
14
15extern const char* mya_types[];
16
22
37
46
58
77
87
97
112
const char * mya_types[]
Definition globals.c:37
A bitfield's field declaration.
Definition mir.h:42
uint32_t size
Size in bits of the field.
Definition mir.h:44
dstring_t name
Name of the field.
Definition mir.h:43
A bitfield or bitfield's field declaration.
Definition mir.h:68
mir_bitfield_spec_type_t type
Specify the type of this bitfield specification.
Definition mir.h:70
unsigned int _spec_size
Size of the allocated memory for spec array.
Definition mir.h:75
dstring_t identifier
Bitfield's value identifier.
Definition mir.h:71
struct mir_bitfield_spec * spec
Bitfield's list of field specifications.
Definition mir.h:73
unsigned int spec_length
Number of elements on the spec array.
Definition mir.h:74
dstring_t name
Name of the bitfield.
Definition mir.h:69
int64_t value
Bitfield's literal value.
Definition mir.h:72
A bitfield declaration.
Definition mir.h:51
mir_bitfield_field_t * fields
Array of fields.
Definition mir.h:54
unsigned int fields_length
Number of elements on the fields array.
Definition mir.h:55
uint32_t size
Size in bits of the bitfield.
Definition mir.h:53
unsigned int _fields_size
Size of the allocated memory for fields array.
Definition mir.h:56
dstring_t name
Name of the bitfield.
Definition mir.h:52
An instruction's parameter.
Definition mir.h:92
mir_type_t type
Type of the parameter.
Definition mir.h:94
uint32_t size
Size in bits of the parameter.
Definition mir.h:95
dstring_t name
Name of the parameter.
Definition mir.h:93
Instruction declaration.
Definition mir.h:102
dstring_t name
Instruction name.
Definition mir.h:103
unsigned int fields_length
Number of elements on the fields array.
Definition mir.h:107
unsigned int _fields_size
Size of the allocated memory for fields array.
Definition mir.h:109
unsigned int _parameters_size
Size of the allocated memory for parameters array.
Definition mir.h:110
mir_inst_param_t * parameters
List of instruction's parameters.
Definition mir.h:105
uint32_t size
Instruction size in bits.
Definition mir.h:104
mir_bitfield_spec_t * fields
Instruction field's specification list.
Definition mir.h:106
unsigned int parameters_length
Number of paramenters on the parameters array.
Definition mir.h:108
Register declaration.
Definition mir.h:82
uint32_t size
Register size in bits.
Definition mir.h:84
mir_bitfield_spec_t spec
Register's bitfield specification.
Definition mir.h:85
dstring_t name
Register name.
Definition mir.h:83
Mya in-memory intermediate representation.
Definition mir.h:117
unsigned int _instructions_size
The size of the allocated memory for instructions list.
Definition mir.h:128
unsigned int registers_length
The number of declared registers.
Definition mir.h:124
hashtable_t variables
Hashtable of variables.
Definition mir.h:121
unsigned int instructions_length
The number of declared instructions.
Definition mir.h:125
mir_bitfield_t * bitfields
List of bitfields.
Definition mir.h:118
unsigned int bitfields_length
The number of declared bitfields.
Definition mir.h:123
hashtable_t _bitfields_index
Bitfields indexes.
Definition mir.h:130
hashtable_t _instructions_index
Instructions indexes.
Definition mir.h:132
mir_inst_t * instructions
List of instructions.
Definition mir.h:120
unsigned int _registers_size
The size of the allocated memory for registers list.
Definition mir.h:127
unsigned int _bitfields_size
The size of the allocated memory for bitfields list.
Definition mir.h:126
mir_register_t * registers
List of registers.
Definition mir.h:119
hashtable_t _registers_index
Registers indexes.
Definition mir.h:131
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.
Definition mir.h:27
@ FT_LITERAL
Bitfield spec value is a literal value.
Definition mir.h:32
@ FT_FIELDS
Bitfied spec value has a body with a list of fields.
Definition mir.h:28
@ FT_SPEC
Bitfield spec value is a bitfield spec.
Definition mir.h:34
@ FT_IDENTIFIER
Bitfield spec value is a identifier.
Definition mir.h:30
struct mir_register mir_register_t
Register declaration.
enum mir_type mir_type_t
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.
mir_type
Definition mir.h:18
@ TYPE_IMMEDIATE
Definition mir.h:19
@ TYPE_REGISTER
Definition mir.h:20