From f3c26535adda4ae14d826684e6c8073eeea5dce1 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Wed, 20 Jun 2007 13:00:59 +0000 Subject: [PATCH] Make some shortcuts in sparcv9cap.c. Trouble is that di_walk_node result is inconsistent among CPU generations. --- crypto/sparcv9cap.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/crypto/sparcv9cap.c b/crypto/sparcv9cap.c index 3ec2340241..0e662ff1c8 100644 --- a/crypto/sparcv9cap.c +++ b/crypto/sparcv9cap.c @@ -41,6 +41,7 @@ unsigned long OPENSSL_rdtsc(void) #include #include +#include typedef di_node_t (*di_init_t)(const char *,uint_t); typedef void (*di_fini_t)(di_node_t); @@ -79,7 +80,7 @@ static int walk_nodename(di_node_t node, di_node_name_t di_node_name) void OPENSSL_cpuid_setup(void) { void *h; - char *e; + char *e,si[256]; static int trigger=0; if (trigger) return; @@ -91,6 +92,25 @@ void OPENSSL_cpuid_setup(void) return; } + if (sysinfo(SI_MACHINE,si,sizeof(si))>0) + { + if (strcmp(si,"sun4v")) + /* FPU is preferred for all CPUs, but US-T1/2 */ + OPENSSL_sparcv9cap_P |= SPARCV9_PREFER_FPU; + } + + if (sysinfo(SI_ISALIST,si,sizeof(si))>0) + { + if (strstr(si,"+vis")) + OPENSSL_sparcv9cap_P |= SPARCV9_VIS1; + if (strstr(si,"+vis2")) + { + OPENSSL_sparcv9cap_P |= SPARCV9_VIS2; + OPENSSL_sparcv9cap_P &= ~SPARCV9_TICK_PRIVILEGED; + return; + } + } + if ((h = dlopen("libdevinfo.so.1",RTLD_LAZY))) do { di_init_t di_init; -- 2.39.2