aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/LuaJIT-1.1.7/src/ljit_dasm.h
blob: 0a9dd5d9ddae9b06d0e5f463485010bc901e025a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
** Interface to DynASM engine.
** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef ljit_dasm_h
#define ljit_dasm_h

#include "ljit.h"

/* DynASM glue definitions. */
#define Dst		J
#define Dst_DECL	jit_State *J
#define Dst_REF		(J->D)
#define DASM_FDEF	LUAI_FUNC

#include "dasm_proto.h"

#endif