view src/dispatch.c @ 8:e35adb402a6a

update
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Mon, 12 Nov 2018 14:12:44 +0900
parents 5c8e88841a30
children
line wrap: on
line source

DISPATCH(NEXT_OP) {
    OP(no_op):
        goto NEXT;
    OP(const_i32):
        MVM_exception_throw_adhoc(tc, "const_iX NYI");
    OP(const_i64):
        GET_REG(cur_op, 0).i64 = MVM_BC_get_I64(cur_op, 2);
        cur_op += 10;
        goto NEXT;
}