| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #include "qemu/osdep.h" |
| 4 | #include "target/arm/cpu.h" |
| 5 | #include "target/arm/internals.h" |
| 6 | |
| 7 | void aarch64_cpu_sme_finalize(ARMCPU *cpu, Error **errp) |
| 8 | { |
| 9 | g_assert_not_reached(); |
| 10 | } |
| 11 | |
| 12 | void aarch64_cpu_sve_finalize(ARMCPU *cpu, Error **errp) |
| 13 | { |
| 14 | g_assert_not_reached(); |
| 15 | } |
| 16 | |
| 17 | void aarch64_cpu_pauth_finalize(ARMCPU *cpu, Error **errp) |
| 18 | { |
| 19 | g_assert_not_reached(); |
| 20 | } |
| 21 | |
| 22 | void aarch64_cpu_lpa2_finalize(ARMCPU *cpu, Error **errp) |
| 23 | { |
| 24 | g_assert_not_reached(); |
| 25 | } |
| 26 | |
| 27 | int aarch64_cpu_gdb_read_register(CPUState *cpu, GByteArray *buf, int reg) |
| 28 | { |
| 29 | g_assert_not_reached(); |
| 30 | } |
| 31 | |
| 32 | int aarch64_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg) |
| 33 | { |
| 34 | g_assert_not_reached(); |
| 35 | } |
| 36 | |
| 37 | void aarch64_cpu_register_gdb_commands(ARMCPU *cpu, GString *qsupported, |
| 38 | GPtrArray *qtable, GPtrArray *stable) |
| 39 | { |
| 40 | g_assert_not_reached(); |
| 41 | } |
| 42 | |
| 43 | void aarch64_cpu_register_gdb_regs_for_features(ARMCPU *cpu) |
| 44 | { |
| 45 | g_assert_not_reached(); |
| 46 | } |