1 /* Get file-specific information about a file. Linux version.
2 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 static long int linux_sysconf (int name);
29 static struct intel_02_cache_info
38 { 0x06, _SC_LEVEL1_ICACHE_SIZE, 8192, 4, 32 },
39 { 0x08, _SC_LEVEL1_ICACHE_SIZE, 16384, 4, 32 },
40 { 0x0a, _SC_LEVEL1_DCACHE_SIZE, 8192, 2, 32 },
41 { 0x0c, _SC_LEVEL1_DCACHE_SIZE, 16384, 4, 32 },
42 { 0x22, _SC_LEVEL3_CACHE_SIZE, 524288, 4, 64 },
43 { 0x23, _SC_LEVEL3_CACHE_SIZE, 1048576, 8, 64 },
44 { 0x25, _SC_LEVEL3_CACHE_SIZE, 2097152, 8, 64 },
45 { 0x29, _SC_LEVEL3_CACHE_SIZE, 4194304, 8, 64 },
46 { 0x2c, _SC_LEVEL1_DCACHE_SIZE, 32768, 8, 64 },
47 { 0x30, _SC_LEVEL1_ICACHE_SIZE, 32768, 8, 64 },
48 { 0x41, _SC_LEVEL2_CACHE_SIZE, 131072, 4, 32 },
49 { 0x42, _SC_LEVEL2_CACHE_SIZE, 262144, 4, 32 },
50 { 0x43, _SC_LEVEL2_CACHE_SIZE, 524288, 4, 32 },
51 { 0x44, _SC_LEVEL2_CACHE_SIZE, 1048576, 4, 32 },
52 { 0x45, _SC_LEVEL2_CACHE_SIZE, 2097152, 4, 32 },
53 { 0x60, _SC_LEVEL1_DCACHE_SIZE, 16384, 8, 64 },
54 { 0x66, _SC_LEVEL1_DCACHE_SIZE, 8192, 4, 64 },
55 { 0x67, _SC_LEVEL1_DCACHE_SIZE, 16384, 4, 64 },
56 { 0x68, _SC_LEVEL1_DCACHE_SIZE, 32768, 4, 64 },
57 { 0x78, _SC_LEVEL2_CACHE_SIZE, 1048576, 8, 64 },
58 { 0x79, _SC_LEVEL2_CACHE_SIZE, 131072, 8, 64 },
59 { 0x7a, _SC_LEVEL2_CACHE_SIZE, 262144, 8, 64 },
60 { 0x7b, _SC_LEVEL2_CACHE_SIZE, 524288, 8, 64 },
61 { 0x7c, _SC_LEVEL2_CACHE_SIZE, 1048576, 8, 64 },
62 { 0x7d, _SC_LEVEL2_CACHE_SIZE, 2097152, 8, 64 },
63 { 0x82, _SC_LEVEL2_CACHE_SIZE, 262144, 8, 32 },
64 { 0x83, _SC_LEVEL2_CACHE_SIZE, 524288, 8, 32 },
65 { 0x84, _SC_LEVEL2_CACHE_SIZE, 1048576, 8, 32 },
66 { 0x85, _SC_LEVEL2_CACHE_SIZE, 2097152, 8, 32 },
67 { 0x86, _SC_LEVEL2_CACHE_SIZE, 524288, 4, 64 },
68 { 0x87, _SC_LEVEL2_CACHE_SIZE, 1048576, 8, 64 },
70 #define nintel_02_known (sizeof (intel_02_known) / sizeof (intel_02_known[0]))
74 intel_02_known_compare (const void *p1, const void *p2)
76 const struct intel_02_cache_info *i1;
77 const struct intel_02_cache_info *i2;
79 i1 = (const struct intel_02_cache_info *) p1;
80 i2 = (const struct intel_02_cache_info *) p2;
82 if (i1->idx == i2->idx)
85 return i1->idx < i2->idx ? -1 : 1;
90 intel_check_word (int name, unsigned int value, bool *has_level_2,
91 bool *no_level_2_or_3)
93 if ((value & 0x80000000) != 0)
94 /* The register value is reserved. */
97 /* Fold the name. The _SC_ constants are always in the order SIZE,
99 int folded_name = (_SC_LEVEL1_ICACHE_SIZE
100 + ((name - _SC_LEVEL1_ICACHE_SIZE) / 3) * 3);
104 unsigned int byte = value & 0xff;
108 *no_level_2_or_3 = true;
110 if (folded_name == _SC_LEVEL3_CACHE_SIZE)
111 /* No need to look further. */
116 struct intel_02_cache_info *found;
117 struct intel_02_cache_info search;
120 found = bsearch (&search, intel_02_known, nintel_02_known,
121 sizeof (intel_02_known[0]), intel_02_known_compare);
124 if (found->name == folded_name)
126 unsigned int offset = name - folded_name;
134 assert (offset == 2);
135 return found->linesize;
138 if (found->name == _SC_LEVEL2_CACHE_SIZE)
143 /* Next byte for the next round. */
153 handle_intel (int name, unsigned int maxidx)
155 assert (maxidx >= 2);
157 /* OK, we can use the CPUID instruction to get all info about the
159 unsigned int cnt = 0;
160 unsigned int max = 1;
162 bool no_level_2_or_3 = false;
163 bool has_level_2 = false;
170 asm volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1"
171 : "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx)
174 /* The low byte of EAX in the first round contain the number of
175 rounds we have to make. At least one, the one we are already
183 /* Process the individual registers' value. */
184 result = intel_check_word (name, eax, &has_level_2, &no_level_2_or_3);
188 result = intel_check_word (name, ebx, &has_level_2, &no_level_2_or_3);
192 result = intel_check_word (name, ecx, &has_level_2, &no_level_2_or_3);
196 result = intel_check_word (name, edx, &has_level_2, &no_level_2_or_3);
201 if (name >= _SC_LEVEL2_CACHE_SIZE && name <= _SC_LEVEL3_CACHE_LINESIZE
209 /* Get the value of the system variable NAME. */
213 /* We only handle the cache information here (for now). */
214 if (name < _SC_LEVEL1_ICACHE_SIZE || name > _SC_LEVEL4_CACHE_ASSOC)
215 return linux_sysconf (name);
217 /* Find out what brand of processor. */
222 asm volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1"
223 : "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx)
226 /* This spells out "GenuineIntel". */
227 if (ebx == 0x756e6547 && ecx == 0x6c65746e && edx == 0x49656e69)
228 return handle_intel (name, eax);
229 // XXX Fill in more vendors.
231 /* CPU not known, we have no information. */
235 /* Now the generic Linux version. */
237 #define __sysconf static linux_sysconf
238 #include "../sysconf.c"