1 /* 2 * defines common to all virtual CPUs 3 * 4 * Copyright (c) 2003 Fabrice Bellard 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18 */ 19 #ifndef CPU_ALL_H 20 #define CPU_ALL_H 21 22 #include "exec/cpu-common.h" 23 #include "exec/memory.h" 24 #include "qemu/thread.h" 25 #include "hw/core/cpu.h" 26 #include "qemu/rcu.h" 27 28 #define EXCP_INTERRUPT 0x10000 /* async interruption */ 29 #define EXCP_HLT 0x10001 /* hlt instruction reached */ 30 #define EXCP_DEBUG 0x10002 /* cpu stopped after a breakpoint or singlestep */ 31 #define EXCP_HALTED 0x10003 /* cpu is halted (waiting for external event) */ 32 #define EXCP_YIELD 0x10004 /* cpu wants to yield timeslice to another */ 33 #define EXCP_ATOMIC 0x10005 /* stop-the-world and emulate atomic */ 34 35 /* some important defines: 36 * 37 * HOST_BIG_ENDIAN : whether the host cpu is big endian and 38 * otherwise little endian. 39 * 40 * TARGET_WORDS_BIGENDIAN : if defined, the host cpu is big endian and otherwise 41 * little endian. 42 */ 43 44 #if HOST_BIG_ENDIAN != defined(TARGET_WORDS_BIGENDIAN) 45 #define BSWAP_NEEDED 46 #endif 47 48 #ifdef BSWAP_NEEDED 49 50 static inline uint16_t tswap16(uint16_t s) 51 { 52 return bswap16(s); 53 } 54 55 static inline uint32_t tswap32(uint32_t s) 56 { 57 return bswap32(s); 58 } 59 60 static inline uint64_t tswap64(uint64_t s) 61 { 62 return bswap64(s); 63 } 64 65 static inline void tswap16s(uint16_t *s) 66 { 67 *s = bswap16(*s); 68 } 69 70 static inline void tswap32s(uint32_t *s) 71 { 72 *s = bswap32(*s); 73 } 74 75 static inline void tswap64s(uint64_t *s) 76 { 77 *s = bswap64(*s); 78 } 79 80 #else 81 82 static inline uint16_t tswap16(uint16_t s) 83 { 84 return s; 85 } 86 87 static inline uint32_t tswap32(uint32_t s) 88 { 89 return s; 90 } 91 92 static inline uint64_t tswap64(uint64_t s) 93 { 94 return s; 95 } 96 97 static inline void tswap16s(uint16_t *s) 98 { 99 } 100 101 static inline void tswap32s(uint32_t *s) 102 { 103 } 104 105 static inline void tswap64s(uint64_t *s) 106 { 107 } 108 109 #endif 110 111 #if TARGET_LONG_SIZE == 4 112 #define tswapl(s) tswap32(s) 113 #define tswapls(s) tswap32s((uint32_t *)(s)) 114 #define bswaptls(s) bswap32s(s) 115 #else 116 #define tswapl(s) tswap64(s) 117 #define tswapls(s) tswap64s((uint64_t *)(s)) 118 #define bswaptls(s) bswap64s(s) 119 #endif 120 121 /* Target-endianness CPU memory access functions. These fit into the 122 * {ld,st}{type}{sign}{size}{endian}_p naming scheme described in bswap.h. 123 */ 124 #if defined(TARGET_WORDS_BIGENDIAN) 125 #define lduw_p(p) lduw_be_p(p) 126 #define ldsw_p(p) ldsw_be_p(p) 127 #define ldl_p(p) ldl_be_p(p) 128 #define ldq_p(p) ldq_be_p(p) 129 #define stw_p(p, v) stw_be_p(p, v) 130 #define stl_p(p, v) stl_be_p(p, v) 131 #define stq_p(p, v) stq_be_p(p, v) 132 #define ldn_p(p, sz) ldn_be_p(p, sz) 133 #define stn_p(p, sz, v) stn_be_p(p, sz, v) 134 #else 135 #define lduw_p(p) lduw_le_p(p) 136 #define ldsw_p(p) ldsw_le_p(p) 137 #define ldl_p(p) ldl_le_p(p) 138 #define ldq_p(p) ldq_le_p(p) 139 #define stw_p(p, v) stw_le_p(p, v) 140 #define stl_p(p, v) stl_le_p(p, v) 141 #define stq_p(p, v) stq_le_p(p, v) 142 #define ldn_p(p, sz) ldn_le_p(p, sz) 143 #define stn_p(p, sz, v) stn_le_p(p, sz, v) 144 #endif 145 146 /* MMU memory access macros */ 147 148 #if defined(CONFIG_USER_ONLY) 149 #include "exec/user/abitypes.h" 150 151 /* On some host systems the guest address space is reserved on the host. 152 * This allows the guest address space to be offset to a convenient location. 153 */ 154 extern uintptr_t guest_base; 155 extern bool have_guest_base; 156 extern unsigned long reserved_va; 157 158 /* 159 * Limit the guest addresses as best we can. 160 * 161 * When not using -R reserved_va, we cannot really limit the guest 162 * to less address space than the host. For 32-bit guests, this 163 * acts as a sanity check that we're not giving the guest an address 164 * that it cannot even represent. For 64-bit guests... the address 165 * might not be what the real kernel would give, but it is at least 166 * representable in the guest. 167 * 168 * TODO: Improve address allocation to avoid this problem, and to 169 * avoid setting bits at the top of guest addresses that might need 170 * to be used for tags. 171 */ 172 #define GUEST_ADDR_MAX_ \ 173 ((MIN_CONST(TARGET_VIRT_ADDR_SPACE_BITS, TARGET_ABI_BITS) <= 32) ? \ 174 UINT32_MAX : ~0ul) 175 #define GUEST_ADDR_MAX (reserved_va ? reserved_va - 1 : GUEST_ADDR_MAX_) 176 177 #else 178 179 #include "exec/hwaddr.h" 180 181 #define SUFFIX 182 #define ARG1 as 183 #define ARG1_DECL AddressSpace *as 184 #define TARGET_ENDIANNESS 185 #include "exec/memory_ldst.h.inc" 186 187 #define SUFFIX _cached_slow 188 #define ARG1 cache 189 #define ARG1_DECL MemoryRegionCache *cache 190 #define TARGET_ENDIANNESS 191 #include "exec/memory_ldst.h.inc" 192 193 static inline void stl_phys_notdirty(AddressSpace *as, hwaddr addr, uint32_t val) 194 { 195 address_space_stl_notdirty(as, addr, val, 196 MEMTXATTRS_UNSPECIFIED, NULL); 197 } 198 199 #define SUFFIX 200 #define ARG1 as 201 #define ARG1_DECL AddressSpace *as 202 #define TARGET_ENDIANNESS 203 #include "exec/memory_ldst_phys.h.inc" 204 205 /* Inline fast path for direct RAM access. */ 206 #define ENDIANNESS 207 #include "exec/memory_ldst_cached.h.inc" 208 209 #define SUFFIX _cached 210 #define ARG1 cache 211 #define ARG1_DECL MemoryRegionCache *cache 212 #define TARGET_ENDIANNESS 213 #include "exec/memory_ldst_phys.h.inc" 214 #endif 215 216 /* page related stuff */ 217 218 #ifdef TARGET_PAGE_BITS_VARY 219 # include "exec/page-vary.h" 220 extern const TargetPageBits target_page; 221 #ifdef CONFIG_DEBUG_TCG 222 #define TARGET_PAGE_BITS ({ assert(target_page.decided); target_page.bits; }) 223 #define TARGET_PAGE_MASK ({ assert(target_page.decided); \ 224 (target_long)target_page.mask; }) 225 #else 226 #define TARGET_PAGE_BITS target_page.bits 227 #define TARGET_PAGE_MASK ((target_long)target_page.mask) 228 #endif 229 #define TARGET_PAGE_SIZE (-(int)TARGET_PAGE_MASK) 230 #else 231 #define TARGET_PAGE_BITS_MIN TARGET_PAGE_BITS 232 #define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS) 233 #define TARGET_PAGE_MASK ((target_long)-1 << TARGET_PAGE_BITS) 234 #endif 235 236 #define TARGET_PAGE_ALIGN(addr) ROUND_UP((addr), TARGET_PAGE_SIZE) 237 238 /* same as PROT_xxx */ 239 #define PAGE_READ 0x0001 240 #define PAGE_WRITE 0x0002 241 #define PAGE_EXEC 0x0004 242 #define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC) 243 #define PAGE_VALID 0x0008 244 /* 245 * Original state of the write flag (used when tracking self-modifying code) 246 */ 247 #define PAGE_WRITE_ORG 0x0010 248 /* 249 * Invalidate the TLB entry immediately, helpful for s390x 250 * Low-Address-Protection. Used with PAGE_WRITE in tlb_set_page_with_attrs() 251 */ 252 #define PAGE_WRITE_INV 0x0020 253 /* For use with page_set_flags: page is being replaced; target_data cleared. */ 254 #define PAGE_RESET 0x0040 255 /* For linux-user, indicates that the page is MAP_ANON. */ 256 #define PAGE_ANON 0x0080 257 258 #if defined(CONFIG_BSD) && defined(CONFIG_USER_ONLY) 259 /* FIXME: Code that sets/uses this is broken and needs to go away. */ 260 #define PAGE_RESERVED 0x0100 261 #endif 262 /* Target-specific bits that will be used via page_get_flags(). */ 263 #define PAGE_TARGET_1 0x0200 264 #define PAGE_TARGET_2 0x0400 265 266 #if defined(CONFIG_USER_ONLY) 267 void page_dump(FILE *f); 268 269 typedef int (*walk_memory_regions_fn)(void *, target_ulong, 270 target_ulong, unsigned long); 271 int walk_memory_regions(void *, walk_memory_regions_fn); 272 273 int page_get_flags(target_ulong address); 274 void page_set_flags(target_ulong start, target_ulong end, int flags); 275 int page_check_range(target_ulong start, target_ulong len, int flags); 276 277 /** 278 * page_alloc_target_data(address, size) 279 * @address: guest virtual address 280 * @size: size of data to allocate 281 * 282 * Allocate @size bytes of out-of-band data to associate with the 283 * guest page at @address. If the page is not mapped, NULL will 284 * be returned. If there is existing data associated with @address, 285 * no new memory will be allocated. 286 * 287 * The memory will be freed when the guest page is deallocated, 288 * e.g. with the munmap system call. 289 */ 290 void *page_alloc_target_data(target_ulong address, size_t size); 291 292 /** 293 * page_get_target_data(address) 294 * @address: guest virtual address 295 * 296 * Return any out-of-bound memory assocated with the guest page 297 * at @address, as per page_alloc_target_data. 298 */ 299 void *page_get_target_data(target_ulong address); 300 #endif 301 302 CPUArchState *cpu_copy(CPUArchState *env); 303 304 /* Flags for use in ENV->INTERRUPT_PENDING. 305 306 The numbers assigned here are non-sequential in order to preserve 307 binary compatibility with the vmstate dump. Bit 0 (0x0001) was 308 previously used for CPU_INTERRUPT_EXIT, and is cleared when loading 309 the vmstate dump. */ 310 311 /* External hardware interrupt pending. This is typically used for 312 interrupts from devices. */ 313 #define CPU_INTERRUPT_HARD 0x0002 314 315 /* Exit the current TB. This is typically used when some system-level device 316 makes some change to the memory mapping. E.g. the a20 line change. */ 317 #define CPU_INTERRUPT_EXITTB 0x0004 318 319 /* Halt the CPU. */ 320 #define CPU_INTERRUPT_HALT 0x0020 321 322 /* Debug event pending. */ 323 #define CPU_INTERRUPT_DEBUG 0x0080 324 325 /* Reset signal. */ 326 #define CPU_INTERRUPT_RESET 0x0400 327 328 /* Several target-specific external hardware interrupts. Each target/cpu.h 329 should define proper names based on these defines. */ 330 #define CPU_INTERRUPT_TGT_EXT_0 0x0008 331 #define CPU_INTERRUPT_TGT_EXT_1 0x0010 332 #define CPU_INTERRUPT_TGT_EXT_2 0x0040 333 #define CPU_INTERRUPT_TGT_EXT_3 0x0200 334 #define CPU_INTERRUPT_TGT_EXT_4 0x1000 335 336 /* Several target-specific internal interrupts. These differ from the 337 preceding target-specific interrupts in that they are intended to 338 originate from within the cpu itself, typically in response to some 339 instruction being executed. These, therefore, are not masked while 340 single-stepping within the debugger. */ 341 #define CPU_INTERRUPT_TGT_INT_0 0x0100 342 #define CPU_INTERRUPT_TGT_INT_1 0x0800 343 #define CPU_INTERRUPT_TGT_INT_2 0x2000 344 345 /* First unused bit: 0x4000. */ 346 347 /* The set of all bits that should be masked when single-stepping. */ 348 #define CPU_INTERRUPT_SSTEP_MASK \ 349 (CPU_INTERRUPT_HARD \ 350 | CPU_INTERRUPT_TGT_EXT_0 \ 351 | CPU_INTERRUPT_TGT_EXT_1 \ 352 | CPU_INTERRUPT_TGT_EXT_2 \ 353 | CPU_INTERRUPT_TGT_EXT_3 \ 354 | CPU_INTERRUPT_TGT_EXT_4) 355 356 #ifdef CONFIG_USER_ONLY 357 358 /* 359 * Allow some level of source compatibility with softmmu. We do not 360 * support any of the more exotic features, so only invalid pages may 361 * be signaled by probe_access_flags(). 362 */ 363 #define TLB_INVALID_MASK (1 << (TARGET_PAGE_BITS_MIN - 1)) 364 #define TLB_MMIO 0 365 #define TLB_WATCHPOINT 0 366 367 #else 368 369 /* 370 * Flags stored in the low bits of the TLB virtual address. 371 * These are defined so that fast path ram access is all zeros. 372 * The flags all must be between TARGET_PAGE_BITS and 373 * maximum address alignment bit. 374 * 375 * Use TARGET_PAGE_BITS_MIN so that these bits are constant 376 * when TARGET_PAGE_BITS_VARY is in effect. 377 */ 378 /* Zero if TLB entry is valid. */ 379 #define TLB_INVALID_MASK (1 << (TARGET_PAGE_BITS_MIN - 1)) 380 /* Set if TLB entry references a clean RAM page. The iotlb entry will 381 contain the page physical address. */ 382 #define TLB_NOTDIRTY (1 << (TARGET_PAGE_BITS_MIN - 2)) 383 /* Set if TLB entry is an IO callback. */ 384 #define TLB_MMIO (1 << (TARGET_PAGE_BITS_MIN - 3)) 385 /* Set if TLB entry contains a watchpoint. */ 386 #define TLB_WATCHPOINT (1 << (TARGET_PAGE_BITS_MIN - 4)) 387 /* Set if TLB entry requires byte swap. */ 388 #define TLB_BSWAP (1 << (TARGET_PAGE_BITS_MIN - 5)) 389 /* Set if TLB entry writes ignored. */ 390 #define TLB_DISCARD_WRITE (1 << (TARGET_PAGE_BITS_MIN - 6)) 391 392 /* Use this mask to check interception with an alignment mask 393 * in a TCG backend. 394 */ 395 #define TLB_FLAGS_MASK \ 396 (TLB_INVALID_MASK | TLB_NOTDIRTY | TLB_MMIO \ 397 | TLB_WATCHPOINT | TLB_BSWAP | TLB_DISCARD_WRITE) 398 399 /** 400 * tlb_hit_page: return true if page aligned @addr is a hit against the 401 * TLB entry @tlb_addr 402 * 403 * @addr: virtual address to test (must be page aligned) 404 * @tlb_addr: TLB entry address (a CPUTLBEntry addr_read/write/code value) 405 */ 406 static inline bool tlb_hit_page(target_ulong tlb_addr, target_ulong addr) 407 { 408 return addr == (tlb_addr & (TARGET_PAGE_MASK | TLB_INVALID_MASK)); 409 } 410 411 /** 412 * tlb_hit: return true if @addr is a hit against the TLB entry @tlb_addr 413 * 414 * @addr: virtual address to test (need not be page aligned) 415 * @tlb_addr: TLB entry address (a CPUTLBEntry addr_read/write/code value) 416 */ 417 static inline bool tlb_hit(target_ulong tlb_addr, target_ulong addr) 418 { 419 return tlb_hit_page(tlb_addr, addr & TARGET_PAGE_MASK); 420 } 421 422 #ifdef CONFIG_TCG 423 /* accel/tcg/cpu-exec.c */ 424 void dump_drift_info(GString *buf); 425 /* accel/tcg/translate-all.c */ 426 void dump_exec_info(GString *buf); 427 void dump_opcount_info(GString *buf); 428 #endif /* CONFIG_TCG */ 429 430 #endif /* !CONFIG_USER_ONLY */ 431 432 /* accel/tcg/cpu-exec.c */ 433 int cpu_exec(CPUState *cpu); 434 void tcg_exec_realizefn(CPUState *cpu, Error **errp); 435 void tcg_exec_unrealizefn(CPUState *cpu); 436 437 /** 438 * cpu_set_cpustate_pointers(cpu) 439 * @cpu: The cpu object 440 * 441 * Set the generic pointers in CPUState into the outer object. 442 */ 443 static inline void cpu_set_cpustate_pointers(ArchCPU *cpu) 444 { 445 cpu->parent_obj.env_ptr = &cpu->env; 446 cpu->parent_obj.icount_decr_ptr = &cpu->neg.icount_decr; 447 } 448 449 /** 450 * env_archcpu(env) 451 * @env: The architecture environment 452 * 453 * Return the ArchCPU associated with the environment. 454 */ 455 static inline ArchCPU *env_archcpu(CPUArchState *env) 456 { 457 return container_of(env, ArchCPU, env); 458 } 459 460 /** 461 * env_cpu(env) 462 * @env: The architecture environment 463 * 464 * Return the CPUState associated with the environment. 465 */ 466 static inline CPUState *env_cpu(CPUArchState *env) 467 { 468 return &env_archcpu(env)->parent_obj; 469 } 470 471 /** 472 * env_neg(env) 473 * @env: The architecture environment 474 * 475 * Return the CPUNegativeOffsetState associated with the environment. 476 */ 477 static inline CPUNegativeOffsetState *env_neg(CPUArchState *env) 478 { 479 ArchCPU *arch_cpu = container_of(env, ArchCPU, env); 480 return &arch_cpu->neg; 481 } 482 483 /** 484 * cpu_neg(cpu) 485 * @cpu: The generic CPUState 486 * 487 * Return the CPUNegativeOffsetState associated with the cpu. 488 */ 489 static inline CPUNegativeOffsetState *cpu_neg(CPUState *cpu) 490 { 491 ArchCPU *arch_cpu = container_of(cpu, ArchCPU, parent_obj); 492 return &arch_cpu->neg; 493 } 494 495 /** 496 * env_tlb(env) 497 * @env: The architecture environment 498 * 499 * Return the CPUTLB state associated with the environment. 500 */ 501 static inline CPUTLB *env_tlb(CPUArchState *env) 502 { 503 return &env_neg(env)->tlb; 504 } 505 506 #endif /* CPU_ALL_H */ 507