annotate src/share/vm/classfile/altHashing.hpp @ 9126:bc26f978b0ce

HotSpotResolvedObjectType: implement hasFinalizeSubclass() correctly don't use the (wrong) cached value, but ask the runtime on each request. Fixes regression on xml.* benchmarks @ specjvm2008. The problem was: After the constructor of Object was deoptimized due to an assumption violation, it was recompiled again after some time. However, on recompilation, the value of hasFinalizeSubclass for the class was not updated and it was compiled again with a, now wrong, assumption, which then triggers deoptimization again. This was repeated until it hit the recompilation limit (defined by PerMethodRecompilationCutoff), and therefore only executed by the interpreter from now on, causing the performance regression.
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 15 Apr 2013 19:54:58 +0200
parents e9140bf80b4a
children cd6b3f1a94ff
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 /*
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
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
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
42 static jint Integer_rotateLeft(jint i, int distance) {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
43 return (i << distance) | (((juint)i) >> (32-distance));
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
44 }
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
45 static jint murmur3_32(const int* data, int len);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
46 static jint murmur3_32(jint seed, const int* data, int len);
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
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
50 static jint murmur3_32(const jbyte* data, int len);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
51 static jint murmur3_32(const jchar* data, int len);
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:
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
57 static jint compute_seed();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
58 static jint murmur3_32(jint seed, const jbyte* data, int len);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents:
diff changeset
59 static jint murmur3_32(jint seed, const jchar* data, int len);
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