#ifndef LIBCUBESCRIPT_GEN_HH #define LIBCUBESCRIPT_GEN_HH #include #include #include #include #include "cs_std.hh" #include "cs_bcode.hh" #include "cs_thread.hh" namespace cubescript { struct gen_state { thread_state &ts; valbuf code; gen_state() = delete; gen_state(thread_state &tsr): ts{tsr}, code{tsr.istate} {} bcode_ref steal_ref(); void gen_pop(); void gen_val_null(); void gen_val_integer(integer_type v = 0); void gen_val_integer(std::string_view v); void gen_val_float(float_type v = 0); void gen_val_float(std::string_view v); void gen_val_string(std::string_view v = std::string_view{}); void gen_val_string_unescape(std::string_view str); void gen_val_block(std::string_view str); void gen_val_ident(); void gen_val_ident(ident &i); void gen_val_ident(std::string_view v); void gen_val( int val_type, std::string_view v = std::string_view{}, std::size_t line = 0 ); void gen_lookup_ivar(ident &id, int ltype = 0); void gen_lookup_fvar(ident &id, int ltype = 0); void gen_lookup_svar(ident &id, int ltype = 0); void gen_lookup_alias(ident &id, int ltype = 0, int dtype = 0); void gen_lookup_ident(int ltype = 0); void gen_compile(bool cond = false); void gen_ident_lookup(); void gen_main_null(); void gen_main_integer(integer_type v); void gen_main_float(float_type v); void gen_block(); std::pair gen_block( std::string_view v, std::size_t line, int ret_type = BC_RET_NULL, int term = '\0' ); }; } /* namespace cubescript */ #endif /* LIBCUBESCRIPT_GEN_HH */