langtools/test/tools/javac/T6970173/DebugPointerAtBadPositionTest.java
author jjg
Thu, 31 Mar 2016 15:20:50 -0700
changeset 36778 e04318f39f92
parent 36526 3b41f1c69604
permissions -rw-r--r--
8152897: refactor ToolBox to allow reduced documented dependencies Reviewed-by: vromero
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17808
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     1
/*
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30846
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
17808
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     4
 *
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     7
 * published by the Free Software Foundation.
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     8
 *
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    13
 * accompanied this code).
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    14
 *
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    18
 *
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    21
 * questions.
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    22
 */
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    23
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    24
/*
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    25
 * @test
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    26
 * @bug 6970173
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    27
 * @summary Debug pointer at bad position
26100
bb7dd001d190 8050429: Update/cleanup ToolBox
jjg
parents: 17808
diff changeset
    28
 * @library /tools/lib
30846
2b3f379840f0 8074432: Move jdeps and javap to jdk.jdeps module
mchung
parents: 30730
diff changeset
    29
 * @modules jdk.jdeps/com.sun.tools.classfile
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 26100
diff changeset
    30
 *          jdk.compiler/com.sun.tools.javac.api
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 26100
diff changeset
    31
 *          jdk.compiler/com.sun.tools.javac.main
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 26100
diff changeset
    32
 *          jdk.compiler/com.sun.tools.javac.util
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30846
diff changeset
    33
 *          jdk.jdeps/com.sun.tools.javap
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    34
 * @build toolbox.ToolBox toolbox.JavacTask
17808
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    35
 * @run main DebugPointerAtBadPositionTest
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    36
 */
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    37
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    38
import java.io.File;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    39
import java.nio.file.Paths;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    40
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    41
import com.sun.tools.classfile.ClassFile;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    42
import com.sun.tools.classfile.Code_attribute;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    43
import com.sun.tools.classfile.LineNumberTable_attribute;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    44
import com.sun.tools.classfile.Method;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    45
import com.sun.tools.javac.util.Assert;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    46
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    47
import toolbox.JavacTask;
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    48
import toolbox.ToolBox;
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    49
17808
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    50
public class DebugPointerAtBadPositionTest {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    51
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    52
    static final String testSource =
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    53
            "public class AssertionTest {\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    54
            "    void lookForThisMethod() {\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    55
            "        int i;\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    56
            "        i = 33;\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    57
            "        assert // line 5\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    58
            "            i < 89:\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    59
            "        i < 100; // line 7\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    60
            "    }\n" +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    61
            "}";
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    62
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    63
    static final int[][] expectedLNT = {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    64
        {4, 0},
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    65
        {5, 3},
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    66
        {8, 34}
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    67
    };
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    68
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    69
    static final String methodToLookFor = "lookForThisMethod";
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    70
    static final String seekMethodNotFoundMsg =
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    71
        "The seek method was not found";
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    72
    static final String foundLNTLengthDifferentThanExpMsg =
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    73
        "The LineNumberTable found has a length different to the expected one";
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    74
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    75
    public static void main(String[] args) throws Exception {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    76
        new DebugPointerAtBadPositionTest().run();
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    77
    }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    78
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    79
    void run() throws Exception {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    80
        compileTestClass();
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    81
        checkClassFile(new File(Paths.get(System.getProperty("user.dir"),
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    82
                "AssertionTest.class").toUri()), methodToLookFor);
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    83
    }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    84
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    85
    void compileTestClass() throws Exception {
26100
bb7dd001d190 8050429: Update/cleanup ToolBox
jjg
parents: 17808
diff changeset
    86
        ToolBox tb = new ToolBox();
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    87
        new JavacTask(tb)
26100
bb7dd001d190 8050429: Update/cleanup ToolBox
jjg
parents: 17808
diff changeset
    88
                .sources(testSource)
bb7dd001d190 8050429: Update/cleanup ToolBox
jjg
parents: 17808
diff changeset
    89
                .run();
17808
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    90
    }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    91
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    92
    void checkClassFile(final File cfile, String methodToFind) throws Exception {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    93
        ClassFile classFile = ClassFile.read(cfile);
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    94
        boolean methodFound = false;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    95
        for (Method method : classFile.methods) {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    96
            if (method.getName(classFile.constant_pool).equals(methodToFind)) {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    97
                methodFound = true;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    98
                Code_attribute code = (Code_attribute) method.attributes.get("Code");
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
    99
                LineNumberTable_attribute lnt =
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   100
                        (LineNumberTable_attribute) code.attributes.get("LineNumberTable");
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   101
                Assert.check(lnt.line_number_table_length == expectedLNT.length,
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   102
                        foundLNTLengthDifferentThanExpMsg);
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   103
                int i = 0;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   104
                for (LineNumberTable_attribute.Entry entry: lnt.line_number_table) {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   105
                    Assert.check(entry.line_number == expectedLNT[i][0] &&
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   106
                            entry.start_pc == expectedLNT[i][1],
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   107
                            "LNT entry at pos " + i + " differ from expected." +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   108
                            "Found " + entry.line_number + ":" + entry.start_pc +
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   109
                            ". Expected " + expectedLNT[i][0] + ":" + expectedLNT[i][1]);
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   110
                    i++;
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   111
                }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   112
            }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   113
        }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   114
        Assert.check(methodFound, seekMethodNotFoundMsg);
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   115
    }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   116
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   117
    void error(String msg) {
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   118
        throw new AssertionError(msg);
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   119
    }
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   120
846139633c68 6970173: Debug pointer at bad position
vromero
parents:
diff changeset
   121
}