2.9
[glibc/nacl-glibc.git] / sysdeps / i386 / i686 / dl-hash.h
blob4bdd998aa8e0944182bbf4770f3abb7adef4e045
1 /* Compute hash alue for given string according to ELF standard.
2 Copyright (C) 1998, 2003, 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #ifndef _DL_HASH_H
22 #define _DL_HASH_H 1
25 /* This is the hashing function specified by the ELF ABI. It is highly
26 optimized for the PII processors. Though it will run on i586 it
27 would be much slower than the generic C implementation. So don't
28 use it. */
29 static unsigned int
30 _dl_elf_hash (const char *name)
32 unsigned int result;
33 unsigned int temp0;
34 unsigned int temp1;
36 __asm__ __volatile__
37 ("movzbl (%1),%2\n\t"
38 "testl %2, %2\n\t"
39 "jz 1f\n\t"
40 "movl %2, %0\n\t"
41 "movzbl 1(%1), %2\n\t"
42 "jecxz 1f\n\t"
43 "shll $4, %0\n\t"
44 "addl %2, %0\n\t"
45 "movzbl 2(%1), %2\n\t"
46 "jecxz 1f\n\t"
47 "shll $4, %0\n\t"
48 "addl %2, %0\n\t"
49 "movzbl 3(%1), %2\n\t"
50 "jecxz 1f\n\t"
51 "shll $4, %0\n\t"
52 "addl %2, %0\n\t"
53 "movzbl 4(%1), %2\n\t"
54 "jecxz 1f\n\t"
55 "shll $4, %0\n\t"
56 "addl $5, %1\n\t"
57 "addl %2, %0\n\t"
58 "movzbl (%1), %2\n\t"
59 "jecxz 1f\n"
60 "2:\t"
61 "shll $4, %0\n\t"
62 "movl $0xf0000000, %3\n\t"
63 "incl %1\n\t"
64 "addl %2, %0\n\t"
65 "andl %0, %3\n\t"
66 "andl $0x0fffffff, %0\n\t"
67 "shrl $24, %3\n\t"
68 "movzbl (%1), %2\n\t"
69 "xorl %3, %0\n\t"
70 "testl %2, %2\n\t"
71 "jnz 2b\n"
72 "1:\t"
73 : "=&r" (result), "=r" (name), "=&c" (temp0), "=&r" (temp1)
74 : "0" (0), "1" ((const unsigned char *) name));
76 return result;
79 #endif /* dl-hash.h */