2013-11-17 08:19:33 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "misc.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "bc0.h"
|
2013-11-17 08:19:33 -05:00
|
|
|
|
|
|
|
#define DECODE_UINT do { unum = *ip++; if (unum > 127) { unum = ((unum & 0x3f) << 8) | (*ip++); } } while (0)
|
|
|
|
#define DECODE_ULABEL do { unum = (ip[0] | (ip[1] << 8)); ip += 2; } while (0)
|
|
|
|
#define DECODE_SLABEL do { unum = (ip[0] | (ip[1] << 8)) - 0x8000; ip += 2; } while (0)
|
|
|
|
#define DECODE_QSTR do { qstr = *ip++; if (qstr > 127) { qstr = ((qstr & 0x3f) << 8) | (*ip++); } } while (0)
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
void mp_show_byte_code(const byte *ip, int len) {
|
2013-11-17 08:19:33 -05:00
|
|
|
const byte *ip_start = ip;
|
2013-12-30 17:32:17 -05:00
|
|
|
|
|
|
|
// decode prelude
|
|
|
|
{
|
|
|
|
uint n_local = *ip++;
|
|
|
|
printf("(NUM_LOCAL %u)\n", n_local);
|
|
|
|
for (; n_local > 0; n_local--) {
|
|
|
|
uint local_num = *ip++;
|
|
|
|
printf("(INIT_CELL %u)\n", local_num);
|
|
|
|
}
|
|
|
|
len -= ip - ip_start;
|
|
|
|
ip_start = ip;
|
|
|
|
}
|
|
|
|
|
2013-11-17 08:19:33 -05:00
|
|
|
machine_uint_t unum;
|
|
|
|
qstr qstr;
|
|
|
|
while (ip - ip_start < len) {
|
|
|
|
printf("%02u ", (uint)(ip - ip_start));
|
|
|
|
int op = *ip++;
|
|
|
|
switch (op) {
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_FALSE:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("LOAD_CONST_FALSE");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_NONE:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("LOAD_CONST_NONE");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_TRUE:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("LOAD_CONST_TRUE");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_SMALL_INT:
|
2013-11-17 08:19:33 -05:00
|
|
|
unum = (ip[0] | (ip[1] << 8) | (ip[2] << 16)) - 0x800000;
|
|
|
|
ip += 3;
|
|
|
|
printf("LOAD_CONST_SMALL_INT %d", (int)unum);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_DEC:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
|
|
|
PUSH(rt_load_const_dec(qstr));
|
|
|
|
break;
|
2013-11-25 18:39:36 -05:00
|
|
|
*/
|
2013-11-17 08:19:33 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_ID:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
2013-11-25 18:39:36 -05:00
|
|
|
printf("LOAD_CONST_ID %s", qstr_str(qstr));
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_CONST_STRING:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
2013-11-26 10:14:50 -05:00
|
|
|
printf("LOAD_CONST_STRING %s", qstr_str(qstr));
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_FAST_0:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("LOAD_FAST_0");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_FAST_1:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("LOAD_FAST_1");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_FAST_2:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("LOAD_FAST_2");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_FAST_N:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("LOAD_FAST_N " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-30 17:32:17 -05:00
|
|
|
case MP_BC_LOAD_DEREF:
|
|
|
|
DECODE_UINT;
|
|
|
|
printf("LOAD_DEREF " UINT_FMT, unum);
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_NAME:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
|
|
|
printf("LOAD_NAME %s", qstr_str(qstr));
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_GLOBAL:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
|
|
|
printf("LOAD_GLOBAL %s", qstr_str(qstr));
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_ATTR:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
2013-11-25 18:39:36 -05:00
|
|
|
printf("LOAD_ATTR %s", qstr_str(qstr));
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_METHOD:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
|
|
|
printf("LOAD_METHOD %s", qstr_str(qstr));
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LOAD_BUILD_CLASS:
|
2013-11-25 18:39:36 -05:00
|
|
|
printf("LOAD_BUILD_CLASS");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_FAST_0:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("STORE_FAST_0");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_FAST_1:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("STORE_FAST_1");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_FAST_2:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("STORE_FAST_2");
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_FAST_N:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("STORE_FAST_N " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-30 17:32:17 -05:00
|
|
|
case MP_BC_STORE_DEREF:
|
|
|
|
DECODE_UINT;
|
|
|
|
printf("STORE_DEREF " UINT_FMT, unum);
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_NAME:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
|
|
|
printf("STORE_NAME %s", qstr_str(qstr));
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_GLOBAL:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
|
|
|
rt_store_global(qstr, POP());
|
|
|
|
break;
|
2013-11-25 18:39:36 -05:00
|
|
|
*/
|
2013-11-17 08:19:33 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_ATTR:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_QSTR;
|
2013-11-25 18:39:36 -05:00
|
|
|
printf("STORE_ATTR %s", qstr_str(qstr));
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_SUBSCR:
|
2013-11-26 10:14:50 -05:00
|
|
|
printf("STORE_SUBSCR");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_DUP_TOP:
|
2013-12-29 11:54:59 -05:00
|
|
|
printf("DUP_TOP");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_DUP_TOP_TWO:
|
2013-11-26 10:14:50 -05:00
|
|
|
printf("DUP_TOP_TWO");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_POP_TOP:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("POP_TOP");
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_ROT_TWO:
|
2013-11-17 08:19:33 -05:00
|
|
|
obj1 = sp[0];
|
|
|
|
sp[0] = sp[1];
|
|
|
|
sp[1] = obj1;
|
|
|
|
break;
|
2013-11-26 10:14:50 -05:00
|
|
|
*/
|
2013-11-17 08:19:33 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_ROT_THREE:
|
2013-11-26 10:14:50 -05:00
|
|
|
printf("ROT_THREE");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_JUMP:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_SLABEL;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("JUMP " UINT_FMT, ip + unum - ip_start);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_POP_JUMP_IF_TRUE:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_SLABEL;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("POP_JUMP_IF_TRUE " UINT_FMT, ip + unum - ip_start);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_POP_JUMP_IF_FALSE:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_SLABEL;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("POP_JUMP_IF_FALSE " UINT_FMT, ip + unum - ip_start);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-11-26 10:14:50 -05:00
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_JUMP_IF_TRUE_OR_POP:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_SLABEL;
|
|
|
|
if (rt_is_true(*sp)) {
|
|
|
|
ip += unum;
|
|
|
|
} else {
|
|
|
|
sp++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_JUMP_IF_FALSE_OR_POP:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_SLABEL;
|
|
|
|
if (rt_is_true(*sp)) {
|
|
|
|
sp++;
|
|
|
|
} else {
|
|
|
|
ip += unum;
|
|
|
|
}
|
|
|
|
break;
|
2013-12-29 11:54:59 -05:00
|
|
|
*/
|
2013-11-17 08:19:33 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_SETUP_EXCEPT:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_ULABEL; // except labels are always forward
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("SETUP_EXCEPT " UINT_FMT, ip + unum - ip_start);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_END_FINALLY:
|
2013-11-17 08:19:33 -05:00
|
|
|
// if TOS is an exception, reraises the exception (3 values on TOS)
|
|
|
|
// if TOS is an integer, does something else
|
|
|
|
// if TOS is None, just pops it and continues
|
|
|
|
// else error
|
2013-12-29 11:54:59 -05:00
|
|
|
printf("END_FINALLY");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_GET_ITER:
|
2013-11-26 10:14:50 -05:00
|
|
|
printf("GET_ITER");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_FOR_ITER:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_ULABEL; // the jump offset if iteration finishes; for labels are always forward
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("FOR_ITER " UINT_FMT, ip + unum - ip_start);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_POP_BLOCK:
|
2013-11-17 08:19:33 -05:00
|
|
|
// pops block and restores the stack
|
2013-12-29 11:54:59 -05:00
|
|
|
printf("POP_BLOCK");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_POP_EXCEPT:
|
2013-11-17 08:19:33 -05:00
|
|
|
// pops block, checks it's an exception block, and restores the stack, saving the 3 exception values to local threadstate
|
2013-12-29 11:54:59 -05:00
|
|
|
printf("POP_EXCEPT");
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-29 11:54:59 -05:00
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_UNARY_OP:
|
2013-11-17 08:19:33 -05:00
|
|
|
unum = *ip++;
|
|
|
|
*sp = rt_unary_op(unum, *sp);
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_BINARY_OP:
|
2013-11-17 08:19:33 -05:00
|
|
|
unum = *ip++;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("BINARY_OP " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_COMPARE_OP:
|
2013-11-17 08:19:33 -05:00
|
|
|
unum = *ip++;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("COMPARE_OP " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_BUILD_TUPLE:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("BUILD_TUPLE " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_BUILD_LIST:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("BUILD_LIST " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-11-26 10:14:50 -05:00
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_LIST_APPEND:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
|
|
|
// I think it's guaranteed by the compiler that sp[unum] is a list
|
|
|
|
rt_list_append(sp[unum], sp[0]);
|
|
|
|
sp++;
|
|
|
|
break;
|
2013-12-29 11:54:59 -05:00
|
|
|
*/
|
2013-11-17 08:19:33 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_BUILD_MAP:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("BUILD_MAP " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-29 11:54:59 -05:00
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_STORE_MAP:
|
2013-11-17 08:19:33 -05:00
|
|
|
sp += 2;
|
|
|
|
rt_store_map(sp[0], sp[-2], sp[-1]);
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_MAP_ADD:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
|
|
|
// I think it's guaranteed by the compiler that sp[unum + 1] is a map
|
|
|
|
rt_store_map(sp[unum + 1], sp[0], sp[1]);
|
|
|
|
sp += 2;
|
|
|
|
break;
|
2013-12-29 17:32:51 -05:00
|
|
|
*/
|
2013-11-17 08:19:33 -05:00
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_BUILD_SET:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-30 07:52:32 -05:00
|
|
|
printf("BUILD_SET " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_SET_ADD:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-30 07:52:32 -05:00
|
|
|
printf("SET_ADD " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_UNPACK_SEQUENCE:
|
2013-11-26 10:14:50 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("UNPACK_SEQUENCE " UINT_FMT, unum);
|
2013-11-26 10:14:50 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_MAKE_FUNCTION:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("MAKE_FUNCTION " UINT_FMT, unum);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-30 17:32:17 -05:00
|
|
|
case MP_BC_MAKE_CLOSURE:
|
|
|
|
DECODE_UINT;
|
|
|
|
printf("MAKE_CLOSURE " UINT_FMT, unum);
|
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_CALL_FUNCTION:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("CALL_FUNCTION n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0xff);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_CALL_METHOD:
|
2013-11-17 08:19:33 -05:00
|
|
|
DECODE_UINT;
|
2013-12-29 20:38:32 -05:00
|
|
|
printf("CALL_METHOD n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0xff);
|
2013-11-17 08:19:33 -05:00
|
|
|
break;
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_RETURN_VALUE:
|
2013-11-17 08:19:33 -05:00
|
|
|
printf("RETURN_VALUE");
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
2013-12-21 13:17:45 -05:00
|
|
|
case MP_BC_YIELD_VALUE:
|
2013-11-17 08:19:33 -05:00
|
|
|
nlr_pop();
|
|
|
|
*ip_in_out = ip;
|
|
|
|
fastn[0] = fast0;
|
|
|
|
fastn[1] = fast1;
|
|
|
|
fastn[2] = fast2;
|
|
|
|
*sp_in_out = sp;
|
|
|
|
return true;
|
|
|
|
*/
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("code %p, byte code 0x%02x not implemented\n", ip, op);
|
|
|
|
assert(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|