tcg/i386: Support 128-bit load/store
[qemu/ar7.git] / target / sparc / cpu-param.h
blobcb11980404a35caab7728f7c1f088646c19565f3
1 /*
2 * Sparc cpu parameters for qemu.
4 * SPDX-License-Identifier: LGPL-2.0+
5 */
7 #ifndef SPARC_CPU_PARAM_H
8 #define SPARC_CPU_PARAM_H
10 #ifdef TARGET_SPARC64
11 # define TARGET_LONG_BITS 64
12 # define TARGET_PAGE_BITS 13 /* 8k */
13 # define TARGET_PHYS_ADDR_SPACE_BITS 41
14 # ifdef TARGET_ABI32
15 # define TARGET_VIRT_ADDR_SPACE_BITS 32
16 # else
17 # define TARGET_VIRT_ADDR_SPACE_BITS 44
18 # endif
19 #else
20 # define TARGET_LONG_BITS 32
21 # define TARGET_PAGE_BITS 12 /* 4k */
22 # define TARGET_PHYS_ADDR_SPACE_BITS 36
23 # define TARGET_VIRT_ADDR_SPACE_BITS 32
24 #endif
26 #endif