aboutsummaryrefslogtreecommitdiff
path: root/src/lj_ffrecord.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_ffrecord.h')
-rw-r--r--src/lj_ffrecord.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lj_ffrecord.h b/src/lj_ffrecord.h
new file mode 100644
index 00000000..f13f5c33
--- /dev/null
+++ b/src/lj_ffrecord.h
@@ -0,0 +1,17 @@
1/*
2** Fast function call recorder.
3** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
4*/
5
6#ifndef _LJ_FFRECORD_H
7#define _LJ_FFRECORD_H
8
9#include "lj_obj.h"
10#include "lj_jit.h"
11
12#if LJ_HASJIT
13LJ_FUNC int32_t lj_ffrecord_select_mode(jit_State *J, TRef tr, TValue *tv);
14LJ_FUNC void lj_ffrecord_func(jit_State *J);
15#endif
16
17#endif