diff options
author | Mike Pall <mike> | 2009-12-27 17:42:41 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2009-12-27 17:42:41 +0100 |
commit | bc470637081979939698413ca108372e672d3b48 (patch) | |
tree | 6559f76ea898aba5c263c8ab56f63eaa2f6480ff /src/lj_gc.h | |
parent | 690760aa3853e63331f46e40c8276d9f5939261d (diff) | |
download | luajit-bc470637081979939698413ca108372e672d3b48.tar.gz luajit-bc470637081979939698413ca108372e672d3b48.tar.bz2 luajit-bc470637081979939698413ca108372e672d3b48.zip |
Use fastcall for remaining 1-arg/2-arg calls from interpreter.
Simplifies conversion to x64 calling conventions.
Diffstat (limited to 'src/lj_gc.h')
-rw-r--r-- | src/lj_gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_gc.h b/src/lj_gc.h index 0dbb9b82..63d6ec6c 100644 --- a/src/lj_gc.h +++ b/src/lj_gc.h | |||
@@ -42,7 +42,7 @@ enum { GCSpause, GCSpropagate, GCSsweepstring, GCSsweep, GCSfinalize }; | |||
42 | LJ_FUNC size_t lj_gc_separateudata(global_State *g, int all); | 42 | LJ_FUNC size_t lj_gc_separateudata(global_State *g, int all); |
43 | LJ_FUNC void lj_gc_finalizeudata(lua_State *L); | 43 | LJ_FUNC void lj_gc_finalizeudata(lua_State *L); |
44 | LJ_FUNC void lj_gc_freeall(global_State *g); | 44 | LJ_FUNC void lj_gc_freeall(global_State *g); |
45 | LJ_FUNCA int lj_gc_step(lua_State *L); | 45 | LJ_FUNCA int LJ_FASTCALL lj_gc_step(lua_State *L); |
46 | LJ_FUNCA void LJ_FASTCALL lj_gc_step_fixtop(lua_State *L); | 46 | LJ_FUNCA void LJ_FASTCALL lj_gc_step_fixtop(lua_State *L); |
47 | LJ_FUNC void LJ_FASTCALL lj_gc_step_jit(lua_State *L, MSize steps); | 47 | LJ_FUNC void LJ_FASTCALL lj_gc_step_jit(lua_State *L, MSize steps); |
48 | LJ_FUNC void lj_gc_fullgc(lua_State *L); | 48 | LJ_FUNC void lj_gc_fullgc(lua_State *L); |