[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r2501 - in /branches/eglibc-2_5/libc: ./ sysdeps/unix/sysv/linux/powerpc/
- To: commits@xxxxxxxxxx
- Subject: [commits] r2501 - in /branches/eglibc-2_5/libc: ./ sysdeps/unix/sysv/linux/powerpc/
- From: nathan@xxxxxxxxxx
- Date: Wed, 13 Jun 2007 11:05:11 -0000
Author: nathan
Date: Wed Jun 13 04:05:10 2007
New Revision: 2501
Log:
* sysdeps/unix/sysv/linux/powerpc/libc-start.c
(__libc_start_main): Detect 8xx parts and clear
__cache_line_size if detected.
* sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
(DL_PLATFORM_AUXV): Likewise.
Modified:
branches/eglibc-2_5/libc/ChangeLog.eglibc
branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/libc-start.c
Modified: branches/eglibc-2_5/libc/ChangeLog.eglibc
==============================================================================
--- branches/eglibc-2_5/libc/ChangeLog.eglibc (original)
+++ branches/eglibc-2_5/libc/ChangeLog.eglibc Wed Jun 13 04:05:10 2007
@@ -1,3 +1,12 @@
+2007-06-13 Nathan Sidwell <nathan@xxxxxxxxxxxxxxxx>
+ Mark Shinwell <shinwell@xxxxxxxxxxxxxxxx>
+
+ * sysdeps/unix/sysv/linux/powerpc/libc-start.c
+ (__libc_start_main): Detect 8xx parts and clear
+ __cache_line_size if detected.
+ * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
+ (DL_PLATFORM_AUXV): Likewise.
+
2007-06-09 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
Backport from FSF mainline:
Modified: branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
==============================================================================
--- branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c (original)
+++ branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c Wed Jun 13 04:05:10 2007
@@ -24,14 +24,26 @@
extern int __cache_line_size;
weak_extern (__cache_line_size)
-/* Scan the Aux Vector for the "Data Cache Block Size" entry. If found
- verify that the static extern __cache_line_size is defined by checking
- for not NULL. If it is defined then assign the cache block size
- value to __cache_line_size. */
+/* Scan the Aux Vector for the "Data Cache Block Size" entry. If
+ found verify that the static extern __cache_line_size is defined by
+ checking for not NULL. If it is defined then assign the cache
+ block size value to __cache_line_size. This is used by memset to
+ optimize setting to zero. We have to detect 8xx processors, which
+ have buggy dcbz implementations that cannot report page faults
+ correctly. That requires reading SPR, which is a privileged
+ operation. Fortunately 2.2.18 and later emulates PowerPC mfspr
+ reads from the PVR register. */
#define DL_PLATFORM_AUXV \
case AT_DCACHEBSIZE: \
{ \
int *cls = & __cache_line_size; \
+ if (__LINUX_KERNEL_VERSION >= 0x020218) \
+ { \
+ unsigned pvr = 0; \
+ asm ("mfspr %0, 287" : "=r" (pvr)); \
+ if ((pvr & 0xffff0000) == 0x00500000) \
+ cls = NULL; \
+ } \
if (cls != NULL) \
*cls = av->a_un.a_val; \
} \
Modified: branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/libc-start.c
==============================================================================
--- branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/libc-start.c (original)
+++ branches/eglibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/libc-start.c Wed Jun 13 04:05:10 2007
@@ -108,13 +108,27 @@
rtld_fini = NULL;
}
- /* Initialize the __cache_line_size variable from the aux vector. */
+ /* Initialize the __cache_line_size variable from the aux vector.
+ This is used by memset to optimize setting to zero. We have to
+ detect 8xx processors, which have buggy dcbz implementations that
+ cannot report page faults correctly. That requires reading SPR,
+ which is a privileged operation. Fortunately 2.2.18 and later
+ emulates PowerPC mfspr reads from the PVR register. */
for (ElfW (auxv_t) * av = auxvec; av->a_type != AT_NULL; ++av)
switch (av->a_type)
{
case AT_DCACHEBSIZE:
{
int *cls = &__cache_line_size;
+
+ if (__LINUX_KERNEL_VERSION >= 0x020218)
+ {
+ unsigned pvr = 0;
+
+ asm ("mfspr %0, 287" : "=r" (pvr) :);
+ if ((pvr & 0xffff0000) == 0x00500000)
+ cls = NULL;
+ }
if (cls != NULL)
*cls = av->a_un.a_val;
}