diff options
author | peter <peter@FreeBSD.org> | 2001-03-17 09:31:06 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-03-17 09:31:06 +0000 |
commit | 670e711dd19510316ecaa1f30d78f16ba66492f6 (patch) | |
tree | df728469695bfff83fcf93f9e9a460606a09b3f1 /sys/ia64 | |
parent | 400aa0706c1d55d12d0405666ddac2d3e3ec5d69 (diff) | |
download | FreeBSD-src-670e711dd19510316ecaa1f30d78f16ba66492f6.zip FreeBSD-src-670e711dd19510316ecaa1f30d78f16ba66492f6.tar.gz |
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.
Diffstat (limited to 'sys/ia64')
-rw-r--r-- | sys/ia64/include/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/include/types.h b/sys/ia64/include/types.h index ccb7793..f8235a2 100644 --- a/sys/ia64/include/types.h +++ b/sys/ia64/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; |