libcubescript/src/cs_gen.hh

95 lines
2.4 KiB
C++
Raw Normal View History

2021-03-24 02:21:27 +01:00
#ifndef LIBCUBESCRIPT_GEN_HH
#define LIBCUBESCRIPT_GEN_HH
#include <cstdint>
#include <string_view>
#include <utility>
#include <cubescript/cubescript.hh>
#include "cs_std.hh"
#include "cs_bcode.hh"
#include "cs_thread.hh"
2021-03-24 02:21:27 +01:00
namespace cubescript {
struct gen_state {
thread_state &ts;
valbuf<std::uint32_t> code;
gen_state() = delete;
gen_state(thread_state &tsr):
ts{tsr}, code{tsr.istate}
{}
std::size_t count() const;
bcode_ref steal_ref();
2021-04-09 03:22:34 +02:00
void gen_pop();
void gen_dup(int ltype = 0);
void gen_push_result(int ltype = 0);
void gen_force(int ltype);
2021-04-09 03:22:34 +02:00
void gen_val_null();
void gen_result_null(int ltype = 0);
void gen_result_true(int ltype = 0);
void gen_result_false(int ltype = 0);
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
);
2021-04-09 03:34:48 +02:00
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);
2021-04-09 03:22:34 +02:00
void gen_compile(bool cond = false);
void gen_ident_lookup();
void gen_concat(std::size_t concs, bool space, int ltype = 0);
void gen_command_call(
ident &id, int comt, int ltype = 0, std::uint32_t nargs = 0
);
void gen_alias_call(ident &id, std::uint32_t nargs = 0);
void gen_call(std::uint32_t nargs = 0);
void gen_local(std::uint32_t nargs);
2021-04-10 00:54:28 +02:00
void gen_main(
std::string_view s, std::string_view src = std::string_view{}
);
2021-04-09 00:50:13 +02:00
void gen_main_null();
void gen_main_integer(integer_type v);
void gen_main_float(float_type v);
void gen_block();
std::pair<std::size_t, std::string_view> gen_block(
std::string_view v, std::size_t line,
int ret_type = BC_RET_NULL, int term = '\0'
);
};
2021-03-24 02:21:27 +01:00
} /* namespace cubescript */
#endif /* LIBCUBESCRIPT_GEN_HH */