blob: 6889127f798730cfd5f778b260672990d44be595 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
typedef struct {
bool modify;
} tdis_ret;
typedef struct tc {
uintptr_t pc;
int op_size;
uint32_t op;
uint32_t newop;
uint32_t newval[4];
uintptr_t pc_patch_start;
uintptr_t pc_patch_end;
bool got_bad;
} *tdis_ctx;
NOINLINE UNUSED
static tdis_ret P_data(struct tc *ctx, unsigned o0, unsigned o1, unsigned o2, unsigned o3, unsigned out_mask) {
__builtin_abort();
}
NOINLINE UNUSED
static tdis_ret P_pcrel(struct tc *ctx, uintptr_t dpc, unsigned reg, bool is_load) {
__builtin_abort();
}
NOINLINE UNUSED
static tdis_ret P_ret(struct tc *ctx) {
/* ret is okay if it's at the end of the patch */
if (ctx->pc + op_size < ctx->pc_patch_end)
ctx->got_bad = true;
printf("ret: %08x\n", ctx->op);
return (tdis_ret) {false};
}
NOINLINE UNUSED
static tdis_ret P_branch(struct tc *ctx, uintptr_t dpc) {
if (dpc >= ctx->pc_patch_start && dpc < ctx->pc_patch_end) {
/* don't support this for now */
ctx->got_bad = true;
}
return (tdis_ret) {false};
}
NOINLINE UNUSED
static tdis_ret P_unidentified(struct tc *ctx) {
return (tdis_ret) {false};
}
NOINLINE UNUSED
static tdis_ret P_bad(struct tc *ctx) {
ctx->got_bad = true;
return (tdis_ret) {false};
}
#define P(x) transform_dis_##x
|