2 ** Machine code management.
3 ** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
12 LJ_FUNC
void lj_mcode_free(jit_State
*J
);
13 LJ_FUNC MCode
*lj_mcode_reserve(jit_State
*J
, MCode
**lim
);
14 LJ_FUNC
void lj_mcode_commit(jit_State
*J
, MCode
*m
);
15 LJ_FUNC
void lj_mcode_abort(jit_State
*J
);
16 LJ_FUNC MCode
*lj_mcode_patch(jit_State
*J
, MCode
*ptr
, int finish
);
17 LJ_FUNC_NORET
void lj_mcode_limiterr(jit_State
*J
, size_t need
);
19 #define lj_mcode_commitbot(J, m) (J->mcbot = (m))