blob: 238d56ef222cee1b960d79258a7580611e9d37b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include "dis.h"
#define MAX_JUMP_PATCH_SIZE 8
#define MAX_REWRITTEN_SIZE (12 * 4) /* actually should be less */
static inline int jump_patch_size(UNUSED uintptr_t pc,
UNUSED uintptr_t dpc,
UNUSED struct arch_dis_ctx arch,
UNUSED bool force) {
return 8;
}
static inline void make_jump_patch(void **codep, UNUSED uintptr_t pc,
uintptr_t dpc,
struct arch_dis_ctx arch) {
if (arch.pc_low_bit)
op32(codep, 0xf000f8df);
else
op32(codep, 0xe51ff004);
op32(codep, (uint32_t) dpc);
}
|