annotate test/compiler/6741738/Tester.java @ 18408:2c3666f44855

Truffle: initial commit of object API implementation
author Andreas Woess <andreas.woess@jku.at>
date Tue, 18 Nov 2014 23:19:43 +0100
parents c18cbe5936b8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
306
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 306
diff changeset
2 * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
306
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
4 *
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
7 * published by the Free Software Foundation.
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
8 *
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
13 * accompanied this code).
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
14 *
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 306
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 306
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 306
diff changeset
21 * questions.
306
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
22 */
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
23
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
24 /*
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
25 * @test
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
26 * @bug 6741738
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
27 * @summary TypePtr::add_offset() set incorrect offset when the add overflows
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
28 * @run main/othervm -Xcomp -XX:CompileOnly=Tester.foo Tester
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
29 */
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
30
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
31 public class Tester {
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
32 private String[] values;
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
33 private int count;
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
34
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
35 String foo() {
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
36 int i = Integer.MAX_VALUE-1;
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
37 String s;
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
38 try {
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
39 s = values[i];
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
40 } catch (Throwable e) {
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
41 s = "";
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
42 }
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
43 return s;
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
44 }
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
45
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
46 public static void main(String[] args) {
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
47 Tester t = new Tester();
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
48 String s = t.foo();
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
49 }
af945ba2e739 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
diff changeset
50 }