libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
mir.h File Reference
#include <stdint.h>
#include "types/dstring.h"
#include "types/hashtable.h"
Include dependency graph for mir.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  mir_bitfield_field
 A bitfield's field declaration. More...
 
struct  mir_bitfield
 A bitfield declaration. More...
 
struct  mir_bitfield_spec
 A bitfield or bitfield's field declaration. More...
 
struct  mir_register
 Register declaration. More...
 
struct  mir_inst_param
 An instruction's parameter. More...
 
struct  mir_inst
 Instruction declaration. More...
 
struct  mir
 Mya in-memory intermediate representation. More...
 

Macros

#define MIR_LIST_INITIAL_SIZE   50
 
#define MIR_LIST_INCREMENT_SIZE   100
 
#define MIR_BITFIELD_HASHTABLE_SIZE   1000
 
#define MIR_INSTRUCTION_HASHTABLE_SIZE   1000
 
#define MIR_REGISTER_HASHTABLE_SIZE   1000
 
#define MIR_VARIABLE_HASHTABLE_SIZE   1000
 

Typedefs

typedef enum mir_type mir_type_t
 
typedef enum mir_bitfield_spec_type mir_bitfield_spec_type_t
 A bitfield spec type.
 
typedef struct mir_bitfield_field mir_bitfield_field_t
 A bitfield's field declaration.
 
typedef struct mir_bitfield mir_bitfield_t
 A bitfield declaration.
 
typedef struct mir_bitfield_spec mir_bitfield_spec_t
 A bitfield or bitfield's field declaration.
 
typedef struct mir_register mir_register_t
 Register declaration.
 
typedef struct mir_inst_param mir_inst_param_t
 An instruction's parameter.
 
typedef struct mir_inst mir_inst_t
 Instruction declaration.
 
typedef struct mir mir_t
 Mya in-memory intermediate representation.
 

Enumerations

enum  mir_type {
  TYPE_IMMEDIATE ,
  TYPE_REGISTER
}
 
enum  mir_bitfield_spec_type {
  FT_FIELDS ,
  FT_IDENTIFIER ,
  FT_LITERAL ,
  FT_SPEC
}
 A bitfield spec type. More...
 

Variables

const char * mya_types []
 

Macro Definition Documentation

◆ MIR_BITFIELD_HASHTABLE_SIZE

#define MIR_BITFIELD_HASHTABLE_SIZE   1000

Definition at line 10 of file mir.h.

◆ MIR_INSTRUCTION_HASHTABLE_SIZE

#define MIR_INSTRUCTION_HASHTABLE_SIZE   1000

Definition at line 11 of file mir.h.

◆ MIR_LIST_INCREMENT_SIZE

#define MIR_LIST_INCREMENT_SIZE   100

Definition at line 9 of file mir.h.

◆ MIR_LIST_INITIAL_SIZE

#define MIR_LIST_INITIAL_SIZE   50

Definition at line 8 of file mir.h.

◆ MIR_REGISTER_HASHTABLE_SIZE

#define MIR_REGISTER_HASHTABLE_SIZE   1000

Definition at line 12 of file mir.h.

◆ MIR_VARIABLE_HASHTABLE_SIZE

#define MIR_VARIABLE_HASHTABLE_SIZE   1000

Definition at line 13 of file mir.h.

Typedef Documentation

◆ mir_bitfield_field_t

A bitfield's field declaration.

◆ mir_bitfield_spec_t

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.

◆ mir_bitfield_spec_type_t

A bitfield spec type.

It's specify the type of the specification for bitfield's value.

◆ mir_bitfield_t

typedef struct mir_bitfield mir_bitfield_t

A bitfield declaration.

◆ mir_inst_param_t

An instruction's parameter.

Example: inst not[32](arg: register[32])

◆ mir_inst_t

typedef struct mir_inst mir_inst_t

Instruction declaration.

◆ mir_register_t

typedef struct mir_register mir_register_t

Register declaration.

◆ mir_t

typedef struct mir mir_t

Mya in-memory intermediate representation.

◆ mir_type_t

typedef enum mir_type mir_type_t

Enumeration Type Documentation

◆ mir_bitfield_spec_type

A bitfield spec type.

It's specify the type of the specification for bitfield's value.

Enumerator
FT_FIELDS 

Bitfied spec value has a body with a list of fields.

Example: Opcode{ opcode = 0x1, reg = arg1 } On this type, spec is the used value with a list of bitfield spec's fields.

FT_IDENTIFIER 

Bitfield spec value is a identifier.

Example: Reg{arg2} On this type, identifier is the used value.

FT_LITERAL 

Bitfield spec value is a literal value.

Example: Reg{4} On this type, value is the used value.

FT_SPEC 

Bitfield spec value is a bitfield spec.

Example: reg = Reg{2} On this type, spec is the used value with an unique bitfield spec.

Definition at line 26 of file mir.h.

27{
28 FT_FIELDS,
34 FT_SPEC,
@ 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
enum mir_bitfield_spec_type mir_bitfield_spec_type_t
A bitfield spec type.

◆ mir_type

enum mir_type
Enumerator
TYPE_IMMEDIATE 
TYPE_REGISTER 

Definition at line 17 of file mir.h.

18{
enum mir_type mir_type_t
@ TYPE_IMMEDIATE
Definition mir.h:19
@ TYPE_REGISTER
Definition mir.h:20

Variable Documentation

◆ mya_types

const char* mya_types[]
extern

Definition at line 37 of file globals.c.

37 {
38 [TYPE_IMMEDIATE] = "immediate",
39 // clang-format hates me.
40 [TYPE_REGISTER] = "register",
41 NULL,
42};