1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/*
* Copyright (c) 2014, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8064703 8347006
* @summary Deoptimization between array allocation and arraycopy may result in non initialized array
*
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:TypeProfileLevel=020
* compiler.arraycopy.TestArrayCopyNoInit
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:TypeProfileLevel=020
* -XX:+UseCompactObjectHeaders -XX:-UseTLAB
* compiler.arraycopy.TestArrayCopyNoInit
*/
package compiler.arraycopy;
public class TestArrayCopyNoInit {
static int[] m1(int[] src) {
int[] dest = new int[10];
try {
System.arraycopy(src, 0, dest, 0, 10);
} catch (NullPointerException npe) {
}
return dest;
}
static int[] m2(Object src, boolean flag) {
Class tmp = src.getClass();
if (flag) {
return null;
}
int[] dest = new int[10];
try {
System.arraycopy(src, 0, dest, 0, 10);
} catch (ArrayStoreException npe) {
}
return dest;
}
static int[] m3(int[] src, int src_offset) {
int tmp = src[0];
int[] dest = new int[10];
try {
System.arraycopy(src, src_offset, dest, 0, 10);
} catch (IndexOutOfBoundsException npe) {
}
return dest;
}
static int[] m4(int[] src, int length) {
int tmp = src[0];
int[] dest = new int[10];
try {
System.arraycopy(src, 0, dest, 0, length);
} catch (IndexOutOfBoundsException npe) {
}
return dest;
}
static TestArrayCopyNoInit[] m5(Object[] src) {
Object tmp = src[0];
TestArrayCopyNoInit[] dest = new TestArrayCopyNoInit[10];
System.arraycopy(src, 0, dest, 0, 10);
return dest;
}
static class A {
}
static class B extends A {
}
static class C extends B {
}
static class D extends C {
}
static class E extends D {
}
static class F extends E {
}
static class G extends F {
}
static class H extends G {
}
static class I extends H {
}
static H[] m6(Object[] src) {
Object tmp = src[0];
H[] dest = new H[10];
System.arraycopy(src, 0, dest, 0, 10);
return dest;
}
static Object m7_src(Object src) {
return src;
}
static int[] m7(Object src, boolean flag) {
Class tmp = src.getClass();
if (flag) {
return null;
}
src = m7_src(src);
int[] dest = new int[10];
try {
System.arraycopy(src, 0, dest, 0, 10);
} catch (ArrayStoreException npe) {
}
return dest;
}
static public void main(String[] args) {
boolean success = true;
int[] src = new int[10];
TestArrayCopyNoInit[] src2 = new TestArrayCopyNoInit[10];
int[] res = null;
TestArrayCopyNoInit[] res2 = null;
Object src_obj = new Object();
for (int i = 0; i < 20000; i++) {
m1(src);
}
res = m1(null);
for (int i = 0; i < res.length; i++) {
if (res[i] != 0) {
success = false;
System.out.println("Uninitialized array following NPE");
break;
}
}
for (int i = 0; i < 20000; i++) {
if ((i%2) == 0) {
m2(src, false);
} else {
m2(src_obj, true);
}
}
res = m2(src_obj, false);
for (int i = 0; i < res.length; i++) {
if (res[i] != 0) {
success = false;
System.out.println("Uninitialized array following failed array check");
break;
}
}
for (int i = 0; i < 20000; i++) {
m3(src, 0);
}
res = m3(src, -1);
for (int i = 0; i < res.length; i++) {
if (res[i] != 0) {
success = false;
System.out.println("Uninitialized array following failed src offset check");
break;
}
}
for (int i = 0; i < 20000; i++) {
m4(src, 0);
}
res = m4(src, -1);
for (int i = 0; i < res.length; i++) {
if (res[i] != 0) {
success = false;
System.out.println("Uninitialized array following failed length check");
break;
}
}
for (int i = 0; i < 20000; i++) {
m5(src2);
}
res2 = m5(new Object[10]);
for (int i = 0; i < res2.length; i++) {
if (res2[i] != null) {
success = false;
System.out.println("Uninitialized array following failed type check");
break;
}
}
H[] src3 = new H[10];
I b = new I();
for (int i = 0; i < 20000; i++) {
m6(src3);
}
H[] res3 = m6(new Object[10]);
for (int i = 0; i < res3.length; i++) {
if (res3[i] != null) {
success = false;
System.out.println("Uninitialized array following failed full type check");
break;
}
}
for (int i = 0; i < 20000; i++) {
if ((i%2) == 0) {
m7(src, false);
} else {
m7(src_obj, true);
}
}
res = m7(src_obj, false);
for (int i = 0; i < res.length; i++) {
if (res[i] != 0) {
success = false;
System.out.println("Uninitialized array following failed type check with return value profiling");
break;
}
}
if (!success) {
throw new RuntimeException("Some tests failed");
}
}
}
|