Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:kvm_cpu_cap_has
(Results
1 - 9
of
9
) sorted by relevance
/kernel/linux/linux-6.6/arch/x86/kvm/
H
A
D
cpuid.c
801
if (WARN_ON((
kvm_cpu_cap_has
(X86_FEATURE_RDTSCP) ||
in kvm_set_cpu_caps()
802
kvm_cpu_cap_has
(X86_FEATURE_RDPID)) &&
in kvm_set_cpu_caps()
891
if (
kvm_cpu_cap_has
(X86_FEATURE_RDTSCP))
in __do_cpuid_func_emulated()
1078
if (!
kvm_cpu_cap_has
(X86_FEATURE_XFD))
in __do_cpuid_func()
1086
if (!
kvm_cpu_cap_has
(X86_FEATURE_SGX)) {
in __do_cpuid_func()
1116
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT)) {
in __do_cpuid_func()
1128
if (!
kvm_cpu_cap_has
(X86_FEATURE_AMX_TILE)) {
in __do_cpuid_func()
1139
if (!
kvm_cpu_cap_has
(X86_FEATURE_AMX_TILE)) {
in __do_cpuid_func()
1240
if (!
kvm_cpu_cap_has
(X86_FEATURE_SVM)) {
in __do_cpuid_func()
1263
if (!
kvm_cpu_cap_has
(X86_FEATURE_SE
in __do_cpuid_func()
[all...]
H
A
D
cpuid.h
215
static __always_inline bool
kvm_cpu_cap_has
(unsigned int x86_feature)
in kvm_cpu_cap_has()
function
268
if (
kvm_cpu_cap_has
(x86_feature) && guest_cpuid_has(vcpu, x86_feature))
in kvm_governed_feature_check_and_set()
H
A
D
x86.c
7144
if (!
kvm_cpu_cap_has
(X86_FEATURE_RDTSCP) &&
in kvm_probe_msr_to_save()
7145
!
kvm_cpu_cap_has
(X86_FEATURE_RDPID))
in kvm_probe_msr_to_save()
7149
if (!
kvm_cpu_cap_has
(X86_FEATURE_WAITPKG))
in kvm_probe_msr_to_save()
7154
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT))
in kvm_probe_msr_to_save()
7158
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT) ||
in kvm_probe_msr_to_save()
7164
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT) ||
in kvm_probe_msr_to_save()
7170
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT) ||
in kvm_probe_msr_to_save()
7193
if (!
kvm_cpu_cap_has
(X86_FEATURE_PERFMON_V2))
in kvm_probe_msr_to_save()
7198
if (!
kvm_cpu_cap_has
(X86_FEATURE_XFD))
in kvm_probe_msr_to_save()
9556
if (!
kvm_cpu_cap_has
(X86_FEATURE_XSAVE
in __kvm_x86_vendor_init()
[all...]
/kernel/linux/linux-5.10/arch/x86/kvm/
H
A
D
cpuid.h
317
static __always_inline bool
kvm_cpu_cap_has
(unsigned int x86_feature)
in kvm_cpu_cap_has()
function
H
A
D
cpuid.c
584
if (
kvm_cpu_cap_has
(X86_FEATURE_RDTSCP))
in __do_cpuid_func_emulated()
771
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT)) {
in __do_cpuid_func()
851
if (!
kvm_cpu_cap_has
(X86_FEATURE_SVM)) {
in __do_cpuid_func()
H
A
D
x86.c
5976
if (!
kvm_cpu_cap_has
(X86_FEATURE_RDTSCP))
in kvm_init_msr_list()
5980
if (!
kvm_cpu_cap_has
(X86_FEATURE_WAITPKG))
in kvm_init_msr_list()
5985
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT))
in kvm_init_msr_list()
5989
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT) ||
in kvm_init_msr_list()
5995
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT) ||
in kvm_init_msr_list()
6001
if (!
kvm_cpu_cap_has
(X86_FEATURE_INTEL_PT) ||
in kvm_init_msr_list()
10545
if (!
kvm_cpu_cap_has
(X86_FEATURE_XSAVES))
in kvm_arch_hardware_setup()
10548
#define __kvm_cpu_cap_has(UNUSED_, f)
kvm_cpu_cap_has
(f)
in kvm_arch_hardware_setup()
/kernel/linux/linux-6.6/arch/x86/kvm/svm/
H
A
D
svm.c
1196
if (
kvm_cpu_cap_has
(X86_FEATURE_INVPCID)) {
in svm_recalc_instruction_intercepts()
1204
if (
kvm_cpu_cap_has
(X86_FEATURE_RDTSCP)) {
in svm_recalc_instruction_intercepts()
5145
!
kvm_cpu_cap_has
(X86_FEATURE_PERFCTR_CORE))
in svm_set_cpu_caps()
/kernel/linux/linux-5.10/arch/x86/kvm/svm/
H
A
D
svm.c
1092
if (
kvm_cpu_cap_has
(X86_FEATURE_INVPCID)) {
in svm_check_invpcid()
3765
svm->nrips_enabled =
kvm_cpu_cap_has
(X86_FEATURE_NRIPS) &&
in svm_vcpu_after_set_cpuid()
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/
H
A
D
vmx.c
7810
if (
kvm_cpu_cap_has
(X86_FEATURE_XFD))
in vmx_vcpu_after_set_cpuid()
Completed in 50 milliseconds