hotspot/src/share/vm/ci/ciEnv.cpp
changeset 35606 d873b64009cc
parent 35492 c8c0273e6b91
parent 35576 1f1cca67a48e
child 36508 5f9eee6b383b
child 36819 bca375d368ed
--- a/hotspot/src/share/vm/ci/ciEnv.cpp	Tue Jan 26 17:13:18 2016 +0100
+++ b/hotspot/src/share/vm/ci/ciEnv.cpp	Thu Jan 28 09:49:17 2016 +0100
@@ -38,7 +38,6 @@
 #include "code/scopeDesc.hpp"
 #include "compiler/compileBroker.hpp"
 #include "compiler/compileLog.hpp"
-#include "compiler/compilerDirectives.hpp"
 #include "compiler/disassembler.hpp"
 #include "gc/shared/collectedHeap.inline.hpp"
 #include "interpreter/linkResolver.hpp"
@@ -959,7 +958,6 @@
                             AbstractCompiler* compiler,
                             bool has_unsafe_access,
                             bool has_wide_vectors,
-                            DirectiveSet* directives,
                             RTMState  rtm_state) {
   VM_ENTRY_MARK;
   nmethod* nm = NULL;
@@ -1041,14 +1039,6 @@
     code_buffer->free_blob();
 
     if (nm != NULL) {
-      bool printnmethods = directives->PrintAssemblyOption || directives->PrintNMethodsOption;
-      if (printnmethods || PrintDebugInfo || PrintRelocations || PrintDependencies || PrintExceptionHandlers) {
-        nm->print_nmethod(printnmethods);
-      }
-      if (directives->PrintAssemblyOption) {
-        Disassembler::decode(nm);
-      }
-
       nm->set_has_unsafe_access(has_unsafe_access);
       nm->set_has_wide_vectors(has_wide_vectors);
 #if INCLUDE_RTM_OPT