2016-09-24 20:46:08 +00:00
|
|
|
#ifndef MCGG_H
|
|
|
|
#define MCGG_H
|
|
|
|
|
|
|
|
/* Excruciating macro which packs ir opcodes and sizes into an int for iburg's benefit.
|
|
|
|
*
|
|
|
|
* Sizes are mapped as: 0=1, 1=1, 2=2, 4=3, 8=4.
|
|
|
|
*/
|
|
|
|
#define ir_to_esn(iropcode, size) \
|
|
|
|
((iropcode)*4 + \
|
|
|
|
(((size) == 4) ? 2 : \
|
|
|
|
((size) == 8) ? 3 : \
|
|
|
|
((size) == 0) ? 0 : \
|
|
|
|
(size-1)))
|
|
|
|
|
|
|
|
#define STATE_TYPE void*
|
|
|
|
|
|
|
|
#define STATE_LABEL(p) ((p)->state_label)
|
2016-10-03 18:52:36 +00:00
|
|
|
#define OP_LABEL(p) ((p)->label)
|
|
|
|
#define LEFT_CHILD(p) ((p)->left)
|
|
|
|
#define RIGHT_CHILD(p) ((p)->right)
|
2016-09-24 20:46:08 +00:00
|
|
|
|
2016-10-03 18:52:36 +00:00
|
|
|
struct burm_node
|
|
|
|
{
|
|
|
|
int label;
|
|
|
|
void* state_label;
|
|
|
|
struct burm_node* left;
|
|
|
|
struct burm_node* right;
|
|
|
|
struct ir* ir;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct burm_node* NODEPTR_TYPE;
|
|
|
|
|
|
|
|
extern void* burm_label(NODEPTR_TYPE node);
|
2016-09-24 20:46:08 +00:00
|
|
|
extern int burm_rule(void* state, int goalnt);
|
|
|
|
extern const short *burm_nts[];
|
2016-10-03 18:52:36 +00:00
|
|
|
extern NODEPTR_TYPE* burm_kids(NODEPTR_TYPE p, int eruleno, NODEPTR_TYPE kids[]);
|
|
|
|
extern void burm_trace(NODEPTR_TYPE p, int ruleno, int cost, int bestcost);
|
2016-09-24 20:46:08 +00:00
|
|
|
|
2016-09-25 09:49:51 +00:00
|
|
|
struct burm_emitter_data
|
|
|
|
{
|
|
|
|
void (*emit_string)(const char* data);
|
2016-10-03 18:52:36 +00:00
|
|
|
void (*emit_fragment)(NODEPTR_TYPE node, int goal);
|
|
|
|
void (*emit_reg)(NODEPTR_TYPE node, int goal);
|
|
|
|
void (*emit_value)(NODEPTR_TYPE node);
|
2016-09-25 10:18:39 +00:00
|
|
|
void (*emit_eoi)(void);
|
2016-10-03 18:52:36 +00:00
|
|
|
void (*emit_constraint_equals)(NODEPTR_TYPE node, int goal);
|
2016-09-25 09:49:51 +00:00
|
|
|
};
|
|
|
|
|
2016-10-03 18:52:36 +00:00
|
|
|
typedef void burm_emitter_t(NODEPTR_TYPE node, const struct burm_emitter_data* data);
|
2016-09-25 15:14:54 +00:00
|
|
|
|
|
|
|
struct burm_instruction_data
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
burm_emitter_t* emitter;
|
2016-09-25 20:17:14 +00:00
|
|
|
int allocate;
|
2016-09-25 15:14:54 +00:00
|
|
|
bool is_fragment;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct burm_instruction_data burm_instruction_data[];
|
2016-09-29 20:32:43 +00:00
|
|
|
|
|
|
|
struct burm_register_data
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
uint32_t classes;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct burm_register_data burm_register_data[];
|
2016-09-25 21:29:59 +00:00
|
|
|
extern const char* burm_register_class_names[];
|
2016-09-25 09:49:51 +00:00
|
|
|
|
2016-09-24 20:46:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim: set sw=4 ts=4 expandtab : */
|