annotate src/share/vm/classfile/altHashing.hpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4ca6dc0799b6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
1 /*
18041
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
2 * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
4 *
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
7 * published by the Free Software Foundation.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
8 *
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
13 * accompanied this code).
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
14 *
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
18 *
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
21 * questions.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
22 *
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
23 */
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
24
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
25 #ifndef SHARE_VM_CLASSFILE_ALTHASHING_HPP
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
26 #define SHARE_VM_CLASSFILE_ALTHASHING_HPP
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
27
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
28 #include "prims/jni.h"
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
29 #include "classfile/symbolTable.hpp"
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
30
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
31 /**
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
32 * Hashing utilities.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
33 *
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
34 * Implementation of Murmur3 hashing.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
35 * This code was translated from src/share/classes/sun/misc/Hashing.java
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
36 * code in the JDK.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
37 */
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
38
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
39 class AltHashing : AllStatic {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
40
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
41 // utility function copied from java/lang/Integer
18041
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
42 static juint Integer_rotateLeft(juint i, int distance) {
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
43 return (i << distance) | (i >> (32-distance));
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
44 }
18041
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
45 static juint murmur3_32(const int* data, int len);
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
46 static juint murmur3_32(juint seed, const int* data, int len);
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
47
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
48 #ifndef PRODUCT
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
49 // Hashing functions used for internal testing
18041
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
50 static juint murmur3_32(const jbyte* data, int len);
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
51 static juint murmur3_32(const jchar* data, int len);
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
52 static void testMurmur3_32_ByteArray();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
53 static void testEquivalentHashes();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
54 #endif // PRODUCT
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
55
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
56 public:
18041
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
57 static juint compute_seed();
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
58 static juint murmur3_32(juint seed, const jbyte* data, int len);
52b4284cb496 Merge with jdk8u20-b26
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
59 static juint murmur3_32(juint seed, const jchar* data, int len);
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
60 NOT_PRODUCT(static void test_alt_hash();)
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
61 };
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
62 #endif // SHARE_VM_CLASSFILE_ALTHASHING_HPP