diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2018-03-05 00:31:20 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-03-06 14:01:27 +0100 |
commit | 785a507ec78bbda1c346f3d3593e5a58b62e73ef (patch) | |
tree | ae204064aeadb7e998d606cd41c1484e47636a6c /include/exec/memory.h | |
parent | 80d2b933f9fe3e53d4f76a45a1bc1a0175669468 (diff) | |
download | qemu-785a507ec78bbda1c346f3d3593e5a58b62e73ef.zip qemu-785a507ec78bbda1c346f3d3593e5a58b62e73ef.tar.gz qemu-785a507ec78bbda1c346f3d3593e5a58b62e73ef.tar.bz2 |
memory: inline some performance-sensitive accessors
These accessors are called from inlined functions, and the call sequence
is much more expensive than just inlining the access. Move the
struct declaration to memory-internal.h so that exec.c and memory.c
can both use an inline function.
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/exec/memory.h')
-rw-r--r-- | include/exec/memory.h | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index 15e8111..4b65b56 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -326,7 +326,27 @@ struct AddressSpace { QTAILQ_ENTRY(AddressSpace) address_spaces_link; }; -FlatView *address_space_to_flatview(AddressSpace *as); +typedef struct AddressSpaceDispatch AddressSpaceDispatch; +typedef struct FlatRange FlatRange; + +/* Flattened global view of current active memory hierarchy. Kept in sorted + * order. + */ +struct FlatView { + struct rcu_head rcu; + unsigned ref; + FlatRange *ranges; + unsigned nr; + unsigned nr_allocated; + struct AddressSpaceDispatch *dispatch; + MemoryRegion *root; +}; + +static inline FlatView *address_space_to_flatview(AddressSpace *as) +{ + return atomic_rcu_read(&as->current_map); +} + /** * MemoryRegionSection: describes a fragment of a #MemoryRegion |