mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 07:34:07 +00:00
18 lines
317 B
C
18 lines
317 B
C
/*
|
|
** Trace recorder (bytecode -> SSA IR).
|
|
** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
|
|
*/
|
|
|
|
#ifndef _LJ_RECORD_H
|
|
#define _LJ_RECORD_H
|
|
|
|
#include "lj_obj.h"
|
|
#include "lj_jit.h"
|
|
|
|
#if LJ_HASJIT
|
|
LJ_FUNC void lj_record_ins(jit_State *J);
|
|
LJ_FUNC void lj_record_setup(jit_State *J);
|
|
#endif
|
|
|
|
#endif
|