blob: 26153fa051e656e9c481b3136252f6d40d916ea7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "dis.h"
#include "arm/assemble.h"
#define MAX_JUMP_PATCH_SIZE 10
static inline int jump_patch_size(uint_tptr pc,
UNUSED uint_tptr dpc,
UNUSED struct arch_dis_ctx arch,
UNUSED bool force) {
return (pc & 2) ? 10 : 8;
}
static inline void make_jump_patch(void **codep, uint_tptr pc,
uint_tptr dpc,
struct arch_dis_ctx arch) {
struct assemble_ctx actx = {codep, *codep, pc, arch.pc_low_bit, 0xe};
LDR_PC(actx, dpc);
}
|