2007-05-22 00:38:06 +02:00
|
|
|
/* x86_64 cache info.
|
2014-01-01 12:03:15 +01:00
|
|
|
Copyright (C) 2003-2014 Free Software Foundation, Inc.
|
2007-05-21 21:21:48 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2009-07-31 20:53:35 +02:00
|
|
|
#include <cpuid.h>
|
|
|
|
|
|
|
|
#ifndef __cpuid_count
|
|
|
|
/* FIXME: Provide __cpuid_count if it isn't defined. Copied from gcc
|
|
|
|
4.4.0. Remove this if gcc 4.4 is the minimum requirement. */
|
|
|
|
# if defined(__i386__) && defined(__PIC__)
|
|
|
|
/* %ebx may be the PIC register. */
|
|
|
|
# define __cpuid_count(level, count, a, b, c, d) \
|
|
|
|
__asm__ ("xchg{l}\t{%%}ebx, %1\n\t" \
|
|
|
|
"cpuid\n\t" \
|
|
|
|
"xchg{l}\t{%%}ebx, %1\n\t" \
|
|
|
|
: "=a" (a), "=r" (b), "=c" (c), "=d" (d) \
|
|
|
|
: "0" (level), "2" (count))
|
|
|
|
# else
|
|
|
|
# define __cpuid_count(level, count, a, b, c, d) \
|
|
|
|
__asm__ ("cpuid\n\t" \
|
|
|
|
: "=a" (a), "=b" (b), "=c" (c), "=d" (d) \
|
|
|
|
: "0" (level), "2" (count))
|
|
|
|
# endif
|
|
|
|
#endif
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2009-03-14 00:53:18 +01:00
|
|
|
#ifdef USE_MULTIARCH
|
|
|
|
# include "multiarch/init-arch.h"
|
2009-07-23 23:03:53 +02:00
|
|
|
|
|
|
|
# define is_intel __cpu_features.kind == arch_kind_intel
|
|
|
|
# define is_amd __cpu_features.kind == arch_kind_amd
|
|
|
|
# define max_cpuid __cpu_features.max_cpuid
|
|
|
|
#else
|
|
|
|
/* This spells out "GenuineIntel". */
|
|
|
|
# define is_intel \
|
|
|
|
ebx == 0x756e6547 && ecx == 0x6c65746e && edx == 0x49656e69
|
|
|
|
/* This spells out "AuthenticAMD". */
|
|
|
|
# define is_amd \
|
|
|
|
ebx == 0x68747541 && ecx == 0x444d4163 && edx == 0x69746e65
|
2009-03-14 00:53:18 +01:00
|
|
|
#endif
|
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
static const struct intel_02_cache_info
|
|
|
|
{
|
2009-05-29 20:53:36 +02:00
|
|
|
unsigned char idx;
|
|
|
|
unsigned char assoc;
|
|
|
|
unsigned char linesize;
|
|
|
|
unsigned char rel_name;
|
|
|
|
unsigned int size;
|
2007-05-21 21:21:48 +02:00
|
|
|
} intel_02_known [] =
|
|
|
|
{
|
2009-05-29 20:53:36 +02:00
|
|
|
#define M(sc) ((sc) - _SC_LEVEL1_ICACHE_SIZE)
|
|
|
|
{ 0x06, 4, 32, M(_SC_LEVEL1_ICACHE_SIZE), 8192 },
|
|
|
|
{ 0x08, 4, 32, M(_SC_LEVEL1_ICACHE_SIZE), 16384 },
|
|
|
|
{ 0x09, 4, 32, M(_SC_LEVEL1_ICACHE_SIZE), 32768 },
|
|
|
|
{ 0x0a, 2, 32, M(_SC_LEVEL1_DCACHE_SIZE), 8192 },
|
|
|
|
{ 0x0c, 4, 32, M(_SC_LEVEL1_DCACHE_SIZE), 16384 },
|
|
|
|
{ 0x0d, 4, 64, M(_SC_LEVEL1_DCACHE_SIZE), 16384 },
|
2010-01-12 20:22:03 +01:00
|
|
|
{ 0x0e, 6, 64, M(_SC_LEVEL1_DCACHE_SIZE), 24576 },
|
2009-05-29 20:53:36 +02:00
|
|
|
{ 0x21, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 262144 },
|
|
|
|
{ 0x22, 4, 64, M(_SC_LEVEL3_CACHE_SIZE), 524288 },
|
|
|
|
{ 0x23, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0x25, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0x29, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 4194304 },
|
|
|
|
{ 0x2c, 8, 64, M(_SC_LEVEL1_DCACHE_SIZE), 32768 },
|
|
|
|
{ 0x30, 8, 64, M(_SC_LEVEL1_ICACHE_SIZE), 32768 },
|
|
|
|
{ 0x39, 4, 64, M(_SC_LEVEL2_CACHE_SIZE), 131072 },
|
|
|
|
{ 0x3a, 6, 64, M(_SC_LEVEL2_CACHE_SIZE), 196608 },
|
|
|
|
{ 0x3b, 2, 64, M(_SC_LEVEL2_CACHE_SIZE), 131072 },
|
|
|
|
{ 0x3c, 4, 64, M(_SC_LEVEL2_CACHE_SIZE), 262144 },
|
|
|
|
{ 0x3d, 6, 64, M(_SC_LEVEL2_CACHE_SIZE), 393216 },
|
|
|
|
{ 0x3e, 4, 64, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
|
|
|
{ 0x3f, 2, 64, M(_SC_LEVEL2_CACHE_SIZE), 262144 },
|
|
|
|
{ 0x41, 4, 32, M(_SC_LEVEL2_CACHE_SIZE), 131072 },
|
|
|
|
{ 0x42, 4, 32, M(_SC_LEVEL2_CACHE_SIZE), 262144 },
|
|
|
|
{ 0x43, 4, 32, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
|
|
|
{ 0x44, 4, 32, M(_SC_LEVEL2_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0x45, 4, 32, M(_SC_LEVEL2_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0x46, 4, 64, M(_SC_LEVEL3_CACHE_SIZE), 4194304 },
|
|
|
|
{ 0x47, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 8388608 },
|
|
|
|
{ 0x48, 12, 64, M(_SC_LEVEL2_CACHE_SIZE), 3145728 },
|
|
|
|
{ 0x49, 16, 64, M(_SC_LEVEL2_CACHE_SIZE), 4194304 },
|
|
|
|
{ 0x4a, 12, 64, M(_SC_LEVEL3_CACHE_SIZE), 6291456 },
|
|
|
|
{ 0x4b, 16, 64, M(_SC_LEVEL3_CACHE_SIZE), 8388608 },
|
|
|
|
{ 0x4c, 12, 64, M(_SC_LEVEL3_CACHE_SIZE), 12582912 },
|
|
|
|
{ 0x4d, 16, 64, M(_SC_LEVEL3_CACHE_SIZE), 16777216 },
|
|
|
|
{ 0x4e, 24, 64, M(_SC_LEVEL2_CACHE_SIZE), 6291456 },
|
|
|
|
{ 0x60, 8, 64, M(_SC_LEVEL1_DCACHE_SIZE), 16384 },
|
|
|
|
{ 0x66, 4, 64, M(_SC_LEVEL1_DCACHE_SIZE), 8192 },
|
|
|
|
{ 0x67, 4, 64, M(_SC_LEVEL1_DCACHE_SIZE), 16384 },
|
|
|
|
{ 0x68, 4, 64, M(_SC_LEVEL1_DCACHE_SIZE), 32768 },
|
|
|
|
{ 0x78, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0x79, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 131072 },
|
|
|
|
{ 0x7a, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 262144 },
|
|
|
|
{ 0x7b, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
|
|
|
{ 0x7c, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0x7d, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0x7f, 2, 64, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
2010-01-12 20:22:03 +01:00
|
|
|
{ 0x80, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
2009-05-29 20:53:36 +02:00
|
|
|
{ 0x82, 8, 32, M(_SC_LEVEL2_CACHE_SIZE), 262144 },
|
|
|
|
{ 0x83, 8, 32, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
|
|
|
{ 0x84, 8, 32, M(_SC_LEVEL2_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0x85, 8, 32, M(_SC_LEVEL2_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0x86, 4, 64, M(_SC_LEVEL2_CACHE_SIZE), 524288 },
|
|
|
|
{ 0x87, 8, 64, M(_SC_LEVEL2_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0xd0, 4, 64, M(_SC_LEVEL3_CACHE_SIZE), 524288 },
|
|
|
|
{ 0xd1, 4, 64, M(_SC_LEVEL3_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0xd2, 4, 64, M(_SC_LEVEL3_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0xd6, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 1048576 },
|
|
|
|
{ 0xd7, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0xd8, 8, 64, M(_SC_LEVEL3_CACHE_SIZE), 4194304 },
|
|
|
|
{ 0xdc, 12, 64, M(_SC_LEVEL3_CACHE_SIZE), 2097152 },
|
|
|
|
{ 0xdd, 12, 64, M(_SC_LEVEL3_CACHE_SIZE), 4194304 },
|
|
|
|
{ 0xde, 12, 64, M(_SC_LEVEL3_CACHE_SIZE), 8388608 },
|
2011-04-03 15:32:31 +02:00
|
|
|
{ 0xe2, 16, 64, M(_SC_LEVEL3_CACHE_SIZE), 2097152 },
|
2009-05-29 20:53:36 +02:00
|
|
|
{ 0xe3, 16, 64, M(_SC_LEVEL3_CACHE_SIZE), 4194304 },
|
|
|
|
{ 0xe4, 16, 64, M(_SC_LEVEL3_CACHE_SIZE), 8388608 },
|
2009-07-23 22:42:46 +02:00
|
|
|
{ 0xea, 24, 64, M(_SC_LEVEL3_CACHE_SIZE), 12582912 },
|
|
|
|
{ 0xeb, 24, 64, M(_SC_LEVEL3_CACHE_SIZE), 18874368 },
|
|
|
|
{ 0xec, 24, 64, M(_SC_LEVEL3_CACHE_SIZE), 25165824 },
|
2007-05-21 21:21:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define nintel_02_known (sizeof (intel_02_known) / sizeof (intel_02_known [0]))
|
|
|
|
|
|
|
|
static int
|
|
|
|
intel_02_known_compare (const void *p1, const void *p2)
|
|
|
|
{
|
|
|
|
const struct intel_02_cache_info *i1;
|
|
|
|
const struct intel_02_cache_info *i2;
|
|
|
|
|
|
|
|
i1 = (const struct intel_02_cache_info *) p1;
|
|
|
|
i2 = (const struct intel_02_cache_info *) p2;
|
|
|
|
|
|
|
|
if (i1->idx == i2->idx)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return i1->idx < i2->idx ? -1 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static long int
|
|
|
|
__attribute__ ((noinline))
|
|
|
|
intel_check_word (int name, unsigned int value, bool *has_level_2,
|
|
|
|
bool *no_level_2_or_3)
|
|
|
|
{
|
|
|
|
if ((value & 0x80000000) != 0)
|
|
|
|
/* The register value is reserved. */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Fold the name. The _SC_ constants are always in the order SIZE,
|
|
|
|
ASSOC, LINESIZE. */
|
2009-05-29 20:53:36 +02:00
|
|
|
int folded_rel_name = (M(name) / 3) * 3;
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
while (value != 0)
|
|
|
|
{
|
|
|
|
unsigned int byte = value & 0xff;
|
|
|
|
|
|
|
|
if (byte == 0x40)
|
|
|
|
{
|
|
|
|
*no_level_2_or_3 = true;
|
|
|
|
|
2009-05-29 20:53:36 +02:00
|
|
|
if (folded_rel_name == M(_SC_LEVEL3_CACHE_SIZE))
|
2007-05-21 21:21:48 +02:00
|
|
|
/* No need to look further. */
|
|
|
|
break;
|
|
|
|
}
|
2011-03-20 13:14:30 +01:00
|
|
|
else if (byte == 0xff)
|
|
|
|
{
|
|
|
|
/* CPUID leaf 0x4 contains all the information. We need to
|
|
|
|
iterate over it. */
|
|
|
|
unsigned int eax;
|
|
|
|
unsigned int ebx;
|
|
|
|
unsigned int ecx;
|
|
|
|
unsigned int edx;
|
|
|
|
|
|
|
|
unsigned int round = 0;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
asm volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1"
|
|
|
|
: "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx)
|
|
|
|
: "0" (4), "2" (round));
|
|
|
|
|
|
|
|
enum { null = 0, data = 1, inst = 2, uni = 3 } type = eax & 0x1f;
|
|
|
|
if (type == null)
|
|
|
|
/* That was the end. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
unsigned int level = (eax >> 5) & 0x7;
|
|
|
|
|
|
|
|
if ((level == 1 && type == data
|
|
|
|
&& folded_rel_name == M(_SC_LEVEL1_DCACHE_SIZE))
|
|
|
|
|| (level == 1 && type == inst
|
|
|
|
&& folded_rel_name == M(_SC_LEVEL1_ICACHE_SIZE))
|
|
|
|
|| (level == 2 && folded_rel_name == M(_SC_LEVEL2_CACHE_SIZE))
|
|
|
|
|| (level == 3 && folded_rel_name == M(_SC_LEVEL3_CACHE_SIZE))
|
|
|
|
|| (level == 4 && folded_rel_name == M(_SC_LEVEL4_CACHE_SIZE)))
|
|
|
|
{
|
|
|
|
unsigned int offset = M(name) - folded_rel_name;
|
|
|
|
|
|
|
|
if (offset == 0)
|
|
|
|
/* Cache size. */
|
|
|
|
return (((ebx >> 22) + 1)
|
|
|
|
* (((ebx >> 12) & 0x3ff) + 1)
|
|
|
|
* ((ebx & 0xfff) + 1)
|
|
|
|
* (ecx + 1));
|
|
|
|
if (offset == 1)
|
|
|
|
return (ebx >> 22) + 1;
|
|
|
|
|
|
|
|
assert (offset == 2);
|
|
|
|
return (ebx & 0xfff) + 1;
|
|
|
|
}
|
2011-03-22 06:52:43 +01:00
|
|
|
|
|
|
|
++round;
|
2011-03-20 13:14:30 +01:00
|
|
|
}
|
|
|
|
/* There is no other cache information anywhere else. */
|
|
|
|
break;
|
|
|
|
}
|
2007-05-21 21:21:48 +02:00
|
|
|
else
|
|
|
|
{
|
2009-05-29 20:53:36 +02:00
|
|
|
if (byte == 0x49 && folded_rel_name == M(_SC_LEVEL3_CACHE_SIZE))
|
2007-05-21 21:21:48 +02:00
|
|
|
{
|
|
|
|
/* Intel reused this value. For family 15, model 6 it
|
|
|
|
specifies the 3rd level cache. Otherwise the 2nd
|
|
|
|
level cache. */
|
2009-07-23 23:03:53 +02:00
|
|
|
unsigned int family;
|
|
|
|
unsigned int model;
|
|
|
|
#ifdef USE_MULTIARCH
|
|
|
|
family = __cpu_features.family;
|
|
|
|
model = __cpu_features.model;
|
|
|
|
#else
|
2007-05-21 21:21:48 +02:00
|
|
|
unsigned int eax;
|
|
|
|
unsigned int ebx;
|
|
|
|
unsigned int ecx;
|
|
|
|
unsigned int edx;
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (1, eax, ebx, ecx, edx);
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2009-07-23 23:03:53 +02:00
|
|
|
family = ((eax >> 20) & 0xff) + ((eax >> 8) & 0xf);
|
|
|
|
model = (((eax >>16) & 0xf) << 4) + ((eax >> 4) & 0xf);
|
|
|
|
#endif
|
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
if (family == 15 && model == 6)
|
|
|
|
{
|
|
|
|
/* The level 3 cache is encoded for this model like
|
|
|
|
the level 2 cache is for other models. Pretend
|
|
|
|
the caller asked for the level 2 cache. */
|
|
|
|
name = (_SC_LEVEL2_CACHE_SIZE
|
|
|
|
+ (name - _SC_LEVEL3_CACHE_SIZE));
|
2009-05-29 20:53:36 +02:00
|
|
|
folded_rel_name = M(_SC_LEVEL2_CACHE_SIZE);
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct intel_02_cache_info *found;
|
|
|
|
struct intel_02_cache_info search;
|
|
|
|
|
|
|
|
search.idx = byte;
|
|
|
|
found = bsearch (&search, intel_02_known, nintel_02_known,
|
|
|
|
sizeof (intel_02_known[0]), intel_02_known_compare);
|
|
|
|
if (found != NULL)
|
|
|
|
{
|
2009-05-29 20:53:36 +02:00
|
|
|
if (found->rel_name == folded_rel_name)
|
2007-05-21 21:21:48 +02:00
|
|
|
{
|
2009-05-29 20:53:36 +02:00
|
|
|
unsigned int offset = M(name) - folded_rel_name;
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
if (offset == 0)
|
|
|
|
/* Cache size. */
|
|
|
|
return found->size;
|
|
|
|
if (offset == 1)
|
|
|
|
return found->assoc;
|
|
|
|
|
|
|
|
assert (offset == 2);
|
|
|
|
return found->linesize;
|
|
|
|
}
|
|
|
|
|
2009-05-29 20:53:36 +02:00
|
|
|
if (found->rel_name == M(_SC_LEVEL2_CACHE_SIZE))
|
2007-05-21 21:21:48 +02:00
|
|
|
*has_level_2 = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next byte for the next round. */
|
|
|
|
value >>= 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nothing found. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static long int __attribute__ ((noinline))
|
|
|
|
handle_intel (int name, unsigned int maxidx)
|
|
|
|
{
|
|
|
|
assert (maxidx >= 2);
|
|
|
|
|
|
|
|
/* OK, we can use the CPUID instruction to get all info about the
|
|
|
|
caches. */
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
unsigned int max = 1;
|
|
|
|
long int result = 0;
|
|
|
|
bool no_level_2_or_3 = false;
|
|
|
|
bool has_level_2 = false;
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
while (cnt++ < max)
|
|
|
|
{
|
|
|
|
unsigned int eax;
|
|
|
|
unsigned int ebx;
|
|
|
|
unsigned int ecx;
|
|
|
|
unsigned int edx;
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (2, eax, ebx, ecx, edx);
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
/* The low byte of EAX in the first round contain the number of
|
|
|
|
rounds we have to make. At least one, the one we are already
|
|
|
|
doing. */
|
|
|
|
if (cnt == 1)
|
|
|
|
{
|
|
|
|
max = eax & 0xff;
|
|
|
|
eax &= 0xffffff00;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process the individual registers' value. */
|
|
|
|
result = intel_check_word (name, eax, &has_level_2, &no_level_2_or_3);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = intel_check_word (name, ebx, &has_level_2, &no_level_2_or_3);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = intel_check_word (name, ecx, &has_level_2, &no_level_2_or_3);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = intel_check_word (name, edx, &has_level_2, &no_level_2_or_3);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name >= _SC_LEVEL2_CACHE_SIZE && name <= _SC_LEVEL3_CACHE_LINESIZE
|
|
|
|
&& no_level_2_or_3)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static long int __attribute__ ((noinline))
|
|
|
|
handle_amd (int name)
|
|
|
|
{
|
|
|
|
unsigned int eax;
|
|
|
|
unsigned int ebx;
|
|
|
|
unsigned int ecx;
|
|
|
|
unsigned int edx;
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0x80000000, eax, ebx, ecx, edx);
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2007-08-25 19:07:47 +02:00
|
|
|
/* No level 4 cache (yet). */
|
|
|
|
if (name > _SC_LEVEL3_CACHE_LINESIZE)
|
2007-05-21 21:21:48 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
unsigned int fn = 0x80000005 + (name >= _SC_LEVEL2_CACHE_SIZE);
|
|
|
|
if (eax < fn)
|
|
|
|
return 0;
|
|
|
|
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (fn, eax, ebx, ecx, edx);
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
if (name < _SC_LEVEL1_DCACHE_SIZE)
|
|
|
|
{
|
|
|
|
name += _SC_LEVEL1_DCACHE_SIZE - _SC_LEVEL1_ICACHE_SIZE;
|
|
|
|
ecx = edx;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (name)
|
|
|
|
{
|
|
|
|
case _SC_LEVEL1_DCACHE_SIZE:
|
|
|
|
return (ecx >> 14) & 0x3fc00;
|
2007-08-25 19:07:47 +02:00
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
case _SC_LEVEL1_DCACHE_ASSOC:
|
|
|
|
ecx >>= 16;
|
|
|
|
if ((ecx & 0xff) == 0xff)
|
|
|
|
/* Fully associative. */
|
|
|
|
return (ecx << 2) & 0x3fc00;
|
|
|
|
return ecx & 0xff;
|
2007-08-25 19:07:47 +02:00
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
case _SC_LEVEL1_DCACHE_LINESIZE:
|
|
|
|
return ecx & 0xff;
|
2007-08-25 19:07:47 +02:00
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
case _SC_LEVEL2_CACHE_SIZE:
|
|
|
|
return (ecx & 0xf000) == 0 ? 0 : (ecx >> 6) & 0x3fffc00;
|
2007-08-25 19:07:47 +02:00
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
case _SC_LEVEL2_CACHE_ASSOC:
|
2007-08-25 19:24:23 +02:00
|
|
|
switch ((ecx >> 12) & 0xf)
|
2011-03-05 05:30:08 +01:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 4:
|
2007-08-25 19:24:23 +02:00
|
|
|
return (ecx >> 12) & 0xf;
|
2007-05-21 21:21:48 +02:00
|
|
|
case 6:
|
|
|
|
return 8;
|
|
|
|
case 8:
|
|
|
|
return 16;
|
2007-08-25 19:07:47 +02:00
|
|
|
case 10:
|
|
|
|
return 32;
|
|
|
|
case 11:
|
|
|
|
return 48;
|
|
|
|
case 12:
|
|
|
|
return 64;
|
|
|
|
case 13:
|
|
|
|
return 96;
|
|
|
|
case 14:
|
|
|
|
return 128;
|
|
|
|
case 15:
|
2007-08-25 19:24:23 +02:00
|
|
|
return ((ecx >> 6) & 0x3fffc00) / (ecx & 0xff);
|
2007-05-21 21:21:48 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
2011-03-05 05:30:08 +01:00
|
|
|
}
|
2007-08-25 19:07:47 +02:00
|
|
|
/* NOTREACHED */
|
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
case _SC_LEVEL2_CACHE_LINESIZE:
|
|
|
|
return (ecx & 0xf000) == 0 ? 0 : ecx & 0xff;
|
2007-08-25 19:07:47 +02:00
|
|
|
|
|
|
|
case _SC_LEVEL3_CACHE_SIZE:
|
|
|
|
return (edx & 0xf000) == 0 ? 0 : (edx & 0x3ffc0000) << 1;
|
|
|
|
|
|
|
|
case _SC_LEVEL3_CACHE_ASSOC:
|
2007-08-25 19:24:23 +02:00
|
|
|
switch ((edx >> 12) & 0xf)
|
2007-08-25 19:07:47 +02:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 4:
|
2007-08-25 19:24:23 +02:00
|
|
|
return (edx >> 12) & 0xf;
|
2007-08-25 19:07:47 +02:00
|
|
|
case 6:
|
|
|
|
return 8;
|
|
|
|
case 8:
|
|
|
|
return 16;
|
|
|
|
case 10:
|
|
|
|
return 32;
|
|
|
|
case 11:
|
|
|
|
return 48;
|
|
|
|
case 12:
|
|
|
|
return 64;
|
|
|
|
case 13:
|
|
|
|
return 96;
|
|
|
|
case 14:
|
|
|
|
return 128;
|
|
|
|
case 15:
|
2007-08-25 19:24:23 +02:00
|
|
|
return ((edx & 0x3ffc0000) << 1) / (edx & 0xff);
|
2007-08-25 19:07:47 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
case _SC_LEVEL3_CACHE_LINESIZE:
|
|
|
|
return (edx & 0xf000) == 0 ? 0 : edx & 0xff;
|
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
default:
|
|
|
|
assert (! "cannot happen");
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Get the value of the system variable NAME. */
|
|
|
|
long int
|
|
|
|
attribute_hidden
|
|
|
|
__cache_sysconf (int name)
|
|
|
|
{
|
2009-07-23 23:03:53 +02:00
|
|
|
#ifdef USE_MULTIARCH
|
|
|
|
if (__cpu_features.kind == arch_kind_unknown)
|
|
|
|
__init_cpu_features ();
|
|
|
|
#else
|
2007-05-21 21:21:48 +02:00
|
|
|
/* Find out what brand of processor. */
|
2009-07-23 23:03:53 +02:00
|
|
|
unsigned int max_cpuid;
|
2007-05-21 21:21:48 +02:00
|
|
|
unsigned int ebx;
|
|
|
|
unsigned int ecx;
|
|
|
|
unsigned int edx;
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0, max_cpuid, ebx, ecx, edx);
|
2009-07-23 23:03:53 +02:00
|
|
|
#endif
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2009-07-23 23:03:53 +02:00
|
|
|
if (is_intel)
|
|
|
|
return handle_intel (name, max_cpuid);
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2009-07-23 23:03:53 +02:00
|
|
|
if (is_amd)
|
2007-05-21 21:21:48 +02:00
|
|
|
return handle_amd (name);
|
|
|
|
|
|
|
|
// XXX Fill in more vendors.
|
|
|
|
|
|
|
|
/* CPU not known, we have no information. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-12 20:22:03 +01:00
|
|
|
/* Data cache size for use in memory and string routines, typically
|
2010-11-05 12:57:46 +01:00
|
|
|
L1 size, rounded to multiple of 256 bytes. */
|
2013-01-06 01:00:38 +01:00
|
|
|
long int __x86_data_cache_size_half attribute_hidden = 32 * 1024 / 2;
|
|
|
|
long int __x86_data_cache_size attribute_hidden = 32 * 1024;
|
|
|
|
/* Similar to __x86_data_cache_size_half, but not rounded. */
|
|
|
|
long int __x86_raw_data_cache_size_half attribute_hidden = 32 * 1024 / 2;
|
|
|
|
/* Similar to __x86_data_cache_size, but not rounded. */
|
|
|
|
long int __x86_raw_data_cache_size attribute_hidden = 32 * 1024;
|
2007-05-22 00:38:06 +02:00
|
|
|
/* Shared cache size for use in memory and string routines, typically
|
2010-11-05 12:57:46 +01:00
|
|
|
L2 or L3 size, rounded to multiple of 256 bytes. */
|
2013-01-06 01:00:38 +01:00
|
|
|
long int __x86_shared_cache_size_half attribute_hidden = 1024 * 1024 / 2;
|
|
|
|
long int __x86_shared_cache_size attribute_hidden = 1024 * 1024;
|
|
|
|
/* Similar to __x86_shared_cache_size_half, but not rounded. */
|
|
|
|
long int __x86_raw_shared_cache_size_half attribute_hidden = 1024 * 1024 / 2;
|
|
|
|
/* Similar to __x86_shared_cache_size, but not rounded. */
|
|
|
|
long int __x86_raw_shared_cache_size attribute_hidden = 1024 * 1024;
|
2009-07-31 20:53:35 +02:00
|
|
|
|
|
|
|
#ifndef DISABLE_PREFETCHW
|
2007-09-22 07:54:03 +02:00
|
|
|
/* PREFETCHW support flag for use in memory and string routines. */
|
2013-01-06 01:00:38 +01:00
|
|
|
int __x86_prefetchw attribute_hidden;
|
2009-07-31 20:53:35 +02:00
|
|
|
#endif
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2009-07-31 20:53:35 +02:00
|
|
|
#ifndef DISABLE_PREFERRED_MEMORY_INSTRUCTION
|
2007-10-16 07:59:53 +02:00
|
|
|
/* Instructions preferred for memory and string routines.
|
|
|
|
|
|
|
|
0: Regular instructions
|
|
|
|
1: MMX instructions
|
|
|
|
2: SSE2 instructions
|
|
|
|
3: SSSE3 instructions
|
|
|
|
|
|
|
|
*/
|
2013-01-06 01:00:38 +01:00
|
|
|
int __x86_preferred_memory_instruction attribute_hidden;
|
2009-07-31 20:53:35 +02:00
|
|
|
#endif
|
2007-10-16 07:59:53 +02:00
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
__attribute__((constructor))
|
|
|
|
init_cacheinfo (void)
|
|
|
|
{
|
|
|
|
/* Find out what brand of processor. */
|
|
|
|
unsigned int eax;
|
|
|
|
unsigned int ebx;
|
|
|
|
unsigned int ecx;
|
|
|
|
unsigned int edx;
|
|
|
|
int max_cpuid_ex;
|
2007-09-22 07:54:03 +02:00
|
|
|
long int data = -1;
|
2007-05-21 21:21:48 +02:00
|
|
|
long int shared = -1;
|
|
|
|
unsigned int level;
|
|
|
|
unsigned int threads = 0;
|
|
|
|
|
2009-03-14 00:53:18 +01:00
|
|
|
#ifdef USE_MULTIARCH
|
|
|
|
if (__cpu_features.kind == arch_kind_unknown)
|
|
|
|
__init_cpu_features ();
|
|
|
|
#else
|
|
|
|
int max_cpuid;
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0, max_cpuid, ebx, ecx, edx);
|
2009-03-14 00:53:18 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (is_intel)
|
2007-05-21 21:21:48 +02:00
|
|
|
{
|
2007-09-22 07:54:03 +02:00
|
|
|
data = handle_intel (_SC_LEVEL1_DCACHE_SIZE, max_cpuid);
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2007-09-22 07:54:03 +02:00
|
|
|
/* Try L3 first. */
|
2007-05-21 21:21:48 +02:00
|
|
|
level = 3;
|
2007-05-22 00:38:06 +02:00
|
|
|
shared = handle_intel (_SC_LEVEL3_CACHE_SIZE, max_cpuid);
|
|
|
|
|
2007-05-21 21:21:48 +02:00
|
|
|
if (shared <= 0)
|
2011-03-05 05:30:08 +01:00
|
|
|
{
|
2007-09-22 07:54:03 +02:00
|
|
|
/* Try L2 otherwise. */
|
2011-03-05 05:30:08 +01:00
|
|
|
level = 2;
|
|
|
|
shared = handle_intel (_SC_LEVEL2_CACHE_SIZE, max_cpuid);
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2009-08-07 18:39:36 +02:00
|
|
|
unsigned int ebx_1;
|
|
|
|
|
2009-03-14 00:53:18 +01:00
|
|
|
#ifdef USE_MULTIARCH
|
2009-06-01 02:52:05 +02:00
|
|
|
eax = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].eax;
|
2009-08-07 18:39:36 +02:00
|
|
|
ebx_1 = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].ebx;
|
2009-06-01 02:52:05 +02:00
|
|
|
ecx = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].ecx;
|
|
|
|
edx = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].edx;
|
2009-03-14 00:53:18 +01:00
|
|
|
#else
|
2009-08-07 18:39:36 +02:00
|
|
|
__cpuid (1, eax, ebx_1, ecx, edx);
|
2009-03-14 00:53:18 +01:00
|
|
|
#endif
|
2007-10-16 07:59:53 +02:00
|
|
|
|
2009-07-31 20:53:35 +02:00
|
|
|
#ifndef DISABLE_PREFERRED_MEMORY_INSTRUCTION
|
2008-03-07 18:55:11 +01:00
|
|
|
/* Intel prefers SSSE3 instructions for memory/string routines
|
2011-03-05 05:30:08 +01:00
|
|
|
if they are available. */
|
2007-10-16 07:59:53 +02:00
|
|
|
if ((ecx & 0x200))
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_preferred_memory_instruction = 3;
|
2007-10-16 07:59:53 +02:00
|
|
|
else
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_preferred_memory_instruction = 2;
|
2009-07-31 20:53:35 +02:00
|
|
|
#endif
|
2007-10-16 07:59:53 +02:00
|
|
|
|
2007-05-22 00:38:06 +02:00
|
|
|
/* Figure out the number of logical threads that share the
|
2007-09-22 07:54:03 +02:00
|
|
|
highest cache level. */
|
2007-05-21 21:21:48 +02:00
|
|
|
if (max_cpuid >= 4)
|
2011-03-05 05:30:08 +01:00
|
|
|
{
|
2007-05-21 21:21:48 +02:00
|
|
|
int i = 0;
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2007-09-22 07:54:03 +02:00
|
|
|
/* Query until desired cache level is enumerated. */
|
2007-05-21 21:21:48 +02:00
|
|
|
do
|
|
|
|
{
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid_count (4, i++, eax, ebx, ecx, edx);
|
2007-10-10 03:22:45 +02:00
|
|
|
|
|
|
|
/* There seems to be a bug in at least some Pentium Ds
|
|
|
|
which sometimes fail to iterate all cache parameters.
|
|
|
|
Do not loop indefinitely here, stop in this case and
|
|
|
|
assume there is no such information. */
|
|
|
|
if ((eax & 0x1f) == 0)
|
|
|
|
goto intel_bug_no_cache_info;
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
2011-03-05 05:30:08 +01:00
|
|
|
while (((eax >> 5) & 0x7) != level);
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2009-08-07 18:39:36 +02:00
|
|
|
threads = (eax >> 14) & 0x3ff;
|
2009-08-07 18:47:12 +02:00
|
|
|
|
2009-08-07 18:39:36 +02:00
|
|
|
/* If max_cpuid >= 11, THREADS is the maximum number of
|
|
|
|
addressable IDs for logical processors sharing the
|
|
|
|
cache, instead of the maximum number of threads
|
|
|
|
sharing the cache. */
|
|
|
|
if (threads && max_cpuid >= 11)
|
|
|
|
{
|
|
|
|
/* Find the number of logical processors shipped in
|
|
|
|
one core and apply count mask. */
|
|
|
|
i = 0;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
__cpuid_count (11, i++, eax, ebx, ecx, edx);
|
|
|
|
|
|
|
|
int shipped = ebx & 0xff;
|
|
|
|
int type = ecx & 0xff0;
|
|
|
|
if (shipped == 0 || type == 0)
|
|
|
|
break;
|
|
|
|
else if (type == 0x200)
|
|
|
|
{
|
|
|
|
int count_mask;
|
|
|
|
|
|
|
|
/* Compute count mask. */
|
|
|
|
asm ("bsr %1, %0"
|
|
|
|
: "=r" (count_mask) : "g" (threads));
|
|
|
|
count_mask = ~(-1 << (count_mask + 1));
|
|
|
|
threads = (shipped - 1) & count_mask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
threads += 1;
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
|
|
|
else
|
2011-03-05 05:30:08 +01:00
|
|
|
{
|
2007-10-10 03:22:45 +02:00
|
|
|
intel_bug_no_cache_info:
|
2007-09-22 07:54:03 +02:00
|
|
|
/* Assume that all logical threads share the highest cache level. */
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2009-08-07 18:39:36 +02:00
|
|
|
threads = (ebx_1 >> 16) & 0xff;
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
2007-05-22 00:38:06 +02:00
|
|
|
|
|
|
|
/* Cap usage of highest cache level to the number of supported
|
2007-09-22 07:54:03 +02:00
|
|
|
threads. */
|
2007-05-21 21:21:48 +02:00
|
|
|
if (shared > 0 && threads > 0)
|
2011-03-05 05:30:08 +01:00
|
|
|
shared /= threads;
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
|
|
|
/* This spells out "AuthenticAMD". */
|
2009-03-14 00:53:18 +01:00
|
|
|
else if (is_amd)
|
2007-05-21 21:21:48 +02:00
|
|
|
{
|
2007-09-22 07:54:03 +02:00
|
|
|
data = handle_amd (_SC_LEVEL1_DCACHE_SIZE);
|
|
|
|
long int core = handle_amd (_SC_LEVEL2_CACHE_SIZE);
|
|
|
|
shared = handle_amd (_SC_LEVEL3_CACHE_SIZE);
|
2007-05-22 00:38:06 +02:00
|
|
|
|
2011-03-05 05:30:08 +01:00
|
|
|
#ifndef DISABLE_PREFERRED_MEMORY_INSTRUCTION
|
|
|
|
# ifdef USE_MULTIARCH
|
|
|
|
eax = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].eax;
|
|
|
|
ebx = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].ebx;
|
|
|
|
ecx = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].ecx;
|
|
|
|
edx = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].edx;
|
|
|
|
# else
|
|
|
|
__cpuid (1, eax, ebx, ecx, edx);
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* AMD prefers SSSE3 instructions for memory/string routines
|
|
|
|
if they are avaiable, otherwise it prefers integer
|
|
|
|
instructions. */
|
|
|
|
if ((ecx & 0x200))
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_preferred_memory_instruction = 3;
|
2011-03-05 05:30:08 +01:00
|
|
|
else
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_preferred_memory_instruction = 0;
|
2011-03-05 05:30:08 +01:00
|
|
|
#endif
|
|
|
|
|
2007-09-22 07:54:03 +02:00
|
|
|
/* Get maximum extended function. */
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0x80000000, max_cpuid_ex, ebx, ecx, edx);
|
2007-05-21 21:21:48 +02:00
|
|
|
|
2007-09-22 07:54:03 +02:00
|
|
|
if (shared <= 0)
|
|
|
|
/* No shared L3 cache. All we have is the L2 cache. */
|
|
|
|
shared = core;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Figure out the number of logical threads that share L3. */
|
|
|
|
if (max_cpuid_ex >= 0x80000008)
|
|
|
|
{
|
|
|
|
/* Get width of APIC ID. */
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0x80000008, max_cpuid_ex, ebx, ecx, edx);
|
2007-09-22 07:54:03 +02:00
|
|
|
threads = 1 << ((ecx >> 12) & 0x0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (threads == 0)
|
|
|
|
{
|
|
|
|
/* If APIC ID width is not available, use logical
|
|
|
|
processor count. */
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0x00000001, max_cpuid_ex, ebx, ecx, edx);
|
2007-09-22 07:54:03 +02:00
|
|
|
|
|
|
|
if ((edx & (1 << 28)) != 0)
|
|
|
|
threads = (ebx >> 16) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cap usage of highest cache level to the number of
|
|
|
|
supported threads. */
|
|
|
|
if (threads > 0)
|
|
|
|
shared /= threads;
|
|
|
|
|
|
|
|
/* Account for exclusive L2 and L3 caches. */
|
|
|
|
shared += core;
|
|
|
|
}
|
|
|
|
|
2009-07-31 20:53:35 +02:00
|
|
|
#ifndef DISABLE_PREFETCHW
|
2007-05-21 21:21:48 +02:00
|
|
|
if (max_cpuid_ex >= 0x80000001)
|
|
|
|
{
|
2009-07-31 20:53:35 +02:00
|
|
|
__cpuid (0x80000001, eax, ebx, ecx, edx);
|
2007-09-22 07:54:03 +02:00
|
|
|
/* PREFETCHW || 3DNow! */
|
2007-05-21 21:21:48 +02:00
|
|
|
if ((ecx & 0x100) || (edx & 0x80000000))
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_prefetchw = -1;
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
2009-07-31 20:53:35 +02:00
|
|
|
#endif
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|
|
|
|
|
2007-09-22 07:54:03 +02:00
|
|
|
if (data > 0)
|
2010-01-12 20:22:03 +01:00
|
|
|
{
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_raw_data_cache_size_half = data / 2;
|
|
|
|
__x86_raw_data_cache_size = data;
|
2010-11-05 12:57:46 +01:00
|
|
|
/* Round data cache size to multiple of 256 bytes. */
|
|
|
|
data = data & ~255L;
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_data_cache_size_half = data / 2;
|
|
|
|
__x86_data_cache_size = data;
|
2010-01-12 20:22:03 +01:00
|
|
|
}
|
2007-05-21 21:21:48 +02:00
|
|
|
|
|
|
|
if (shared > 0)
|
2007-10-16 07:59:53 +02:00
|
|
|
{
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_raw_shared_cache_size_half = shared / 2;
|
|
|
|
__x86_raw_shared_cache_size = shared;
|
2010-11-05 12:57:46 +01:00
|
|
|
/* Round shared cache size to multiple of 256 bytes. */
|
|
|
|
shared = shared & ~255L;
|
2013-01-06 01:00:38 +01:00
|
|
|
__x86_shared_cache_size_half = shared / 2;
|
|
|
|
__x86_shared_cache_size = shared;
|
2007-10-16 07:59:53 +02:00
|
|
|
}
|
2007-05-21 21:21:48 +02:00
|
|
|
}
|