mirror of https://github.com/xemu-project/xemu.git
target/i386: Inline user cpu_svm_check_intercept_param
The user-version is a no-op. This lets us completely remove tcg/user/svm_stubs.c. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20210514151342.384376-44-richard.henderson@linaro.org>
This commit is contained in:
parent
35e5a5d5cb
commit
27bd3216a7
|
@ -2146,8 +2146,16 @@ static inline void cpu_set_fpuc(CPUX86State *env, uint16_t fpuc)
|
||||||
void helper_lock_init(void);
|
void helper_lock_init(void);
|
||||||
|
|
||||||
/* svm_helper.c */
|
/* svm_helper.c */
|
||||||
|
#ifdef CONFIG_USER_ONLY
|
||||||
|
static inline void
|
||||||
|
cpu_svm_check_intercept_param(CPUX86State *env1, uint32_t type,
|
||||||
|
uint64_t param, uintptr_t retaddr)
|
||||||
|
{ /* no-op */ }
|
||||||
|
#else
|
||||||
void cpu_svm_check_intercept_param(CPUX86State *env1, uint32_t type,
|
void cpu_svm_check_intercept_param(CPUX86State *env1, uint32_t type,
|
||||||
uint64_t param, uintptr_t retaddr);
|
uint64_t param, uintptr_t retaddr);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* apic.c */
|
/* apic.c */
|
||||||
void cpu_report_tpr_access(CPUX86State *env, TPRAccess access);
|
void cpu_report_tpr_access(CPUX86State *env, TPRAccess access);
|
||||||
void apic_handle_tpr_access_report(DeviceState *d, target_ulong ip,
|
void apic_handle_tpr_access_report(DeviceState *d, target_ulong ip,
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
i386_user_ss.add(when: ['CONFIG_TCG', 'CONFIG_USER_ONLY'], if_true: files(
|
i386_user_ss.add(when: ['CONFIG_TCG', 'CONFIG_USER_ONLY'], if_true: files(
|
||||||
'excp_helper.c',
|
'excp_helper.c',
|
||||||
'misc_stubs.c',
|
'misc_stubs.c',
|
||||||
'svm_stubs.c',
|
|
||||||
'seg_helper.c',
|
'seg_helper.c',
|
||||||
))
|
))
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
/*
|
|
||||||
* x86 SVM helpers (user-mode)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2003 Fabrice Bellard
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2.1 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
|
||||||
#include "cpu.h"
|
|
||||||
#include "exec/helper-proto.h"
|
|
||||||
#include "tcg/helper-tcg.h"
|
|
||||||
|
|
||||||
void cpu_svm_check_intercept_param(CPUX86State *env, uint32_t type,
|
|
||||||
uint64_t param, uintptr_t retaddr)
|
|
||||||
{
|
|
||||||
}
|
|
Loading…
Reference in New Issue