ui: add trace events related to VNC client throttling
[qemu/ar7.git] / util / cacheinfo.c
blobdb5172d07c7aa3536188ed4a4916931c86134aac
1 /*
2 * cacheinfo.c - helpers to query the host about its caches
4 * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
5 * License: GNU GPL, version 2 or later.
6 * See the COPYING file in the top-level directory.
7 */
9 #include "qemu/osdep.h"
11 int qemu_icache_linesize = 0;
12 int qemu_dcache_linesize = 0;
15 * Operating system specific detection mechanisms.
18 #if defined(_WIN32)
20 static void sys_cache_info(int *isize, int *dsize)
22 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *buf;
23 DWORD size = 0;
24 BOOL success;
25 size_t i, n;
27 /* Check for the required buffer size first. Note that if the zero
28 size we use for the probe results in success, then there is no
29 data available; fail in that case. */
30 success = GetLogicalProcessorInformation(0, &size);
31 if (success || GetLastError() != ERROR_INSUFFICIENT_BUFFER) {
32 return;
35 n = size / sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION);
36 size = n * sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION);
37 buf = g_new0(SYSTEM_LOGICAL_PROCESSOR_INFORMATION, n);
38 if (!GetLogicalProcessorInformation(buf, &size)) {
39 goto fail;
42 for (i = 0; i < n; i++) {
43 if (buf[i].Relationship == RelationCache
44 && buf[i].Cache.Level == 1) {
45 switch (buf[i].Cache.Type) {
46 case CacheUnified:
47 *isize = *dsize = buf[i].Cache.LineSize;
48 break;
49 case CacheInstruction:
50 *isize = buf[i].Cache.LineSize;
51 break;
52 case CacheData:
53 *dsize = buf[i].Cache.LineSize;
54 break;
55 default:
56 break;
60 fail:
61 g_free(buf);
64 #elif defined(__APPLE__) \
65 || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
66 # include <sys/sysctl.h>
67 # if defined(__APPLE__)
68 # define SYSCTL_CACHELINE_NAME "hw.cachelinesize"
69 # else
70 # define SYSCTL_CACHELINE_NAME "machdep.cacheline_size"
71 # endif
73 static void sys_cache_info(int *isize, int *dsize)
75 /* There's only a single sysctl for both I/D cache line sizes. */
76 long size;
77 size_t len = sizeof(size);
78 if (!sysctlbyname(SYSCTL_CACHELINE_NAME, &size, &len, NULL, 0)) {
79 *isize = *dsize = size;
83 #else
84 /* POSIX */
86 static void sys_cache_info(int *isize, int *dsize)
88 # ifdef _SC_LEVEL1_ICACHE_LINESIZE
89 *isize = sysconf(_SC_LEVEL1_ICACHE_LINESIZE);
90 # endif
91 # ifdef _SC_LEVEL1_DCACHE_LINESIZE
92 *dsize = sysconf(_SC_LEVEL1_DCACHE_LINESIZE);
93 # endif
95 #endif /* sys_cache_info */
98 * Architecture (+ OS) specific detection mechanisms.
101 #if defined(__aarch64__)
103 static void arch_cache_info(int *isize, int *dsize)
105 if (*isize == 0 || *dsize == 0) {
106 unsigned long ctr;
108 /* The real cache geometry is in CCSIDR_EL1/CLIDR_EL1/CSSELR_EL1,
109 but (at least under Linux) these are marked protected by the
110 kernel. However, CTR_EL0 contains the minimum linesize in the
111 entire hierarchy, and is used by userspace cache flushing. */
112 asm volatile("mrs\t%0, ctr_el0" : "=r"(ctr));
113 if (*isize == 0) {
114 *isize = 4 << (ctr & 0xf);
116 if (*dsize == 0) {
117 *dsize = 4 << ((ctr >> 16) & 0xf);
122 #elif defined(_ARCH_PPC) && defined(__linux__)
123 # include "elf.h"
125 static void arch_cache_info(int *isize, int *dsize)
127 if (*isize == 0) {
128 *isize = qemu_getauxval(AT_ICACHEBSIZE);
130 if (*dsize == 0) {
131 *dsize = qemu_getauxval(AT_DCACHEBSIZE);
135 #else
136 static void arch_cache_info(int *isize, int *dsize) { }
137 #endif /* arch_cache_info */
140 * ... and if all else fails ...
143 static void fallback_cache_info(int *isize, int *dsize)
145 /* If we can only find one of the two, assume they're the same. */
146 if (*isize) {
147 if (*dsize) {
148 /* Success! */
149 } else {
150 *dsize = *isize;
152 } else if (*dsize) {
153 *isize = *dsize;
154 } else {
155 #if defined(_ARCH_PPC)
156 /* For PPC, we're going to use the icache size computed for
157 flush_icache_range. Which means that we must use the
158 architecture minimum. */
159 *isize = *dsize = 16;
160 #else
161 /* Otherwise, 64 bytes is not uncommon. */
162 *isize = *dsize = 64;
163 #endif
167 static void __attribute__((constructor)) init_cache_info(void)
169 int isize = 0, dsize = 0;
171 sys_cache_info(&isize, &dsize);
172 arch_cache_info(&isize, &dsize);
173 fallback_cache_info(&isize, &dsize);
175 qemu_icache_linesize = isize;
176 qemu_dcache_linesize = dsize;