1*a325d9c4SApple OSS Distributions /*
2*a325d9c4SApple OSS Distributions * Copyright (c) 2017-2018 Apple Inc. All rights reserved.
3*a325d9c4SApple OSS Distributions *
4*a325d9c4SApple OSS Distributions * Disassemblers for ARM64 (AArch64)
5*a325d9c4SApple OSS Distributions */
6*a325d9c4SApple OSS Distributions
7*a325d9c4SApple OSS Distributions #include <sys/fasttrap_isa.h>
8*a325d9c4SApple OSS Distributions
9*a325d9c4SApple OSS Distributions uint8_t dtrace_decode_arm64(uint32_t instr);
10*a325d9c4SApple OSS Distributions
11*a325d9c4SApple OSS Distributions struct arm64_decode_entry {
12*a325d9c4SApple OSS Distributions uint32_t mask;
13*a325d9c4SApple OSS Distributions uint32_t value;
14*a325d9c4SApple OSS Distributions uint8_t type;
15*a325d9c4SApple OSS Distributions };
16*a325d9c4SApple OSS Distributions
17*a325d9c4SApple OSS Distributions struct arm64_decode_entry arm64_decode_table[] = {
18*a325d9c4SApple OSS Distributions { .mask = 0xFFFFFFFF, .value = FASTTRAP_ARM64_OP_VALUE_FUNC_ENTRY, .type = FASTTRAP_T_ARM64_STANDARD_FUNCTION_ENTRY },
19*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple 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*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_TBNZ_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_TBNZ_PC_REL, .type = FASTTRAP_T_ARM64_TBNZ },
31*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_TBZ_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_TBZ_PC_REL, .type = FASTTRAP_T_ARM64_TBZ },
32*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_B_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_B_PC_REL, .type = FASTTRAP_T_ARM64_B },
33*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_BL_PC_REL, .value = FASTTRAP_ARM64_OP_VALUE_BL_PC_REL, .type = FASTTRAP_T_ARM64_BL },
34*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_BLR, .value = FASTTRAP_ARM64_OP_VALUE_BLR, .type = FASTTRAP_T_ARM64_BLR },
35*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_BR, .value = FASTTRAP_ARM64_OP_VALUE_BR, .type = FASTTRAP_T_ARM64_BR },
36*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_RET, .value = FASTTRAP_ARM64_OP_VALUE_RET, .type = FASTTRAP_T_ARM64_RET },
37*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_ADRP, .value = FASTTRAP_ARM64_OP_VALUE_ADRP, .type = FASTTRAP_T_ARM64_ADRP },
38*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_ADR, .value = FASTTRAP_ARM64_OP_VALUE_ADR, .type = FASTTRAP_T_ARM64_ADR },
39*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_PRFM, .value = FASTTRAP_ARM64_OP_VALUE_PRFM, .type = FASTTRAP_T_ARM64_PRFM },
40*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_EXCL_MEM, .value = FASTTRAP_ARM64_OP_VALUE_EXCL_MEM, .type = FASTTRAP_T_ARM64_EXCLUSIVE_MEM },
41*a325d9c4SApple OSS Distributions { .mask = FASTTRAP_ARM64_OP_MASK_RETAB, .value = FASTTRAP_ARM64_OP_VALUE_RETAB, .type = FASTTRAP_T_ARM64_RETAB }
42*a325d9c4SApple OSS Distributions };
43*a325d9c4SApple OSS Distributions
44*a325d9c4SApple OSS Distributions #define NUM_DECODE_ENTRIES (sizeof(arm64_decode_table) / sizeof(struct arm64_decode_entry))
45*a325d9c4SApple OSS Distributions
46*a325d9c4SApple OSS Distributions uint8_t
dtrace_decode_arm64(uint32_t instr)47*a325d9c4SApple OSS Distributions dtrace_decode_arm64(uint32_t instr)
48*a325d9c4SApple OSS Distributions {
49*a325d9c4SApple OSS Distributions unsigned i;
50*a325d9c4SApple OSS Distributions
51*a325d9c4SApple OSS Distributions for (i = 0; i < NUM_DECODE_ENTRIES; i++) {
52*a325d9c4SApple OSS Distributions if ((instr & arm64_decode_table[i].mask) == arm64_decode_table[i].value) {
53*a325d9c4SApple OSS Distributions return arm64_decode_table[i].type;
54*a325d9c4SApple OSS Distributions }
55*a325d9c4SApple OSS Distributions }
56*a325d9c4SApple OSS Distributions
57*a325d9c4SApple OSS Distributions return FASTTRAP_T_COMMON;
58*a325d9c4SApple OSS Distributions }
59