jjg@1521: /* jjg@1755: * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved. jjg@1521: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1521: * jjg@1521: * This code is free software; you can redistribute it and/or modify it jjg@1521: * under the terms of the GNU General Public License version 2 only, as jjg@1521: * published by the Free Software Foundation. jjg@1521: * jjg@1521: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1521: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1521: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1521: * version 2 for more details (a copy is included in the LICENSE file that jjg@1521: * accompanied this code). jjg@1521: * jjg@1521: * You should have received a copy of the GNU General Public License version jjg@1521: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1521: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1521: * jjg@1521: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1521: * or visit www.oracle.com if you need additional information or have any jjg@1521: * questions. jjg@1521: */ jjg@1521: jjg@1521: import static com.sun.tools.classfile.TypeAnnotation.TargetType.*; jjg@1521: jjg@1521: /* jjg@1521: * @test jjg@1521: * @summary Test population of reference info for new object creations jjg@1521: * @compile -g Driver.java ReferenceInfoUtil.java NewObjects.java jjg@1521: * @run main Driver NewObjects jjg@1521: */ jjg@1521: public class NewObjects { jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1521: public String returnObject() { jjg@1521: return "Object returnObject() { return new @TA String(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1521: @TADescription(annotation = "TB", type = NEW, jjg@1521: genericLocation = { 3, 0 }, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1521: }) jjg@1521: public String returnObjectGeneric() { jjg@1521: return "Object returnObjectGeneric() { return new @TA ArrayList<@TB String>(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1521: public String initObject() { jjg@1521: return "void initObject() { Object a = new @TA String(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1521: @TADescription(annotation = "TB", type = NEW, jjg@1521: genericLocation = { 3, 0 }, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1521: @TADescription(annotation = "TC", type = NEW, jjg@1521: genericLocation = { 3, 1 }, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1521: }) jjg@1521: public String initObjectGeneric() { jjg@1521: return "void initObjectGeneric() { Object a = new @TA HashMap<@TB String, @TC String>(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1521: public String eqtestObject() { jjg@1521: return "void eqtestObject() { if (null == new @TA String()); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1521: @TADescription(annotation = "TB", type = NEW, jjg@1521: genericLocation = { 3, 0 }, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1521: }) jjg@1521: public String eqtestObjectGeneric() { jjg@1521: return "void eqtestObjectGeneric() { if (null == new @TA ArrayList<@TB String >()); }"; jjg@1521: } jjg@1521: jjg@1755: @TADescriptions({ jjg@1755: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0}), jjg@1755: @TADescription(annotation = "TB", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE) jjg@1755: }) jjg@1755: public String returnNewArray1() { jjg@1755: return "Object returnNewArray1() { return new @TA String @TB[1]; }"; jjg@1755: } jjg@1755: jjg@1755: @TADescriptions({ jjg@1755: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0}), jjg@1755: @TADescription(annotation = "TB", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1755: @TADescription(annotation = "TC", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0}), jjg@1755: }) jjg@1755: public String returnNewArray2() { jjg@1755: return "Object returnNewArray2() { return new @TA String @TB [1] @TC [2]; }"; jjg@1755: } jjg@1755: jjg@1755: @TADescriptions({ jjg@1755: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0}), jjg@1755: @TADescription(annotation = "TB", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0, 1, 0}), jjg@1755: @TADescription(annotation = "TC", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1755: @TADescription(annotation = "TD", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0}), jjg@1755: }) jjg@1755: public String returnNewArray3() { jjg@1755: return "Object returnNewArray3() { return new @TA Outer. @TB Inner @TC [1] @TD [2]; }"; jjg@1755: } jjg@1755: jjg@1755: @TADescriptions({ jjg@1755: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0}), jjg@1755: @TADescription(annotation = "TB", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0, 1, 0}), jjg@1755: @TADescription(annotation = "TC", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0, 1, 0, 1, 0}), jjg@1755: @TADescription(annotation = "TD", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1755: @TADescription(annotation = "TE", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0}), jjg@1755: }) jjg@1755: public String returnNewArray4() { jjg@1755: return "Object returnNewArray4() { return new @TA Outer. @TB Middle. @TC MInner @TD [1] @TE [2]; }"; jjg@1755: } jjg@1755: jjg@1755: @TADescriptions({ jjg@1755: @TADescription(annotation = "TA", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1755: @TADescription(annotation = "TB", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {3, 0, 0, 0, 0, 0}), jjg@1755: @TADescription(annotation = "TC", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {3, 0, 0, 0, 0, 0, 1, 0}), jjg@1755: @TADescription(annotation = "TD", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {3, 0, 0, 0, 0, 0, 1, 0, 1, 0}), jjg@1755: @TADescription(annotation = "TE", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {3, 0}), jjg@1755: @TADescription(annotation = "TF", type = NEW, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {3, 0, 0, 0}), jjg@1755: }) jjg@1755: public String returnNewArray5() { jjg@1755: return "Object returnNewArray5() { return new @TA ArrayList<@TB Outer. @TC Middle. @TD MInner @TE [] @TF []>(); }"; jjg@1755: } jjg@1755: jjg@1755: @TADescriptions({ jjg@1755: @TADescription(annotation = "TA", type = FIELD, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0}), jjg@1755: @TADescription(annotation = "TB", type = FIELD, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0, 0, 0, 1, 0}), jjg@1755: @TADescription(annotation = "TC", type = FIELD, offset = ReferenceInfoUtil.IGNORE_VALUE), jjg@1755: @TADescription(annotation = "TD", type = FIELD, offset = ReferenceInfoUtil.IGNORE_VALUE, jjg@1755: genericLocation = {0, 0}), jjg@1755: }) jjg@1755: public String arrayField() { jjg@1755: return "@TA Outer. @TB Inner @TC [] @TD [] f;"; jjg@1755: } jjg@1521: }