23c3575f0f
attributes when allocating. Unfortunately, backward edges don't work (because the limited def-use chain stuff doesn't work across basic blocks). Needs more thought.
87 lines
1.9 KiB
C
87 lines
1.9 KiB
C
#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)
|
|
#define OP_LABEL(p) ((p)->label)
|
|
#define LEFT_CHILD(p) ((p)->left)
|
|
#define RIGHT_CHILD(p) ((p)->right)
|
|
|
|
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);
|
|
extern int burm_rule(void* state, int goalnt);
|
|
extern const short *burm_nts[];
|
|
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);
|
|
|
|
struct burm_emitter_data
|
|
{
|
|
void (*emit_string)(const char* data);
|
|
void (*emit_fragment)(int child);
|
|
void (*emit_return_reg)(void);
|
|
void (*emit_reg)(int child);
|
|
void (*emit_value)(int child);
|
|
void (*emit_eoi)(void);
|
|
void (*constrain_input_reg)(int child, uint32_t attr);
|
|
void (*constrain_output_reg)(uint32_t attr);
|
|
};
|
|
|
|
typedef void burm_emitter_t(const struct burm_emitter_data* data);
|
|
|
|
struct burm_instruction_data
|
|
{
|
|
const char* name;
|
|
burm_emitter_t* emitter;
|
|
bool is_fragment;
|
|
};
|
|
|
|
extern const struct burm_instruction_data burm_instruction_data[];
|
|
|
|
struct burm_register_data
|
|
{
|
|
const char* name;
|
|
uint32_t attrs;
|
|
};
|
|
|
|
extern const struct burm_register_data burm_register_data[];
|
|
extern const char* burm_register_class_names[];
|
|
|
|
enum
|
|
{
|
|
REGATTR_BYTES1 = 0,
|
|
REGATTR_BYTES2,
|
|
REGATTR_BYTES4,
|
|
REGATTR_BYTES8
|
|
};
|
|
|
|
enum
|
|
{
|
|
NONTERM_STMT = 1
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim: set sw=4 ts=4 expandtab : */
|