forked from ariadne/libucontext
24 lines
366 B
C
24 lines
366 B
C
#ifndef __ARCH_AARCH64_DEFS_H
|
|
#define __ARCH_AARCH64_DEFS_H
|
|
|
|
#define REG_SZ (8)
|
|
#define MCONTEXT_GREGS (184)
|
|
|
|
#define R0_OFFSET REG_OFFSET(0)
|
|
|
|
#define SP_OFFSET 432
|
|
#define PC_OFFSET 440
|
|
#define PSTATE_OFFSET 448
|
|
|
|
#ifndef FPSIMD_MAGIC
|
|
# define FPSIMD_MAGIC 0x46508001
|
|
#endif
|
|
|
|
#ifndef ESR_MAGIC
|
|
# define ESR_MAGIC 0x45535201
|
|
#endif
|
|
|
|
#include "common-defs.h"
|
|
|
|
#endif
|