Merge
authorewendeli
Sun, 03 Feb 2013 22:43:57 +0100
changeset 15919 15a548ffc099
parent 15423 f407160c280d (current diff)
parent 15918 3fcc894aca8c (diff)
child 15920 b6a92b294176
Merge
hotspot/src/share/vm/interpreter/linkResolver.cpp
hotspot/src/share/vm/opto/loopTransform.cpp
hotspot/src/share/vm/runtime/arguments.cpp
hotspot/src/share/vm/runtime/globals.hpp
--- a/hotspot/src/share/vm/interpreter/linkResolver.cpp	Wed Jul 05 18:39:13 2017 +0200
+++ b/hotspot/src/share/vm/interpreter/linkResolver.cpp	Sun Feb 03 22:43:57 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:39:13 2017 +0200
+++ b/hotspot/src/share/vm/runtime/globals.hpp	Sun Feb 03 22:43:57 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