mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
Rationale: we already had a non buildroot build system, maintaining both will be hard, and having short paths is more awesome.
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
#ifndef M5OPS_H
|
|
#define M5OPS_H
|
|
|
|
#if defined(__arm__)
|
|
static void m5_checkpoint(void)
|
|
{
|
|
__asm__ __volatile__ ("mov r0, #0; mov r1, #0; mov r2, #0; mov r3, #0; .inst 0xEE000110 | (0x43 << 16);");
|
|
};
|
|
static void m5_dumpstats(void)
|
|
{
|
|
__asm__ __volatile__ ("mov r0, #0; mov r1, #0; mov r2, #0; mov r3, #0; .inst 0xEE000110 | (0x41 << 16);");
|
|
};
|
|
static void m5_exit()
|
|
{
|
|
__asm__ __volatile__ ("mov r0, #0; mov r1, #0; .inst 0xEE000110 | (0x21 << 16);");
|
|
};
|
|
static void m5_fail_1(void)
|
|
{
|
|
__asm__ __volatile__ ("mov r0, #0; mov r1, #0; mov r2, #1; mov r3, #0; .inst 0xEE000110 | (0x22 << 16);");
|
|
};
|
|
static void m5_resetstats(void)
|
|
{
|
|
__asm__ __volatile__ ("mov r0, #0; mov r1, #0; mov r2, #0; mov r3, #0; .inst 0xEE000110 | (0x40 << 16);");
|
|
};
|
|
#elif defined(__aarch64__)
|
|
static void m5_checkpoint(void)
|
|
{
|
|
__asm__ __volatile__ ("mov x0, #0; mov x1, #0; .inst 0xFF000110 | (0x43 << 16);");
|
|
};
|
|
static void m5_dumpstats(void)
|
|
{
|
|
__asm__ __volatile__ ("mov x0, #0; mov x1, #0; .inst 0xFF000110 | (0x41 << 16);");
|
|
};
|
|
static void m5_exit(void)
|
|
{
|
|
__asm__ __volatile__ ("mov x0, #0; .inst 0XFF000110 | (0x21 << 16);");
|
|
};
|
|
static void m5_fail_1(void)
|
|
{
|
|
__asm__ __volatile__ ("mov x0, #0; mov x1, #1; .inst 0xFF000110 | (0x22 << 16);");
|
|
};
|
|
static void m5_resetstats(void)
|
|
{
|
|
__asm__ __volatile__ ("mov x0, #0; mov x1, #0; .inst 0XFF000110 | (0x40 << 16);");
|
|
};
|
|
#else
|
|
static void m5_checkpoint(void) {};
|
|
static void m5_dumpstats(void) {};
|
|
static void m5_exit(void) {};
|
|
static void m5_fail_1(void) {};
|
|
static void m5_resetstats(void) {};
|
|
#endif
|
|
|
|
#endif
|