| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784 |
- #pragma once
- #include "codeobject.h"
- #include "common.h"
- #include "lexer.h"
- #include "error.h"
- #include "ceval.h"
- #include "str.h"
- namespace pkpy{
- struct CodeEmitContext;
- struct Expr;
- typedef std::unique_ptr<Expr> Expr_;
- struct Expr{
- int line = 0;
- virtual ~Expr() = default;
- virtual void emit(CodeEmitContext* ctx) = 0;
- virtual std::string str() const = 0;
- virtual bool is_starred() const { return false; }
- virtual bool is_literal() const { return false; }
- virtual bool is_json_object() const { return false; }
- virtual bool is_attrib() const { return false; }
- virtual bool is_compare() const { return false; }
- // for OP_DELETE_XXX
- [[nodiscard]] virtual bool emit_del(CodeEmitContext* ctx) { return false; }
- // for OP_STORE_XXX
- [[nodiscard]] virtual bool emit_store(CodeEmitContext* ctx) { return false; }
- };
- struct CodeEmitContext{
- VM* vm;
- CodeObject_ co;
- stack<Expr_> s_expr;
- int level;
- CodeEmitContext(VM* vm, CodeObject_ co, int level): vm(vm), co(co), level(level) {}
- int curr_block_i = 0;
- bool is_compiling_class = false;
- int for_loop_depth = 0;
- bool is_curr_block_loop() const {
- return co->blocks[curr_block_i].type == FOR_LOOP || co->blocks[curr_block_i].type == WHILE_LOOP;
- }
- void enter_block(CodeBlockType type){
- if(type == FOR_LOOP) for_loop_depth++;
- co->blocks.push_back(CodeBlock(
- type, curr_block_i, for_loop_depth, (int)co->codes.size()
- ));
- curr_block_i = co->blocks.size()-1;
- }
- void exit_block(){
- if(co->blocks[curr_block_i].type == FOR_LOOP) for_loop_depth--;
- co->blocks[curr_block_i].end = co->codes.size();
- curr_block_i = co->blocks[curr_block_i].parent;
- if(curr_block_i < 0) FATAL_ERROR();
- }
- // clear the expression stack and generate bytecode
- void emit_expr(){
- if(s_expr.size() != 1){
- throw std::runtime_error("s_expr.size() != 1\n" + _log_s_expr());
- }
- Expr_ expr = s_expr.popx();
- expr->emit(this);
- }
- std::string _log_s_expr(){
- std::stringstream ss;
- for(auto& e: s_expr.data()) ss << e->str() << " ";
- return ss.str();
- }
- int emit(Opcode opcode, int arg, int line) {
- co->codes.push_back(
- Bytecode{(uint16_t)opcode, (uint16_t)curr_block_i, arg}
- );
- co->lines.push_back(line);
- int i = co->codes.size() - 1;
- if(line==BC_KEEPLINE){
- if(i>=1) co->lines[i] = co->lines[i-1];
- else co->lines[i] = 1;
- }
- return i;
- }
- void patch_jump(int index) {
- int target = co->codes.size();
- co->codes[index].arg = target;
- }
- bool add_label(StrName name){
- if(co->labels.contains(name)) return false;
- co->labels.set(name, co->codes.size());
- return true;
- }
- int add_varname(StrName name){
- int index = co->varnames_inv.try_get(name);
- if(index >= 0) return index;
- co->varnames.push_back(name);
- index = co->varnames.size() - 1;
- co->varnames_inv.set(name, index);
- return index;
- }
- int add_const(PyObject* v){
- // simple deduplication, only works for int/float
- for(int i=0; i<co->consts.size(); i++){
- if(co->consts[i] == v) return i;
- }
- co->consts.push_back(v);
- return co->consts.size() - 1;
- }
- int add_func_decl(FuncDecl_ decl){
- co->func_decls.push_back(decl);
- return co->func_decls.size() - 1;
- }
- };
- struct NameExpr: Expr{
- StrName name;
- NameScope scope;
- NameExpr(StrName name, NameScope scope): name(name), scope(scope) {}
- std::string str() const override { return fmt("Name(", name.escape(), ")"); }
- void emit(CodeEmitContext* ctx) override {
- int index = ctx->co->varnames_inv.try_get(name);
- if(scope == NAME_LOCAL && index >= 0){
- ctx->emit(OP_LOAD_FAST, index, line);
- }else{
- Opcode op = ctx->level <= 1 ? OP_LOAD_GLOBAL : OP_LOAD_NONLOCAL;
- // we cannot determine the scope when calling exec()/eval()
- if(scope == NAME_GLOBAL_UNKNOWN) op = OP_LOAD_NAME;
- ctx->emit(op, StrName(name).index, line);
- }
- }
- bool emit_del(CodeEmitContext* ctx) override {
- switch(scope){
- case NAME_LOCAL:
- ctx->emit(OP_DELETE_FAST, ctx->add_varname(name), line);
- break;
- case NAME_GLOBAL:
- ctx->emit(OP_DELETE_GLOBAL, StrName(name).index, line);
- break;
- case NAME_GLOBAL_UNKNOWN:
- ctx->emit(OP_DELETE_NAME, StrName(name).index, line);
- break;
- default: FATAL_ERROR(); break;
- }
- return true;
- }
- bool emit_store(CodeEmitContext* ctx) override {
- if(ctx->is_compiling_class){
- int index = StrName(name).index;
- ctx->emit(OP_STORE_CLASS_ATTR, index, line);
- return true;
- }
- switch(scope){
- case NAME_LOCAL:
- ctx->emit(OP_STORE_FAST, ctx->add_varname(name), line);
- break;
- case NAME_GLOBAL:
- ctx->emit(OP_STORE_GLOBAL, StrName(name).index, line);
- break;
- case NAME_GLOBAL_UNKNOWN:
- ctx->emit(OP_STORE_NAME, StrName(name).index, line);
- break;
- default: FATAL_ERROR(); break;
- }
- return true;
- }
- };
- struct StarredExpr: Expr{
- Expr_ child;
- StarredExpr(Expr_&& child): child(std::move(child)) {}
- std::string str() const override { return "Starred()"; }
- bool is_starred() const override { return true; }
- void emit(CodeEmitContext* ctx) override {
- child->emit(ctx);
- ctx->emit(OP_UNPACK_UNLIMITED, BC_NOARG, line);
- }
- bool emit_store(CodeEmitContext* ctx) override {
- // simply proxy to child
- return child->emit_store(ctx);
- }
- };
- struct NotExpr: Expr{
- Expr_ child;
- NotExpr(Expr_&& child): child(std::move(child)) {}
- std::string str() const override { return "Not()"; }
- void emit(CodeEmitContext* ctx) override {
- child->emit(ctx);
- ctx->emit(OP_UNARY_NOT, BC_NOARG, line);
- }
- };
- struct AndExpr: Expr{
- Expr_ lhs;
- Expr_ rhs;
- std::string str() const override { return "And()"; }
- void emit(CodeEmitContext* ctx) override {
- lhs->emit(ctx);
- int patch = ctx->emit(OP_JUMP_IF_FALSE_OR_POP, BC_NOARG, line);
- rhs->emit(ctx);
- ctx->patch_jump(patch);
- }
- };
- struct OrExpr: Expr{
- Expr_ lhs;
- Expr_ rhs;
- std::string str() const override { return "Or()"; }
- void emit(CodeEmitContext* ctx) override {
- lhs->emit(ctx);
- int patch = ctx->emit(OP_JUMP_IF_TRUE_OR_POP, BC_NOARG, line);
- rhs->emit(ctx);
- ctx->patch_jump(patch);
- }
- };
- // [None, True, False, ...]
- struct Literal0Expr: Expr{
- TokenIndex token;
- Literal0Expr(TokenIndex token): token(token) {}
- std::string str() const override { return TK_STR(token); }
- void emit(CodeEmitContext* ctx) override {
- switch (token) {
- case TK("None"): ctx->emit(OP_LOAD_NONE, BC_NOARG, line); break;
- case TK("True"): ctx->emit(OP_LOAD_TRUE, BC_NOARG, line); break;
- case TK("False"): ctx->emit(OP_LOAD_FALSE, BC_NOARG, line); break;
- case TK("..."): ctx->emit(OP_LOAD_ELLIPSIS, BC_NOARG, line); break;
- default: FATAL_ERROR();
- }
- }
- bool is_json_object() const override { return true; }
- };
- // @num, @str which needs to invoke OP_LOAD_CONST
- struct LiteralExpr: Expr{
- TokenValue value;
- LiteralExpr(TokenValue value): value(value) {}
- std::string str() const override {
- if(std::holds_alternative<i64>(value)){
- return std::to_string(std::get<i64>(value));
- }
- if(std::holds_alternative<f64>(value)){
- return std::to_string(std::get<f64>(value));
- }
- if(std::holds_alternative<Str>(value)){
- Str s = std::get<Str>(value).escape();
- return s.str();
- }
- FATAL_ERROR();
- }
- void emit(CodeEmitContext* ctx) override {
- VM* vm = ctx->vm;
- PyObject* obj = nullptr;
- if(std::holds_alternative<i64>(value)){
- i64 _val = std::get<i64>(value);
- if(_val >= INT16_MIN && _val <= INT16_MAX){
- ctx->emit(OP_LOAD_INTEGER, (int)_val, line);
- return;
- }
- obj = VAR(_val);
- }
- if(std::holds_alternative<f64>(value)){
- obj = VAR(std::get<f64>(value));
- }
- if(std::holds_alternative<Str>(value)){
- obj = VAR(std::get<Str>(value));
- }
- if(obj == nullptr) FATAL_ERROR();
- ctx->emit(OP_LOAD_CONST, ctx->add_const(obj), line);
- }
- bool is_literal() const override { return true; }
- bool is_json_object() const override { return true; }
- };
- struct NegatedExpr: Expr{
- Expr_ child;
- NegatedExpr(Expr_&& child): child(std::move(child)) {}
- std::string str() const override { return "Negated()"; }
- void emit(CodeEmitContext* ctx) override {
- VM* vm = ctx->vm;
- // if child is a int of float, do constant folding
- if(child->is_literal()){
- LiteralExpr* lit = static_cast<LiteralExpr*>(child.get());
- if(std::holds_alternative<i64>(lit->value)){
- i64 _val = -std::get<i64>(lit->value);
- if(_val >= INT16_MIN && _val <= INT16_MAX){
- ctx->emit(OP_LOAD_INTEGER, (int)_val, line);
- }else{
- ctx->emit(OP_LOAD_CONST, ctx->add_const(VAR(_val)), line);
- }
- return;
- }
- if(std::holds_alternative<f64>(lit->value)){
- PyObject* obj = VAR(-std::get<f64>(lit->value));
- ctx->emit(OP_LOAD_CONST, ctx->add_const(obj), line);
- return;
- }
- }
- child->emit(ctx);
- ctx->emit(OP_UNARY_NEGATIVE, BC_NOARG, line);
- }
- bool is_json_object() const override {
- return child->is_literal();
- }
- };
- struct SliceExpr: Expr{
- Expr_ start;
- Expr_ stop;
- Expr_ step;
- std::string str() const override { return "Slice()"; }
- void emit(CodeEmitContext* ctx) override {
- if(start){
- start->emit(ctx);
- }else{
- ctx->emit(OP_LOAD_NONE, BC_NOARG, line);
- }
- if(stop){
- stop->emit(ctx);
- }else{
- ctx->emit(OP_LOAD_NONE, BC_NOARG, line);
- }
- if(step){
- step->emit(ctx);
- }else{
- ctx->emit(OP_LOAD_NONE, BC_NOARG, line);
- }
- ctx->emit(OP_BUILD_SLICE, BC_NOARG, line);
- }
- };
- struct DictItemExpr: Expr{
- Expr_ key;
- Expr_ value;
- std::string str() const override { return "DictItem()"; }
- void emit(CodeEmitContext* ctx) override {
- value->emit(ctx);
- key->emit(ctx); // reverse order
- ctx->emit(OP_BUILD_TUPLE, 2, line);
- }
- };
- struct SequenceExpr: Expr{
- std::vector<Expr_> items;
- SequenceExpr(std::vector<Expr_>&& items): items(std::move(items)) {}
- virtual Opcode opcode() const = 0;
- void emit(CodeEmitContext* ctx) override {
- for(auto& item: items) item->emit(ctx);
- ctx->emit(opcode(), items.size(), line);
- }
- };
- struct ListExpr: SequenceExpr{
- using SequenceExpr::SequenceExpr;
- std::string str() const override { return "List()"; }
- Opcode opcode() const override { return OP_BUILD_LIST; }
- bool is_json_object() const override { return true; }
- };
- struct DictExpr: SequenceExpr{
- using SequenceExpr::SequenceExpr;
- std::string str() const override { return "Dict()"; }
- Opcode opcode() const override { return OP_BUILD_DICT; }
- bool is_json_object() const override { return true; }
- };
- struct SetExpr: SequenceExpr{
- using SequenceExpr::SequenceExpr;
- std::string str() const override { return "Set()"; }
- Opcode opcode() const override { return OP_BUILD_SET; }
- };
- struct TupleExpr: SequenceExpr{
- using SequenceExpr::SequenceExpr;
- std::string str() const override { return "Tuple()"; }
- Opcode opcode() const override { return OP_BUILD_TUPLE; }
- bool emit_store(CodeEmitContext* ctx) override {
- // TOS is an iterable
- // items may contain StarredExpr, we should check it
- int starred_i = -1;
- for(int i=0; i<items.size(); i++){
- if(!items[i]->is_starred()) continue;
- if(starred_i == -1) starred_i = i;
- else return false; // multiple StarredExpr not allowed
- }
- if(starred_i == -1){
- Bytecode& prev = ctx->co->codes.back();
- if(prev.op == OP_BUILD_TUPLE && prev.arg == items.size()){
- // build tuple and unpack it is meaningless
- prev.op = OP_NO_OP;
- prev.arg = BC_NOARG;
- }else{
- ctx->emit(OP_UNPACK_SEQUENCE, items.size(), line);
- }
- }else{
- // starred assignment target must be in a tuple
- if(items.size() == 1) return false;
- // starred assignment target must be the last one (differ from cpython)
- if(starred_i != items.size()-1) return false;
- // a,*b = [1,2,3]
- // stack is [1,2,3] -> [1,[2,3]]
- ctx->emit(OP_UNPACK_EX, items.size()-1, line);
- }
- // do reverse emit
- for(int i=items.size()-1; i>=0; i--){
- bool ok = items[i]->emit_store(ctx);
- if(!ok) return false;
- }
- return true;
- }
- bool emit_del(CodeEmitContext* ctx) override{
- for(auto& e: items){
- bool ok = e->emit_del(ctx);
- if(!ok) return false;
- }
- return true;
- }
- };
- struct CompExpr: Expr{
- Expr_ expr; // loop expr
- Expr_ vars; // loop vars
- Expr_ iter; // loop iter
- Expr_ cond; // optional if condition
- virtual Opcode op0() = 0;
- virtual Opcode op1() = 0;
- void emit(CodeEmitContext* ctx){
- ctx->emit(op0(), 0, line);
- iter->emit(ctx);
- ctx->emit(OP_GET_ITER, BC_NOARG, BC_KEEPLINE);
- ctx->enter_block(FOR_LOOP);
- ctx->emit(OP_FOR_ITER, BC_NOARG, BC_KEEPLINE);
- bool ok = vars->emit_store(ctx);
- // this error occurs in `vars` instead of this line, but...nevermind
- if(!ok) FATAL_ERROR(); // TODO: raise a SyntaxError instead
- if(cond){
- cond->emit(ctx);
- int patch = ctx->emit(OP_POP_JUMP_IF_FALSE, BC_NOARG, BC_KEEPLINE);
- expr->emit(ctx);
- ctx->emit(op1(), BC_NOARG, BC_KEEPLINE);
- ctx->patch_jump(patch);
- }else{
- expr->emit(ctx);
- ctx->emit(op1(), BC_NOARG, BC_KEEPLINE);
- }
- ctx->emit(OP_LOOP_CONTINUE, BC_NOARG, BC_KEEPLINE);
- ctx->exit_block();
- }
- };
- struct ListCompExpr: CompExpr{
- Opcode op0() override { return OP_BUILD_LIST; }
- Opcode op1() override { return OP_LIST_APPEND; }
- std::string str() const override { return "ListComp()"; }
- };
- struct DictCompExpr: CompExpr{
- Opcode op0() override { return OP_BUILD_DICT; }
- Opcode op1() override { return OP_DICT_ADD; }
- std::string str() const override { return "DictComp()"; }
- };
- struct SetCompExpr: CompExpr{
- Opcode op0() override { return OP_BUILD_SET; }
- Opcode op1() override { return OP_SET_ADD; }
- std::string str() const override { return "SetComp()"; }
- };
- struct LambdaExpr: Expr{
- FuncDecl_ decl;
- std::string str() const override { return "Lambda()"; }
- LambdaExpr(FuncDecl_ decl): decl(decl) {}
- void emit(CodeEmitContext* ctx) override {
- int index = ctx->add_func_decl(decl);
- ctx->emit(OP_LOAD_FUNCTION, index, line);
- }
- };
- struct FStringExpr: Expr{
- Str src;
- FStringExpr(const Str& src): src(src) {}
- std::string str() const override {
- return fmt("f", src.escape());
- }
- void _load_simple_expr(CodeEmitContext* ctx, Str expr){
- // TODO: pre compile this into a function
- int dot = expr.index(".");
- if(dot < 0){
- ctx->emit(OP_LOAD_NAME, StrName(expr.sv()).index, line);
- }else{
- StrName name(expr.substr(0, dot).sv());
- StrName attr(expr.substr(dot+1).sv());
- ctx->emit(OP_LOAD_NAME, name.index, line);
- ctx->emit(OP_LOAD_ATTR, attr.index, line);
- }
- }
- void emit(CodeEmitContext* ctx) override {
- VM* vm = ctx->vm;
- static const std::regex pattern(R"(\{(.*?)\})");
- std::cregex_iterator begin(src.begin(), src.end(), pattern);
- std::cregex_iterator end;
- int size = 0;
- int i = 0;
- for(auto it = begin; it != end; it++) {
- std::cmatch m = *it;
- if (i < m.position()) {
- Str literal = src.substr(i, m.position() - i);
- ctx->emit(OP_LOAD_CONST, ctx->add_const(VAR(literal)), line);
- size++;
- }
- Str expr = m[1].str();
- int conon = expr.index(":");
- if(conon >= 0){
- _load_simple_expr(ctx, expr.substr(0, conon));
- Str spec = expr.substr(conon+1);
- ctx->emit(OP_FORMAT_STRING, ctx->add_const(VAR(spec)), line);
- }else{
- _load_simple_expr(ctx, expr);
- }
- size++;
- i = (int)(m.position() + m.length());
- }
- if (i < src.length()) {
- Str literal = src.substr(i, src.length() - i);
- ctx->emit(OP_LOAD_CONST, ctx->add_const(VAR(literal)), line);
- size++;
- }
- ctx->emit(OP_BUILD_STRING, size, line);
- }
- };
- struct SubscrExpr: Expr{
- Expr_ a;
- Expr_ b;
- std::string str() const override { return "Subscr()"; }
- void emit(CodeEmitContext* ctx) override{
- a->emit(ctx);
- b->emit(ctx);
- ctx->emit(OP_LOAD_SUBSCR, BC_NOARG, line);
- }
- bool emit_del(CodeEmitContext* ctx) override {
- a->emit(ctx);
- b->emit(ctx);
- ctx->emit(OP_DELETE_SUBSCR, BC_NOARG, line);
- return true;
- }
- bool emit_store(CodeEmitContext* ctx) override {
- a->emit(ctx);
- b->emit(ctx);
- ctx->emit(OP_STORE_SUBSCR, BC_NOARG, line);
- return true;
- }
- };
- struct AttribExpr: Expr{
- Expr_ a;
- Str b;
- AttribExpr(Expr_ a, const Str& b): a(std::move(a)), b(b) {}
- AttribExpr(Expr_ a, Str&& b): a(std::move(a)), b(std::move(b)) {}
- std::string str() const override { return "Attrib()"; }
- void emit(CodeEmitContext* ctx) override{
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_LOAD_ATTR, index, line);
- }
- bool emit_del(CodeEmitContext* ctx) override {
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_DELETE_ATTR, index, line);
- return true;
- }
- bool emit_store(CodeEmitContext* ctx) override {
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_STORE_ATTR, index, line);
- return true;
- }
- void emit_method(CodeEmitContext* ctx) {
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_LOAD_METHOD, index, line);
- }
- bool is_attrib() const override { return true; }
- };
- struct CallExpr: Expr{
- Expr_ callable;
- std::vector<Expr_> args;
- std::vector<std::pair<Str, Expr_>> kwargs;
- std::string str() const override { return "Call()"; }
- bool need_unpack() const {
- for(auto& item: args) if(item->is_starred()) return true;
- return false;
- }
- void emit(CodeEmitContext* ctx) override {
- VM* vm = ctx->vm;
- if(need_unpack()) ctx->emit(OP_BEGIN_CALL, BC_NOARG, line);
- // if callable is a AttrExpr, we should try to use `fast_call` instead of use `boundmethod` proxy
- if(callable->is_attrib()){
- auto p = static_cast<AttribExpr*>(callable.get());
- p->emit_method(ctx);
- }else{
- callable->emit(ctx);
- ctx->emit(OP_LOAD_NULL, BC_NOARG, BC_KEEPLINE);
- }
- // emit args
- for(auto& item: args) item->emit(ctx);
- // emit kwargs
- for(auto& item: kwargs){
- int index = StrName::get(item.first.sv()).index;
- ctx->emit(OP_LOAD_CONST, ctx->add_const(VAR(index)), line);
- item.second->emit(ctx);
- }
- int KWARGC = (int)kwargs.size();
- int ARGC = (int)args.size();
- if(need_unpack()) ARGC = 0xFFFF;
- ctx->emit(OP_CALL, (KWARGC<<16)|ARGC, line);
- }
- };
- struct BinaryExpr: Expr{
- TokenIndex op;
- Expr_ lhs;
- Expr_ rhs;
- std::string str() const override { return TK_STR(op); }
- bool is_compare() const override {
- switch(op){
- case TK("<"): case TK("<="): case TK("=="):
- case TK("!="): case TK(">"): case TK(">="): return true;
- default: return false;
- }
- }
- void _emit_compare(CodeEmitContext* ctx, std::vector<int>& jmps){
- if(lhs->is_compare()){
- static_cast<BinaryExpr*>(lhs.get())->_emit_compare(ctx, jmps);
- }else{
- lhs->emit(ctx); // [a]
- }
- rhs->emit(ctx); // [a, b]
- ctx->emit(OP_DUP_TOP, BC_NOARG, line); // [a, b, b]
- ctx->emit(OP_ROT_THREE, BC_NOARG, line); // [b, a, b]
- switch(op){
- case TK("<"): ctx->emit(OP_COMPARE_LT, BC_NOARG, line); break;
- case TK("<="): ctx->emit(OP_COMPARE_LE, BC_NOARG, line); break;
- case TK("=="): ctx->emit(OP_COMPARE_EQ, BC_NOARG, line); break;
- case TK("!="): ctx->emit(OP_COMPARE_NE, BC_NOARG, line); break;
- case TK(">"): ctx->emit(OP_COMPARE_GT, BC_NOARG, line); break;
- case TK(">="): ctx->emit(OP_COMPARE_GE, BC_NOARG, line); break;
- default: UNREACHABLE();
- }
- // [b, RES]
- int index = ctx->emit(OP_SHORTCUT_IF_FALSE_OR_POP, BC_NOARG, line);
- jmps.push_back(index);
- }
- void emit(CodeEmitContext* ctx) override {
- std::vector<int> jmps;
- if(is_compare() && lhs->is_compare()){
- // (a < b) < c
- static_cast<BinaryExpr*>(lhs.get())->_emit_compare(ctx, jmps);
- // [b, RES]
- }else{
- // (1 + 2) < c
- lhs->emit(ctx);
- }
- rhs->emit(ctx);
- switch (op) {
- case TK("+"): ctx->emit(OP_BINARY_ADD, BC_NOARG, line); break;
- case TK("-"): ctx->emit(OP_BINARY_SUB, BC_NOARG, line); break;
- case TK("*"): ctx->emit(OP_BINARY_MUL, BC_NOARG, line); break;
- case TK("/"): ctx->emit(OP_BINARY_TRUEDIV, BC_NOARG, line); break;
- case TK("//"): ctx->emit(OP_BINARY_FLOORDIV, BC_NOARG, line); break;
- case TK("%"): ctx->emit(OP_BINARY_MOD, BC_NOARG, line); break;
- case TK("**"): ctx->emit(OP_BINARY_POW, BC_NOARG, line); break;
- case TK("<"): ctx->emit(OP_COMPARE_LT, BC_NOARG, line); break;
- case TK("<="): ctx->emit(OP_COMPARE_LE, BC_NOARG, line); break;
- case TK("=="): ctx->emit(OP_COMPARE_EQ, BC_NOARG, line); break;
- case TK("!="): ctx->emit(OP_COMPARE_NE, BC_NOARG, line); break;
- case TK(">"): ctx->emit(OP_COMPARE_GT, BC_NOARG, line); break;
- case TK(">="): ctx->emit(OP_COMPARE_GE, BC_NOARG, line); break;
- case TK("in"): ctx->emit(OP_CONTAINS_OP, 0, line); break;
- case TK("not in"): ctx->emit(OP_CONTAINS_OP, 1, line); break;
- case TK("is"): ctx->emit(OP_IS_OP, 0, line); break;
- case TK("is not"): ctx->emit(OP_IS_OP, 1, line); break;
- case TK("<<"): ctx->emit(OP_BITWISE_LSHIFT, BC_NOARG, line); break;
- case TK(">>"): ctx->emit(OP_BITWISE_RSHIFT, BC_NOARG, line); break;
- case TK("&"): ctx->emit(OP_BITWISE_AND, BC_NOARG, line); break;
- case TK("|"): ctx->emit(OP_BITWISE_OR, BC_NOARG, line); break;
- case TK("^"): ctx->emit(OP_BITWISE_XOR, BC_NOARG, line); break;
- case TK("@"): ctx->emit(OP_BINARY_MATMUL, BC_NOARG, line); break;
- default: FATAL_ERROR();
- }
- for(int i: jmps) ctx->patch_jump(i);
- }
- };
- struct TernaryExpr: Expr{
- Expr_ cond;
- Expr_ true_expr;
- Expr_ false_expr;
- std::string str() const override { return "Ternary()"; }
- void emit(CodeEmitContext* ctx) override {
- cond->emit(ctx);
- int patch = ctx->emit(OP_POP_JUMP_IF_FALSE, BC_NOARG, cond->line);
- true_expr->emit(ctx);
- int patch_2 = ctx->emit(OP_JUMP_ABSOLUTE, BC_NOARG, true_expr->line);
- ctx->patch_jump(patch);
- false_expr->emit(ctx);
- ctx->patch_jump(patch_2);
- }
- };
- } // namespace pkpy
|