author | jlaskey |
Tue, 23 Jul 2013 12:00:29 -0300 | |
changeset 19089 | 51cfdcf21d35 |
parent 5547 | f4b087cbb361 |
permissions | -rw-r--r-- |
5119
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
1 |
/* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5119
diff
changeset
|
2 |
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. |
5119
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
4 |
* |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
8 |
* |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
13 |
* accompanied this code). |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
14 |
* |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
18 |
* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5119
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5119
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5119
diff
changeset
|
21 |
* questions. |
5119
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
22 |
* |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
23 |
*/ |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
24 |
|
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
25 |
/** |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
26 |
* @test |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
27 |
* @bug 6892265 |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
28 |
* @summary System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
29 |
* |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
30 |
* @run main/othervm Test |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
31 |
*/ |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
32 |
|
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
33 |
public class Test { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
34 |
static final int NCOPY = 1; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
35 |
static final int OVERFLOW = 1; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
36 |
static int[] src2 = new int[NCOPY]; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
37 |
static int[] dst2; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
38 |
|
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
39 |
static void test() { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
40 |
int N; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
41 |
int SIZE; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
42 |
|
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
43 |
N = Integer.MAX_VALUE/4 + OVERFLOW; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
44 |
System.arraycopy(src2, 0, dst2, N, NCOPY); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
45 |
System.arraycopy(dst2, N, src2, 0, NCOPY); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
46 |
} |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
47 |
|
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
48 |
public static void main(String[] args) { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
49 |
try { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
50 |
dst2 = new int[NCOPY + Integer.MAX_VALUE/4 + OVERFLOW]; |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
51 |
} catch (OutOfMemoryError e) { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
52 |
System.exit(95); // Not enough memory |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
53 |
} |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
54 |
System.out.println("warmup"); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
55 |
for (int i=0; i <11000; i++) { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
56 |
test(); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
57 |
} |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
58 |
System.out.println("start"); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
59 |
for (int i=0; i <1000; i++) { |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
60 |
test(); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
61 |
} |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
62 |
System.out.println("finish"); |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
63 |
} |
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
64 |
|
7bf54ea07181
6892265: System.arraycopy unable to reference elements beyond Integer.MAX_VALUE bytes
kvn
parents:
diff
changeset
|
65 |
} |