aboutsummaryrefslogtreecommitdiff
path: root/lib/arm/jump-patch.h
blob: 361e357be863f04fe10004305aa9bae6e476ff84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include "dis.h"
#include "arm/assemble.h"
#define MAX_JUMP_PATCH_SIZE 12
#define MAX_EXTENDED_PATCH_SIZE (MAX_JUMP_PATCH_SIZE+14)

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) ? 12 : 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);
}