blob: 793179cf8e21aa89636f869fc3a9e2fe0b4a29e0 [file] [log] [blame]
Adrian Bunk7e02cb92007-10-17 18:04:38 +02001#ifdef __ASSEMBLY__
2
Jan Beulich4625cd62011-07-19 12:59:51 +01003#include <asm/asm.h>
Andi Kleenecaf45e2006-09-26 10:52:29 +02004
5/* The annotation hides the frame from the unwinder and makes it look
6 like a ordinary ebp save/restore. This avoids some special cases for
7 frame pointer later */
8#ifdef CONFIG_FRAME_POINTER
9 .macro FRAME
Ingo Molnar131484c2015-05-28 12:21:47 +020010 __ASM_SIZE(push,) %__ASM_REG(bp)
Jan Beulich4625cd62011-07-19 12:59:51 +010011 __ASM_SIZE(mov) %__ASM_REG(sp), %__ASM_REG(bp)
Andi Kleenecaf45e2006-09-26 10:52:29 +020012 .endm
13 .macro ENDFRAME
Ingo Molnar131484c2015-05-28 12:21:47 +020014 __ASM_SIZE(pop,) %__ASM_REG(bp)
Andi Kleenecaf45e2006-09-26 10:52:29 +020015 .endm
16#else
17 .macro FRAME
18 .endm
19 .macro ENDFRAME
20 .endm
21#endif
Adrian Bunk7e02cb92007-10-17 18:04:38 +020022
23#endif /* __ASSEMBLY__ */