aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha/include/types.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-03-17 09:31:06 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-03-17 09:31:06 +0000
commit6eb39ac8fca93d24eae9ae99ce93b0051a3bba72 (patch)
treed54e4b1c6b4a97ff4af8376ef41b677b3849efa0 /sys/alpha/include/types.h
parent0c5c7719e63c6b5f828db5fa22f2c89dfa9d53ac (diff)
downloadsrc-6eb39ac8fca93d24eae9ae99ce93b0051a3bba72.tar.gz
src-6eb39ac8fca93d24eae9ae99ce93b0051a3bba72.zip
Use a generic implementation of the Fowler/Noll/Vo hash (FNV hash).
Make the name cache hash as well as the nfsnode hash use it. As a special tweak, create an unsigned version of register_t. This allows us to use a special tweak for the 64 bit versions that significantly speeds up the i386 version (ie: int64 XOR int64 is slower than int64 XOR int32). The code layout is a little strange for the string function, but I was able to get between 5 to 10% improvement over the original version I started with. The layout affects gcc code generation choices and this way was fastest on x86 and alpha. Note that 'CPUTYPE=p3' etc makes a fair difference to this. It is around 45% faster with -march=pentiumpro on a p6 cpu.
Notes
Notes: svn path=/head/; revision=74384
Diffstat (limited to 'sys/alpha/include/types.h')
-rw-r--r--sys/alpha/include/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/include/types.h b/sys/alpha/include/types.h
index 087c17546b6b..8ca3c6b8560c 100644
--- a/sys/alpha/include/types.h
+++ b/sys/alpha/include/types.h
@@ -56,8 +56,8 @@ typedef long vm_ooffset_t;
typedef unsigned long vm_pindex_t;
typedef unsigned long vm_size_t;
-
typedef __int64_t register_t;
+typedef __uint64_t u_register_t;
#ifdef _KERNEL
typedef long intfptr_t;