1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
#ifndef OPS_COMMON_H
#define OPS_COMMON_H
typedef unsigned long reg_t;
typedef signed long sreg_t;
typedef void (*op_call)(reg_t *sp, reg_t a, reg_t x, reg_t y, reg_t o);
#define NEXT_OP(sp, a, x, y, o) \
((op_call)(&__next_op))((sp), (a), (x), (y), (o));
#define JUMP(target, sp, a, x, y, o) \
((op_call)(target))((sp), (a), (x), (y), (o));
#define BRANCH(target, cond, sp, a, x, y, o) \
((op_call)((cond) ? (void *)(target) : (void *)&__next_op)) \
((sp), (a), (x), (y), (o)); \
#define DEFINE_OP(name) void _op(reg_t *sp, reg_t a, reg_t x, reg_t y, reg_t o)
#define UNUSED(x) (void)(x);
#define __hidden __attribute__((visibility("hidden")))
__hidden extern void *__next_op;
#endif /* OPS_COMMON_H */
|