mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
Merge tag 'pull-tcg-20260707' of https://gitlab.com/rth7680/qemu into staging
tcg/loongarch64: Fix cmp_vec with TCG_COND_NE tcg/x86_64: declare MO_ATOM_WITHIN16 host atomicity support accel/tcg: Make PageFlagsNodes' start and last immutable accel/tcg: Use TLB_FORCE_SLOW not TLB_MMIO for user-only plugins # -----BEGIN PGP SIGNATURE----- # # iQFRBAABCgA7FiEEekgeeIaLTbaoWgXAZN846K9+IV8FAmpNaDIdHHJpY2hhcmQu # aGVuZGVyc29uQGxpbmFyby5vcmcACgkQZN846K9+IV8qlwgAqFBxRHQFzeNrivul # 9u4jrEqsQS2wu2pL/rKfr7DTBTzmbibmzTT229yru8yahvpONrbYOantxjikAW6z # tRgaKaLlFOw2Ll6VKbOxdu2OL+nemOAW3ehiHutuPLtxFSGWQsFtC38Qz51sC1K9 # nTX8vkuYkkIKyVU0Klinu2rjqZW3h1yIwKwC6tieh08y6YYeOODYoAfpEJ+hGus1 # 33hMlE1zEj9j4JVpsDR3Rl3zXUbnV3FMeikTd8Xkl9fBDeWs/aFVLVLXWQ0BYULC # 62/ZOghnfbrM7p2osLAhkNSL020vn/G1c2O8ofSa0pXj+I7YM80H2m7zsyiBa685 # rm7IKg== # =0LKf # -----END PGP SIGNATURE----- # gpg: Signature made Tue 07 Jul 2026 22:57:22 CEST # gpg: using RSA key 7A481E78868B4DB6A85A05C064DF38E8AF7E215F # gpg: issuer "richard.henderson@linaro.org" # gpg: Good signature from "Richard Henderson <richard.henderson@linaro.org>" [full] # Primary key fingerprint: 7A48 1E78 868B 4DB6 A85A 05C0 64DF 38E8 AF7E 215F * tag 'pull-tcg-20260707' of https://gitlab.com/rth7680/qemu: tcg/loongarch64: Fix cmp_vec with TCG_COND_NE tcg/x86_64: declare MO_ATOM_WITHIN16 host atomicity support Revert "tests/tcg: skip the vma-pthread test on CI" tests/tcg/multiarch: Improve mutator randomness accel/tcg: Make PageFlagsNodes' start and last immutable accel/tcg: Use TLB_FORCE_SLOW not TLB_MMIO for user-only plugins Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
@@ -27,12 +27,13 @@
|
||||
|
||||
/*
|
||||
* Allow some level of source compatibility with softmmu.
|
||||
* Invalid is set when the page does not have requested permissions.
|
||||
* MMIO is set when we want the target helper to use the functional
|
||||
* INVALID is set when the page does not have requested permissions.
|
||||
* FORCE_SLOW is set when we want the target helper to use the functional
|
||||
* interface for load/store so that plugins see the access.
|
||||
*/
|
||||
#define TLB_INVALID_MASK (1 << 0)
|
||||
#define TLB_MMIO (1 << 1)
|
||||
#define TLB_FORCE_SLOW (1 << 1)
|
||||
#define TLB_MMIO 0
|
||||
#define TLB_WATCHPOINT 0
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user