ccm/lib/compiler.h

37 lines
881 B
C

#ifndef CCM_COMPILER_H
#define CCM_COMPILER_H
#include "commons.h"
#include "bytecode.h"
#include "prog.h"
#include "node.h"
#include "err.h"
#include "module.h"
typedef struct {
module_t* module;
err_t err;
int loc_counter;
} compiler_t;
void compiler_init(compiler_t* self, module_t* module);
void compiler_free(compiler_t* self);
void compiler_compile(compiler_t* self,
node_t* node,
prog_t* prog);
void compiler_compile_or(compiler_t* self,
node_t* node,
prog_t* prog);
void compiler_compile_and(compiler_t* self,
node_t* node,
prog_t* prog);
void compiler_compile_if(compiler_t* self,
node_t* node,
prog_t* prog,
vec_t* to_end);
#endif