master
c 39 lines 734 Bytes
Raw
1 /*
2 * SPDX-License-Identifier: GPL-2.0-or-later
3 */
4
5 #include "qemu/osdep.h"
6 #include "target/arm/internals.h"
7 #include "target/arm/tcg/translate.h"
8
9
10 void gen_a64_update_pc(DisasContext *s, int64_t diff)
11 {
12 g_assert_not_reached();
13 }
14
15 void a64_translate_init(void)
16 {
17 /* Don't initialize for 32 bits. Call site will be fixed later. */
18 }
19
20 void aarch64_translate_code(CPUState *cs, TranslationBlock *tb,
21 int *max_insns, vaddr pc, void *host_pc)
22 {
23 g_assert_not_reached();
24 }
25
26 void aarch64_host_initfn(Object *obj)
27 {
28 g_assert_not_reached();
29 }
30
31 void aarch64_max_v8_tcg_initfn(Object *obj)
32 {
33 g_assert_not_reached();
34 }
35
36 void aarch64_max_v9_tcg_initfn(Object *obj)
37 {
38 g_assert_not_reached();
39 }