mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Merge branch 'master' into v2.1
This commit is contained in:
commit
b65196b7fd
@ -91,6 +91,7 @@ static MCode *asm_exitstub_gen(ASMState *as, ExitNo group)
|
||||
*mxp++ = group*EXITSTUBS_PER_GROUP;
|
||||
for (i = 0; i < EXITSTUBS_PER_GROUP; i++)
|
||||
*mxp++ = ARMI_B|((-6-i)&0x00ffffffu);
|
||||
lj_mcode_sync(as->mcbot, mxp);
|
||||
lj_mcode_commitbot(as->J, mxp);
|
||||
as->mcbot = mxp;
|
||||
as->mclim = as->mcbot + MCLIM_REDZONE;
|
||||
|
@ -71,6 +71,7 @@ static void asm_sparejump_setup(ASMState *as)
|
||||
memset(mxp+2, 0, MIPS_SPAREJUMP*8);
|
||||
mxp += MIPS_SPAREJUMP*2;
|
||||
lua_assert(mxp < as->mctop);
|
||||
lj_mcode_sync(as->mcbot, mxp);
|
||||
lj_mcode_commitbot(as->J, mxp);
|
||||
as->mcbot = mxp;
|
||||
as->mclim = as->mcbot + MCLIM_REDZONE;
|
||||
|
Loading…
Reference in New Issue
Block a user