| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608 |
- #include "pocketpy/expr.h"
- #include "pocketpy/codeobject.h"
- namespace pkpy{
- int CodeEmitContext::get_loop() const {
- int index = curr_block_i;
- while(index >= 0){
- if(co->blocks[index].type == FOR_LOOP) break;
- if(co->blocks[index].type == WHILE_LOOP) break;
- index = co->blocks[index].parent;
- }
- return index;
- }
- CodeBlock* CodeEmitContext::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;
- return &co->blocks[curr_block_i];
- }
- void CodeEmitContext::exit_block(){
- auto curr_type = co->blocks[curr_block_i].type;
- if(curr_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();
- if(curr_type == FOR_LOOP){
- // add a no op here to make block check work
- emit(OP_NO_OP, BC_NOARG, BC_KEEPLINE);
- }
- }
- // clear the expression stack and generate bytecode
- void CodeEmitContext::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 CodeEmitContext::_log_s_expr(){
- std::stringstream ss;
- for(auto& e: s_expr.data()) ss << e->str() << " ";
- return ss.str();
- }
- int CodeEmitContext::emit(Opcode opcode, uint16_t arg, int line) {
- co->codes.push_back(Bytecode{(uint8_t)opcode, arg});
- co->iblocks.push_back(curr_block_i);
- 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 CodeEmitContext::patch_jump(int index) {
- int target = co->codes.size();
- co->codes[index].arg = target;
- }
- bool CodeEmitContext::add_label(StrName name){
- if(co->labels.contains(name)) return false;
- co->labels.set(name, co->codes.size());
- return true;
- }
- int CodeEmitContext::add_varname(StrName name){
- // PK_MAX_CO_VARNAMES will be checked when pop_context(), not here
- 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 CodeEmitContext::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 CodeEmitContext::add_func_decl(FuncDecl_ decl){
- co->func_decls.push_back(decl);
- return co->func_decls.size() - 1;
- }
- void CodeEmitContext::emit_store_name(NameScope scope, StrName name, int line){
- switch(scope){
- case NAME_LOCAL:
- emit(OP_STORE_FAST, add_varname(name), line);
- break;
- case NAME_GLOBAL:
- emit(OP_STORE_GLOBAL, StrName(name).index, line);
- break;
- case NAME_GLOBAL_UNKNOWN:
- emit(OP_STORE_NAME, StrName(name).index, line);
- break;
- default: FATAL_ERROR(); break;
- }
- }
- void NameExpr::emit(CodeEmitContext* ctx) {
- 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 NameExpr::emit_del(CodeEmitContext* ctx) {
- 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 NameExpr::emit_store(CodeEmitContext* ctx) {
- if(ctx->is_compiling_class){
- ctx->emit(OP_STORE_CLASS_ATTR, name.index, line);
- return true;
- }
- ctx->emit_store_name(scope, name, line);
- return true;
- }
- void InvertExpr::emit(CodeEmitContext* ctx) {
- child->emit(ctx);
- ctx->emit(OP_UNARY_INVERT, BC_NOARG, line);
- }
- void StarredExpr::emit(CodeEmitContext* ctx) {
- child->emit(ctx);
- ctx->emit(OP_UNARY_STAR, level, line);
- }
- bool StarredExpr::emit_store(CodeEmitContext* ctx) {
- if(level != 1) return false;
- // simply proxy to child
- return child->emit_store(ctx);
- }
- void NotExpr::emit(CodeEmitContext* ctx) {
- child->emit(ctx);
- ctx->emit(OP_UNARY_NOT, BC_NOARG, line);
- }
- void AndExpr::emit(CodeEmitContext* ctx) {
- lhs->emit(ctx);
- int patch = ctx->emit(OP_JUMP_IF_FALSE_OR_POP, BC_NOARG, line);
- rhs->emit(ctx);
- ctx->patch_jump(patch);
- }
- void OrExpr::emit(CodeEmitContext* ctx) {
- lhs->emit(ctx);
- int patch = ctx->emit(OP_JUMP_IF_TRUE_OR_POP, BC_NOARG, line);
- rhs->emit(ctx);
- ctx->patch_jump(patch);
- }
- void Literal0Expr::emit(CodeEmitContext* ctx){
- 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();
- }
- }
- void LongExpr::emit(CodeEmitContext* ctx) {
- VM* vm = ctx->vm;
- ctx->emit(OP_LOAD_CONST, ctx->add_const(VAR(s)), line);
- ctx->emit(OP_BUILD_LONG, BC_NOARG, line);
- }
- void BytesExpr::emit(CodeEmitContext* ctx) {
- VM* vm = ctx->vm;
- ctx->emit(OP_LOAD_CONST, ctx->add_const(VAR(s)), line);
- ctx->emit(OP_BUILD_BYTES, BC_NOARG, line);
- }
- void LiteralExpr::emit(CodeEmitContext* ctx) {
- 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, (uint16_t)_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);
- }
- void NegatedExpr::emit(CodeEmitContext* ctx){
- 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, (uint16_t)_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);
- }
- void SliceExpr::emit(CodeEmitContext* ctx){
- 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);
- }
- void DictItemExpr::emit(CodeEmitContext* ctx) {
- if(is_starred()){
- PK_ASSERT(key == nullptr);
- value->emit(ctx);
- }else{
- value->emit(ctx);
- key->emit(ctx); // reverse order
- ctx->emit(OP_BUILD_TUPLE, 2, line);
- }
- }
- bool TupleExpr::emit_store(CodeEmitContext* ctx) {
- // 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 TupleExpr::emit_del(CodeEmitContext* ctx){
- for(auto& e: items){
- bool ok = e->emit_del(ctx);
- if(!ok) return false;
- }
- return true;
- }
- void CompExpr::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
- PK_ASSERT(ok); // 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, ctx->get_loop(), BC_KEEPLINE);
- ctx->exit_block();
- }
- void FStringExpr::_load_simple_expr(CodeEmitContext* ctx, Str expr){
- bool repr = false;
- if(expr.size>=2 && expr.end()[-2]=='!'){
- switch(expr.end()[-1]){
- case 'r': repr = true; expr = expr.substr(0, expr.size-2); break;
- case 's': repr = false; expr = expr.substr(0, expr.size-2); break;
- default: break; // nothing happens
- }
- }
- // name or name.name
- std::regex pattern(R"(^[a-zA-Z_][a-zA-Z0-9_]*(\.[a-zA-Z_][a-zA-Z0-9_]*){0,1}$)");
- if(std::regex_match(expr.str(), pattern)){
- 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);
- }
- }else{
- int index = ctx->add_const(py_var(ctx->vm, expr));
- ctx->emit(OP_LOAD_CONST, index, line);
- ctx->emit(OP_EVAL, BC_NOARG, line);
- }
- if(repr){
- ctx->emit(OP_REPR, BC_NOARG, line);
- }
- }
- void FStringExpr::emit(CodeEmitContext* ctx){
- VM* vm = ctx->vm;
- PK_LOCAL_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);
- }
- void SubscrExpr::emit(CodeEmitContext* ctx){
- a->emit(ctx);
- b->emit(ctx);
- ctx->emit(OP_LOAD_SUBSCR, BC_NOARG, line);
- }
- bool SubscrExpr::emit_del(CodeEmitContext* ctx){
- a->emit(ctx);
- b->emit(ctx);
- ctx->emit(OP_DELETE_SUBSCR, BC_NOARG, line);
- return true;
- }
- bool SubscrExpr::emit_store(CodeEmitContext* ctx){
- a->emit(ctx);
- b->emit(ctx);
- ctx->emit(OP_STORE_SUBSCR, BC_NOARG, line);
- return true;
- }
- void AttribExpr::emit(CodeEmitContext* ctx){
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_LOAD_ATTR, index, line);
- }
- bool AttribExpr::emit_del(CodeEmitContext* ctx) {
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_DELETE_ATTR, index, line);
- return true;
- }
- bool AttribExpr::emit_store(CodeEmitContext* ctx){
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_STORE_ATTR, index, line);
- return true;
- }
- void AttribExpr::emit_method(CodeEmitContext* ctx) {
- a->emit(ctx);
- int index = StrName(b).index;
- ctx->emit(OP_LOAD_METHOD, index, line);
- }
- void CallExpr::emit(CodeEmitContext* ctx) {
- bool vargs = false;
- bool vkwargs = false;
- for(auto& arg: args) if(arg->is_starred()) vargs = true;
- for(auto& item: kwargs) if(item.second->is_starred()) vkwargs = true;
- // 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); // OP_LOAD_METHOD
- }else{
- callable->emit(ctx);
- ctx->emit(OP_LOAD_NULL, BC_NOARG, BC_KEEPLINE);
- }
- if(vargs || vkwargs){
- for(auto& item: args) item->emit(ctx);
- ctx->emit(OP_BUILD_TUPLE_UNPACK, (uint16_t)args.size(), line);
- if(!kwargs.empty()){
- for(auto& item: kwargs){
- if(item.second->is_starred()){
- if(item.second->star_level() != 2) FATAL_ERROR();
- item.second->emit(ctx);
- }else{
- // k=v
- int index = ctx->add_const(py_var(ctx->vm, item.first));
- ctx->emit(OP_LOAD_CONST, index, line);
- item.second->emit(ctx);
- ctx->emit(OP_BUILD_TUPLE, 2, line);
- }
- }
- ctx->emit(OP_BUILD_DICT_UNPACK, (int)kwargs.size(), line);
- ctx->emit(OP_CALL_TP, 1, line);
- }else{
- ctx->emit(OP_CALL_TP, 0, line);
- }
- }else{
- // vectorcall protocal
- for(auto& item: args) item->emit(ctx);
- for(auto& item: kwargs){
- uint16_t index = StrName(item.first.sv()).index;
- ctx->emit(OP_LOAD_INTEGER, index, line);
- item.second->emit(ctx);
- }
- int KWARGC = kwargs.size();
- int ARGC = args.size();
- ctx->emit(OP_CALL, (KWARGC<<8)|ARGC, line);
- }
- }
- bool BinaryExpr::is_compare() const {
- switch(op){
- case TK("<"): case TK("<="): case TK("=="):
- case TK("!="): case TK(">"): case TK(">="): return true;
- default: return false;
- }
- }
- void BinaryExpr::_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 BinaryExpr::emit(CodeEmitContext* ctx) {
- 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);
- }
- void TernaryExpr::emit(CodeEmitContext* ctx){
- 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
|