| 1 | /* |
| 2 | * QEMU translation definitions for SPARC |
| 3 | * |
| 4 | * Copyright (c) 2024 Linaro, Ltd |
| 5 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 6 | */ |
| 7 | #ifndef SPARC_TRANSLATION_H |
| 8 | #define SPARC_TRANSLATION_H |
| 9 | |
| 10 | /* Dynamic PC, must exit to main loop. */ |
| 11 | #define DYNAMIC_PC 1 |
| 12 | /* Dynamic PC, one of two values according to jump_pc[T2]. */ |
| 13 | #define JUMP_PC 2 |
| 14 | /* Dynamic PC, may lookup next TB. */ |
| 15 | #define DYNAMIC_PC_LOOKUP 3 |
| 16 | |
| 17 | #endif |