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_pmu_cap
(Results
1 - 8
of
8
) sorted by relevance
/kernel/linux/linux-6.6/arch/x86/kvm/
H
A
D
pmu.h
161
extern struct x86_pmu_capability
kvm_pmu_cap
;
178
perf_get_x86_pmu_capability(&
kvm_pmu_cap
);
in kvm_init_pmu_capability()
186
if (!
kvm_pmu_cap
.num_counters_gp ||
in kvm_init_pmu_capability()
187
WARN_ON_ONCE(
kvm_pmu_cap
.num_counters_gp < min_nr_gp_ctrs))
in kvm_init_pmu_capability()
189
else if (is_intel && !
kvm_pmu_cap
.version)
in kvm_init_pmu_capability()
194
memset(&
kvm_pmu_cap
, 0, sizeof(
kvm_pmu_cap
));
in kvm_init_pmu_capability()
198
kvm_pmu_cap
.version = min(
kvm_pmu_cap
.version, 2);
in kvm_init_pmu_capability()
199
kvm_pmu_cap
in kvm_init_pmu_capability()
[all...]
H
A
D
cpuid.c
1000
eax.split.version_id =
kvm_pmu_cap
.version;
in __do_cpuid_func()
1001
eax.split.num_counters =
kvm_pmu_cap
.num_counters_gp;
in __do_cpuid_func()
1002
eax.split.bit_width =
kvm_pmu_cap
.bit_width_gp;
in __do_cpuid_func()
1003
eax.split.mask_length =
kvm_pmu_cap
.events_mask_len;
in __do_cpuid_func()
1004
edx.split.num_counters_fixed =
kvm_pmu_cap
.num_counters_fixed;
in __do_cpuid_func()
1005
edx.split.bit_width_fixed =
kvm_pmu_cap
.bit_width_fixed;
in __do_cpuid_func()
1007
if (
kvm_pmu_cap
.version)
in __do_cpuid_func()
1013
entry->ebx =
kvm_pmu_cap
.events_mask;
in __do_cpuid_func()
1296
ebx.split.num_core_pmc =
kvm_pmu_cap
.num_counters_gp;
in __do_cpuid_func()
H
A
D
pmu.c
29
struct x86_pmu_capability __read_mostly
kvm_pmu_cap
;
variable
30
EXPORT_SYMBOL_GPL(
kvm_pmu_cap
);
variable
H
A
D
x86.c
7177
kvm_pmu_cap
.num_counters_gp)
in kvm_probe_msr_to_save()
7182
kvm_pmu_cap
.num_counters_gp)
in kvm_probe_msr_to_save()
7187
kvm_pmu_cap
.num_counters_fixed)
in kvm_probe_msr_to_save()
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/
H
A
D
pmu_intel.c
530
kvm_pmu_cap
.num_counters_gp);
in intel_pmu_refresh()
532
kvm_pmu_cap
.bit_width_gp);
in intel_pmu_refresh()
535
kvm_pmu_cap
.events_mask_len);
in intel_pmu_refresh()
543
kvm_pmu_cap
.num_counters_fixed);
in intel_pmu_refresh()
545
kvm_pmu_cap
.bit_width_fixed);
in intel_pmu_refresh()
H
A
D
capabilities.h
395
return boot_cpu_has(X86_FEATURE_PEBS) &&
kvm_pmu_cap
.pebs_ept;
in vmx_pebs_supported()
/kernel/linux/linux-6.6/arch/x86/kvm/svm/
H
A
D
pmu.c
204
kvm_pmu_cap
.num_counters_gp);
in amd_pmu_refresh()
H
A
D
svm.c
5138
if (
kvm_pmu_cap
.num_counters_gp < AMD64_NUM_COUNTERS_CORE)
in svm_set_cpu_caps()
5139
kvm_pmu_cap
.num_counters_gp = min(AMD64_NUM_COUNTERS,
in svm_set_cpu_caps()
5140
kvm_pmu_cap
.num_counters_gp);
in svm_set_cpu_caps()
5144
if (
kvm_pmu_cap
.version != 2 ||
in svm_set_cpu_caps()
Completed in 28 milliseconds