libucontext/arch/common/common-defs.h

43 lines
718 B
C
Raw Normal View History

#ifndef __ARCH_COMMON_COMMON_DEFS_H
#define __ARCH_COMMON_COMMON_DEFS_H
#ifndef SETUP_FRAME
# define SETUP_FRAME(__proc)
#endif
#ifndef PUSH_FRAME
# define PUSH_FRAME(__proc)
#endif
#ifndef POP_FRAME
# define POP_FRAME(__proc)
#endif
2020-03-29 14:03:18 +00:00
#ifndef ENT
# define ENT(__proc)
#endif
2020-03-30 05:02:49 +00:00
#ifndef TYPE
# define TYPE(__proc) .type __proc, @function;
#endif
#define FUNC(__proc) \
2020-03-29 14:12:23 +00:00
.global __proc; \
.align 2; \
2020-03-30 05:02:49 +00:00
TYPE(__proc) \
2020-03-29 14:03:18 +00:00
ENT(__proc) \
__proc: \
SETUP_FRAME(__proc)
#define END(__proc) \
.end __proc; \
.size __proc,.-__proc;
2020-03-29 14:12:23 +00:00
#define ALIAS(__alias, __real) \
.weak __alias; \
__alias = __real;
#define REG_OFFSET(__reg) (MCONTEXT_GREGS + ((__reg) * REG_SZ))
2020-03-29 14:27:19 +00:00
#endif