1*e3723e1fSApple OSS Distributions /*
2*e3723e1fSApple OSS Distributions * Copyright (c) 2017-2018 Apple Inc. All rights reserved.
3*e3723e1fSApple OSS Distributions *
4*e3723e1fSApple OSS Distributions * Disassemblers for ARM64 (AArch64)
5*e3723e1fSApple OSS Distributions */
6*e3723e1fSApple OSS Distributions
7*e3723e1fSApple OSS Distributions #include <sys/fasttrap_isa.h>
8*e3723e1fSApple OSS Distributions
9*e3723e1fSApple OSS Distributions uint8_t dtrace_decode_arm64(uint32_t instr);
10*e3723e1fSApple OSS Distributions
11*e3723e1fSApple OSS Distributions struct arm64_decode_entry {
12*e3723e1fSApple OSS Distributions uint32_t mask;
13*e3723e1fSApple OSS Distributions uint32_t value;
14*e3723e1fSApple OSS Distributions uint8_t type;
15*e3723e1fSApple OSS Distributions };
16*e3723e1fSApple OSS Distributions
17*e3723e1fSApple OSS Distributions struct arm64_decode_entry arm64_decode_table[] = {
18*e3723e1fSApple OSS Distributions { .mask = 0xFFFFFFFF, .value = FASTTRAP_ARM64_OP_VALUE_FUNC_ENTRY, .type = FASTTRAP_T_ARM64_STANDARD_FUNCTION_ENTRY },
19*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_LDR_S_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_LDR_S_PC_REL, .type = FASTTRAP_T_ARM64_LDR_S_PC_REL },
20*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_LDR_W_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_LDR_W_PC_REL, .type = FASTTRAP_T_ARM64_LDR_W_PC_REL },
21*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_LDR_D_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_LDR_D_PC_REL, .type = FASTTRAP_T_ARM64_LDR_D_PC_REL },
22*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_LDR_X_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_LDR_X_PC_REL, .type = FASTTRAP_T_ARM64_LDR_X_PC_REL },
23*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_LDR_Q_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_LDR_Q_PC_REL, .type = FASTTRAP_T_ARM64_LDR_Q_PC_REL },
24*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_LRDSW_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_LRDSW_PC_REL, .type = FASTTRAP_T_ARM64_LDRSW_PC_REL },
25*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_B_COND_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_B_COND_PC_REL, .type = FASTTRAP_T_ARM64_B_COND },
26*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_CBNZ_W_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_CBNZ_W_PC_REL, .type = FASTTRAP_T_ARM64_CBNZ_W },
27*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_CBNZ_X_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_CBNZ_X_PC_REL, .type = FASTTRAP_T_ARM64_CBNZ_X },
28*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_CBZ_W_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_CBZ_W_PC_REL, .type = FASTTRAP_T_ARM64_CBZ_W },
29*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_CBZ_X_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_CBZ_X_PC_REL, .type = FASTTRAP_T_ARM64_CBZ_X },
30*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_TBNZ_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_TBNZ_PC_REL, .type = FASTTRAP_T_ARM64_TBNZ },
31*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_TBZ_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_TBZ_PC_REL, .type = FASTTRAP_T_ARM64_TBZ },
32*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_B_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_B_PC_REL, .type = FASTTRAP_T_ARM64_B },
33*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_BL_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_BL_PC_REL, .type = FASTTRAP_T_ARM64_BL },
34*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_BLR, .value = FASTTRAP_ARM64_OP_VALUE_BLR, .type = FASTTRAP_T_ARM64_BLR },
35*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_BR, .value = FASTTRAP_ARM64_OP_VALUE_BR, .type = FASTTRAP_T_ARM64_BR },
36*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_RET, .value = FASTTRAP_ARM64_OP_VALUE_RET, .type = FASTTRAP_T_ARM64_RET },
37*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_ADRP, .value = FASTTRAP_ARM64_OP_VALUE_ADRP, .type = FASTTRAP_T_ARM64_ADRP },
38*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_ADR, .value = FASTTRAP_ARM64_OP_VALUE_ADR, .type = FASTTRAP_T_ARM64_ADR },
39*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_PRFM, .value = FASTTRAP_ARM64_OP_VALUE_PRFM, .type = FASTTRAP_T_ARM64_PRFM },
40*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_EXCL_MEM, .value = FASTTRAP_ARM64_OP_VALUE_EXCL_MEM, .type = FASTTRAP_T_ARM64_EXCLUSIVE_MEM },
41*e3723e1fSApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_RETAB, .value = FASTTRAP_ARM64_OP_VALUE_RETAB, .type = FASTTRAP_T_ARM64_RETAB }
42*e3723e1fSApple OSS Distributions };
43*e3723e1fSApple OSS Distributions
44*e3723e1fSApple OSS Distributions #define NUM_DECODE_ENTRIES (sizeof(arm64_decode_table) / sizeof(struct arm64_decode_entry))
45*e3723e1fSApple OSS Distributions
46*e3723e1fSApple OSS Distributions uint8_t
dtrace_decode_arm64(uint32_t instr)47*e3723e1fSApple OSS Distributions dtrace_decode_arm64(uint32_t instr)
48*e3723e1fSApple OSS Distributions {
49*e3723e1fSApple OSS Distributions unsigned i;
50*e3723e1fSApple OSS Distributions
51*e3723e1fSApple OSS Distributions for (i = 0; i < NUM_DECODE_ENTRIES; i++) {
52*e3723e1fSApple OSS Distributions if ((instr & arm64_decode_table[i].mask) == arm64_decode_table[i].value) {
53*e3723e1fSApple OSS Distributions return arm64_decode_table[i].type;
54*e3723e1fSApple OSS Distributions }
55*e3723e1fSApple OSS Distributions }
56*e3723e1fSApple OSS Distributions
57*e3723e1fSApple OSS Distributions return FASTTRAP_T_COMMON;
58*e3723e1fSApple OSS Distributions }
59