OSDN Git Service

cpu_ldst.h: Use inline functions for usermode cpu_ld/st accessors
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 20 Jan 2015 15:19:34 +0000 (15:19 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 20 Jan 2015 15:19:34 +0000 (15:19 +0000)
commit9220fe54c679d145232a28df6255e166ebf91bab
treed2eefcbd2877e4da58887affa6d7ff97343c27ab
parent177ea79f65c90b3bc84d59565b7519e47ea02f63
cpu_ldst.h: Use inline functions for usermode cpu_ld/st accessors

Use inline functions rather than macros for cpu_ld/st accessors
for the *-user configurations, as we already do for softmmu.
This has a two advantages:
 * we can actually typecheck our arguments
 * we don't need to leak the _raw macros everywhere

Since the _kernel functions were only used by target-i386/seg_helper.c,
put the definitions for them in that file too. (It already has the
similar template include code to define them for the softmmu case,
so it makes sense to have it deal with defining them for user-only.)

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1421334118-3287-12-git-send-email-peter.maydell@linaro.org
include/exec/cpu_ldst.h
include/exec/cpu_ldst_useronly_template.h [new file with mode: 0644]
target-i386/seg_helper.c