Merge
authorewendeli
Tue, 19 Feb 2013 21:45:09 +0100
changeset 15920 b6a92b294176
parent 15572 d17eb2e13e36 (current diff)
parent 15919 15a548ffc099 (diff)
child 15921 92ae6d9a60bd
Merge
hotspot/src/share/vm/interpreter/linkResolver.cpp
hotspot/src/share/vm/runtime/arguments.cpp
--- a/hotspot/src/share/vm/interpreter/linkResolver.cpp	Wed Jul 05 18:40:20 2017 +0200
+++ b/hotspot/src/share/vm/interpreter/linkResolver.cpp	Tue Feb 19 21:45:09 2013 +0100
@@ -803,7 +803,7 @@
     if (!direct_calling_default_method &&
         check_access &&
         // a) check if ACC_SUPER flag is set for the current class
-        current_klass->is_super() &&
+        (current_klass->is_super() || !AllowNonVirtualCalls) &&
         // b) check if the method class is a superclass of the current class (superclass relation is not reflexive!)
         current_klass->is_subtype_of(method_klass()) &&
         current_klass() != method_klass() &&
--- a/hotspot/src/share/vm/runtime/globals.hpp	Wed Jul 05 18:40:20 2017 +0200
+++ b/hotspot/src/share/vm/runtime/globals.hpp	Tue Feb 19 21:45:09 2013 +0100
@@ -3634,7 +3634,10 @@
           "Enable internal testing APIs")                                   \
                                                                             \
   product(bool, PrintGCCause, true,                                         \
-          "Include GC cause in GC logging")
+          "Include GC cause in GC logging")                                 \
+                                                                            \
+  product(bool, AllowNonVirtualCalls, false,                                \
+          "Obey the ACC_SUPER flag and allow invokenonvirtual calls")
 
 /*
  *  Macros for factoring of globals