Skip to content

Commit b9b900a

Browse files
committedJul 1, 2022
8277060: EXCEPTION_INT_DIVIDE_BY_ZERO in TypeAryPtr::dump2 with -XX:+TracePhaseCCP
Reviewed-by: kvn, thartmann, chagedorn, dlong
1 parent f190f4e commit b9b900a

File tree

3 files changed

+74
-4
lines changed

3 files changed

+74
-4
lines changed
 

‎src/hotspot/share/opto/type.cpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -4844,9 +4844,13 @@ void TypeAryPtr::dump2( Dict &d, uint depth, outputStream *st ) const {
48444844
else if( _offset < header_size ) st->print("+%d", _offset);
48454845
else {
48464846
BasicType basic_elem_type = elem()->basic_type();
4847-
int array_base = arrayOopDesc::base_offset_in_bytes(basic_elem_type);
4848-
int elem_size = type2aelembytes(basic_elem_type);
4849-
st->print("[%d]", (_offset - array_base)/elem_size);
4847+
if (basic_elem_type == T_ILLEGAL) {
4848+
st->print("+any");
4849+
} else {
4850+
int array_base = arrayOopDesc::base_offset_in_bytes(basic_elem_type);
4851+
int elem_size = type2aelembytes(basic_elem_type);
4852+
st->print("[%d]", (_offset - array_base)/elem_size);
4853+
}
48504854
}
48514855
}
48524856
st->print(" *");

‎src/hotspot/share/utilities/globalDefinitions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ int _type2aelembytes[T_CONFLICT+1] = {
323323

324324
#ifdef ASSERT
325325
int type2aelembytes(BasicType t, bool allow_address) {
326-
assert(allow_address || t != T_ADDRESS, " ");
326+
assert((allow_address || t != T_ADDRESS) && t <= T_CONFLICT, "unexpected basic type");
327327
return _type2aelembytes[t];
328328
}
329329
#endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8277060
27+
* @requires vm.debug == true & vm.compiler2.enabled
28+
* @modules java.base/jdk.internal.misc
29+
*
30+
* @run main/othervm -Xbatch -XX:CompileCommand=dontinline,compiler.debug.TestTracePhaseCCP::test
31+
* -XX:CompileCommand=compileonly,compiler.debug.TestTracePhaseCCP::test -XX:+TracePhaseCCP
32+
* compiler.debug.TestTracePhaseCCP
33+
*/
34+
35+
package compiler.debug;
36+
37+
import jdk.internal.misc.Unsafe;
38+
import java.nio.ByteOrder;
39+
40+
public class TestTracePhaseCCP {
41+
static private Unsafe UNSAFE = Unsafe.getUnsafe();
42+
43+
static final boolean IS_BIG_ENDIAN = ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN;
44+
45+
static int[] srcArr = new int[1];
46+
static int[] dstArr = new int[1];
47+
48+
static int test(boolean flag) {
49+
int[] srcArrIntLocal = new int[1];
50+
long[] srcArrLongLocal = new long[1];
51+
Object srcArrLocal = (flag ? srcArrIntLocal : srcArrLongLocal);
52+
long srcOffset = (flag ? Unsafe.ARRAY_INT_BASE_OFFSET : Unsafe.ARRAY_LONG_BASE_OFFSET);
53+
srcOffset += (!flag && IS_BIG_ENDIAN ? 4 : 0);
54+
UNSAFE.copyMemory(srcArrLocal, srcOffset, dstArr, Unsafe.ARRAY_INT_BASE_OFFSET, 4);
55+
return dstArr[0];
56+
}
57+
58+
static boolean flag = false;
59+
60+
public static void main(String[] args) {
61+
for (int i = 0; i < 20_000; i++) {
62+
flag = (i % 2 == 0);
63+
int r1 = test(flag);
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)
Please sign in to comment.