aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/LuaJIT-1.1.7/src/ljit_hints.h
blob: 23743bce4b38356107dcaf7a73e39e9c643f6390 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
** Hints for the JIT compiler backend.
** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
*/

#ifdef STRING_HINTS
#define HH(x, name)		#name
#define HH_START(x)		static const char *const hints_##x [] = {
#define HH_END(x)		NULL }
#else
#define HH(x, name)		JIT_##x##_##name
#define HH_START(x)		enum { JIT_##x##_NONE,
#define HH_END(x)		JIT_##x##_MAX }

/* Macros to access hints. */
#define JIT_H2NUM(x)		((x) << 16)

#define fhint_get(J, hh) \
  (luaH_getnum(J->comstate, JIT_H2NUM(JIT_FH_##hh)))
#define fhint_isset(J, hh)	(!ttisnil(fhint_get(J, hh)))

#define hint_getpc(J, hh, pc) \
  (luaH_getnum(J->comstate, (pc)+JIT_H2NUM(JIT_H_##hh)))
#define hint_get(J, hh)		hint_getpc(J, hh, J->nextpc-1)
#define hint_issetpc(J, hh, pc)	(!ttisnil(hint_getpc(J, hh, pc)))
#define hint_isset(J, hh)	hint_issetpc(J, hh, J->nextpc-1)

#endif

/* Hints for functions. */
HH_START(FH)
  HH(FH, NOCLOSE),		/* No luaF_close() needed. */
HH_END(FH);

/* Hints for individual bytecode instruction. */
HH_START(H)
  HH(H, COMBINE),	/* Combine/dead instruction: true/false. */
  HH(H, FOR_STEP_K),	/* FORPREP/FORLOOP step is const: step. */
  HH(H, TYPE),		/* Type hint: typed object. */
  HH(H, TYPEKEY),	/* Type hint for keys: typed object. */
  HH(H, INLINE),	/* Inline function call: internal index. */
HH_END(H);

#undef HH
#undef HH_START
#undef HH_END


/* Avoid multiple inclusion for the following. */
#ifndef ljit_hints_h
#define ljit_hints_h

/* Index numbers for inlining C functions. */
/* CHECK: the index numbers must match with jit.opt_lib. */

#define JIT_IH_LIB(x)		((x) >> 16)
#define JIT_IH_IDX(x)		((x) & 0xffff)
#define JIT_IH_MKIDX(l, f)	(((l) << 16) | (f))

/* Library index numbers. */
enum {
  JIT_IHLIB_INTERNAL,
  JIT_IHLIB_BASE,
  JIT_IHLIB_COROUTINE,
  JIT_IHLIB_STRING,
  JIT_IHLIB_TABLE,
  JIT_IHLIB_MATH,
  JIT_IHLIB__LAST
};

/* Internal functions. */
enum {
  JIT_IH_INTERNAL_RECURSIVE,  /* Recursive call. */
  JIT_IH_INTERNAL__LAST
};

/* Base library functions. */
enum {
  JIT_IH_BASE_PAIRS,
  JIT_IH_BASE_IPAIRS,
  JIT_IH_BASE__LAST
};

/* Coroutine library functions. */
enum {
  JIT_IH_COROUTINE_YIELD,
  JIT_IH_COROUTINE_RESUME,
  JIT_IH_COROUTINE__LAST
};

/* String library functions. */
enum {
  JIT_IH_STRING_LEN,
  JIT_IH_STRING_SUB,
  JIT_IH_STRING_CHAR,
  JIT_IH_STRING__LAST
};

/* Table library functions. */
enum {
  JIT_IH_TABLE_INSERT,
  JIT_IH_TABLE_REMOVE,
  JIT_IH_TABLE_GETN,
  JIT_IH_TABLE__LAST
};

/* Math library functions. */
/* CHECK: order must match with function table for jit_inline_math(). */
enum {
  /* 1 arg, 1 result. */
  /* Partially inlined. Call C function from libm: */
  JIT_IH_MATH_LOG,
  JIT_IH_MATH_LOG10,
  JIT_IH_MATH_EXP,
  JIT_IH_MATH_SINH,
  JIT_IH_MATH_COSH,
  JIT_IH_MATH_TANH,
  JIT_IH_MATH_ASIN,
  JIT_IH_MATH_ACOS,
  JIT_IH_MATH_ATAN,
  /* Fully inlined: */
  JIT_IH_MATH_SIN,
  JIT_IH_MATH_COS,
  JIT_IH_MATH_TAN,
  JIT_IH_MATH_CEIL,
  JIT_IH_MATH_FLOOR,
  JIT_IH_MATH_ABS,
  JIT_IH_MATH_SQRT,
  /* 2 args, 1 result. */
  JIT_IH_MATH_FMOD,
  JIT_IH_MATH_ATAN2,
  JIT_IH_MATH__LAST
};

#define JIT_IH_MATH__21	JIT_IH_MATH_FMOD

#endif