xref: /qemu/include/accel/tcg/tb-cpu-state.h (revision 7cef6d686309e2792186504ae17cf4f3eb57ef68)
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3  * Definition of TCGTBCPUState.
4  */
5 
6 #ifndef EXEC_TB_CPU_STATE_H
7 #define EXEC_TB_CPU_STATE_H
8 
9 #include "exec/vaddr.h"
10 
11 typedef struct TCGTBCPUState {
12     vaddr pc;
13     uint32_t flags;
14     uint32_t cflags;
15     uint64_t cs_base;
16 } TCGTBCPUState;
17 
18 #endif
19