8216977: ShowHiddenFrames use in java_lang_StackTraceElement::fill_in appears broken
authorcoleenp
Thu, 29 Aug 2019 08:52:22 -0400
changeset 57938 8ec5ad4f5cc3
parent 57933 c16208de74da
child 57939 e8ba7e4f4190
8216977: ShowHiddenFrames use in java_lang_StackTraceElement::fill_in appears broken Summary: Return NULL source file and negative line number for hidden frames. Reviewed-by: dholmes, hseigel
src/hotspot/share/classfile/javaClasses.cpp
src/hotspot/share/classfile/javaClasses.inline.hpp
test/hotspot/jtreg/runtime/StackTrace/HiddenFrameTest.java
--- a/src/hotspot/share/classfile/javaClasses.cpp	Thu Aug 29 15:09:48 2019 +0530
+++ b/src/hotspot/share/classfile/javaClasses.cpp	Thu Aug 29 08:52:22 2019 -0400
@@ -2594,10 +2594,6 @@
         source_file = NULL;
         java_lang_Class::set_source_file(java_class(), source_file);
       }
-      if (ShowHiddenFrames) {
-        source = vmSymbols::unknown_class_name();
-        source_file = StringTable::intern(source, CHECK);
-      }
     }
     java_lang_StackTraceElement::set_fileName(element(), source_file);
 
@@ -2635,11 +2631,7 @@
     // via the previous versions list.
     holder = holder->get_klass_version(version);
     assert(holder != NULL, "sanity check");
-    Symbol* source = holder->source_file_name();
-    if (ShowHiddenFrames && source == NULL) {
-      source = vmSymbols::unknown_class_name();
-    }
-    filename = source;
+    filename = holder->source_file_name();
     line_number = Backtrace::get_line_number(method, bci);
   }
 }
--- a/src/hotspot/share/classfile/javaClasses.inline.hpp	Thu Aug 29 15:09:48 2019 +0530
+++ b/src/hotspot/share/classfile/javaClasses.inline.hpp	Thu Aug 29 08:52:22 2019 -0400
@@ -274,9 +274,6 @@
   } else {
     // Returns -1 if no LineNumberTable, and otherwise actual line number
     line_number = method->line_number_from_bci(bci);
-    if (line_number == -1 && ShowHiddenFrames) {
-      line_number = bci + 1000000;
-    }
   }
   return line_number;
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/hotspot/jtreg/runtime/StackTrace/HiddenFrameTest.java	Thu Aug 29 08:52:22 2019 -0400
@@ -0,0 +1,80 @@
+/*
+ * Copyright (c) 2019, 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 8216977
+ * @summary Test null source file and negative line number from hidden frame produces correct output.
+ * @library /test/lib
+ * @run main/othervm -XX:+ShowHiddenFrames HiddenFrameTest visible
+ * @run main/othervm -XX:-ShowHiddenFrames HiddenFrameTest hidden
+ */
+
+import jdk.test.lib.Asserts;
+
+public class HiddenFrameTest {
+
+    @FunctionalInterface
+    private static interface SomeFunctionalInterface {
+        String someMethod(String a, String b);
+    }
+
+    static void assertContains(String expected, String actual, Exception e, boolean framesAreHidden) throws Exception {
+        if (!framesAreHidden && !actual.contains(expected)) {
+            throw new RuntimeException("Expected: " + expected + "; Actual: " + actual, e);
+        } else if (framesAreHidden && actual.contains(expected)) {
+            throw new RuntimeException("Unexpected: " + expected + "; Actual: " + actual, e);
+        }
+    }
+
+    static void checkException(Exception e, boolean framesAreHidden) throws Exception {
+        StackTraceElement[] fs = e.getStackTrace();
+
+        if (fs.length < 2) {
+            throw new RuntimeException("Exception should have at least two frames", e);
+        }
+
+        assertContains("someMethod(Unknown Source)", fs[0].toString(), e, framesAreHidden);
+    }
+
+    public static void main(String[] args) throws Exception {
+        boolean framesAreHidden = false;
+        if (args.length > 0) {
+            String arg = args[0];
+            if (arg.equals("hidden")) framesAreHidden = true;
+        }
+
+        try {
+            final SomeFunctionalInterface concatter = String::concat;
+            final String nullString = null;
+            if (concatter != null) {
+                // This throws NPE from the lambda expression which is a hidden frame
+                concatter.someMethod(nullString, "validString");
+            }
+        } catch (NullPointerException e) {
+            e.printStackTrace();
+            checkException(e, framesAreHidden);
+        }
+    }
+}
+