changeset 8703:b5cb079ecaa4

Merge
author ewendeli
date Sun, 03 Feb 2013 22:43:57 +0100
parents 20b605466ccb (current diff) 77443715ec55 (diff)
children 1cabf9c80e84
files src/share/vm/interpreter/linkResolver.cpp src/share/vm/opto/loopTransform.cpp src/share/vm/runtime/arguments.cpp src/share/vm/runtime/globals.hpp
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/interpreter/linkResolver.cpp	Thu Jan 31 17:04:28 2013 -0800
+++ b/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/src/share/vm/runtime/globals.hpp	Thu Jan 31 17:04:28 2013 -0800
+++ b/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