Mercurial > hg > Papers > 2019 > anatofuz-prosym
view Paper/src/orig_macro.c @ 52:6d85ce7522ad
fix segment name
author | Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 09 Nov 2018 20:43:43 +0900 |
parents | fb4c1b408c9f |
children |
line wrap: on
line source
#define NEXT_OP (op = *(MVMuint16 *)(cur_op), cur_op += 2, op) #if MVM_CGOTO #define DISPATCH(op) #define OP(name) OP_ ## name #define NEXT *LABELS[NEXT_OP] #else #define DISPATCH(op) switch (op) #define OP(name) case MVM_OP_ ## name #define NEXT runloop #endif