mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-08 00:17:01 +00:00
This patch adds support to sep/socwatch profiling Adds 2 new files include/arch/x86/profiling.h and arch/x86/profiling.c which contains most of the implementation for profiling,most of the functions in profiling.c have dummy implementation and will be implemented in next patches a. cpu.c, Initial profiling setup is done as part of bsp_boot_post and cpu_secondary_post flow b. vmcall.c, New ioctl is added for performing profiling related operations in vmcall_vmexit_handler ioctl - HC_PROFILING_OPS function - hcall_profiling_ops() c. common/hypercall.c, hcall_profiling_ops() implementation. d. hv_main.c, In vcpu_thread calling profiling related functions to save vm context e. acrn_hv_defs.h, list all the profiling command types Tracked-On: projectacrn#1409 Acked-by: Eddie Dong <eddie.dong@intel.com> Signed-off-by: Chinthapally, Manisha <manisha.chinthapally@intel.com>
34 lines
770 B
C
34 lines
770 B
C
/*
|
|
* Copyright (C) 2018 int32_tel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PROFILING_H
|
|
#define PROFILING_H
|
|
|
|
#ifdef PROFILING_ON
|
|
|
|
#include <profiling_internal.h>
|
|
|
|
void profiling_vmenter_handler(struct vcpu *vcpu);
|
|
void profiling_vmexit_handler(struct vcpu *vcpu, uint64_t exit_reason);
|
|
void profiling_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void profiling_vmenter_handler(__unused struct vcpu *vcpu) {}
|
|
static inline void profiling_vmexit_handler(__unused struct vcpu *vcpu,
|
|
__unused uint64_t exit_reason) {}
|
|
static inline void profiling_setup(void) {}
|
|
|
|
static inline int32_t hcall_profiling_ops(__unused struct vm *vm,
|
|
__unused uint64_t cmd, __unused uint64_t param)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* PROFILING_H */
|