diff options
Diffstat (limited to 'src/lj_trace.c')
-rw-r--r-- | src/lj_trace.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lj_trace.c b/src/lj_trace.c index d55d3a85..e476122c 100644 --- a/src/lj_trace.c +++ b/src/lj_trace.c | |||
@@ -275,6 +275,20 @@ int lj_trace_flushall(lua_State *L) | |||
275 | return 0; | 275 | return 0; |
276 | } | 276 | } |
277 | 277 | ||
278 | /* Initialize JIT compiler state. */ | ||
279 | void lj_trace_initstate(global_State *g) | ||
280 | { | ||
281 | jit_State *J = G2J(g); | ||
282 | TValue *tv; | ||
283 | /* Initialize SIMD constants. */ | ||
284 | tv = LJ_KSIMD(J, LJ_KSIMD_ABS); | ||
285 | tv[0].u64 = U64x(7fffffff,ffffffff); | ||
286 | tv[1].u64 = U64x(7fffffff,ffffffff); | ||
287 | tv = LJ_KSIMD(J, LJ_KSIMD_NEG); | ||
288 | tv[0].u64 = U64x(80000000,00000000); | ||
289 | tv[1].u64 = U64x(80000000,00000000); | ||
290 | } | ||
291 | |||
278 | /* Free everything associated with the JIT compiler state. */ | 292 | /* Free everything associated with the JIT compiler state. */ |
279 | void lj_trace_freestate(global_State *g) | 293 | void lj_trace_freestate(global_State *g) |
280 | { | 294 | { |