Fix stack alignment on 8 bytes at function call
Ensure stack pointer is correctly adjusted in prolog to be aligned on 8 bytes after the change of frame linking.
This commit is contained in:
@ -1231,7 +1231,7 @@ from_stack:
|
|||||||
}
|
}
|
||||||
last_itod_magic=0;
|
last_itod_magic=0;
|
||||||
leaffunc = 1;
|
leaffunc = 1;
|
||||||
loc = -12;
|
loc = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* generate function epilog */
|
/* generate function epilog */
|
||||||
@ -1255,9 +1255,9 @@ void gfunc_epilog(void)
|
|||||||
diff = (-loc + 3) & -4;
|
diff = (-loc + 3) & -4;
|
||||||
#ifdef TCC_ARM_EABI
|
#ifdef TCC_ARM_EABI
|
||||||
if(!leaffunc)
|
if(!leaffunc)
|
||||||
diff = (diff + 7) & -8;
|
diff = ((diff + 11) & -8) - 4;
|
||||||
#endif
|
#endif
|
||||||
if(diff > 12) {
|
if(diff > 0) {
|
||||||
x=stuff_const(0xE24BD000, diff); /* sub sp,fp,# */
|
x=stuff_const(0xE24BD000, diff); /* sub sp,fp,# */
|
||||||
if(x)
|
if(x)
|
||||||
*(uint32_t *)(cur_text_section->data + func_sub_sp_offset) = x;
|
*(uint32_t *)(cur_text_section->data + func_sub_sp_offset) = x;
|
||||||
|
|||||||
Reference in New Issue
Block a user