diff src/share/vm/oops/method.cpp @ 8151:b8f261ba79c6

Minimize diff to plain HotSpot version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:00:29 +0100
parents 5fc51c1ecdeb
children 6c4db417385a
line wrap: on
line diff
--- a/src/share/vm/oops/method.cpp	Thu Mar 07 15:17:51 2013 +0100
+++ b/src/share/vm/oops/method.cpp	Thu Mar 07 21:00:29 2013 +0100
@@ -54,9 +54,6 @@
 #include "runtime/signature.hpp"
 #include "utilities/quickSort.hpp"
 #include "utilities/xmlstream.hpp"
-#ifdef GRAAL
-#include "graal/graalJavaAccess.hpp"
-#endif
 
 
 // Implementation of Method
@@ -712,7 +709,6 @@
     tty->cr();
   }
   if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
-    ResourceMark rm;
     ttyLocker ttyl;
     xtty->begin_elem("make_not_%scompilable thread='" UINTX_FORMAT "'",
                      is_osr ? "osr_" : "", os::current_thread_id());
@@ -1944,16 +1940,3 @@
   guarantee(md == NULL ||
       md->is_methodData(), "should be method data");
 }
-
-#ifdef GRAAL
-void DebugScopedMethod::print_on(outputStream* st) {
-  if (_method != NULL) {
-    st->print("Method@%p", _method);
-    char holder[O_BUFLEN];
-    char nameAndSig[O_BUFLEN];
-    _method->method_holder()->name()->as_C_string(holder, O_BUFLEN);
-    _method->name_and_sig_as_C_string(nameAndSig, O_BUFLEN);
-    st->print(" - %s::%s", holder, nameAndSig);
-  }
-}
-#endif