src/share/vm/c1/c1_Compilation.cpp

Thu, 21 Mar 2013 09:27:54 +0100

author
roland
date
Thu, 21 Mar 2013 09:27:54 +0100
changeset 4860
46f6f063b272
parent 4320
c5d414e98fd4
child 5630
e47de6dfec5d
permissions
-rw-r--r--

7153771: array bound check elimination for c1
Summary: when possible optimize out array bound checks, inserting predicates when needed.
Reviewed-by: never, kvn, twisti
Contributed-by: thomaswue <thomas.wuerthinger@oracle.com>

     1 /*
     2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "c1/c1_CFGPrinter.hpp"
    27 #include "c1/c1_Compilation.hpp"
    28 #include "c1/c1_IR.hpp"
    29 #include "c1/c1_LIRAssembler.hpp"
    30 #include "c1/c1_LinearScan.hpp"
    31 #include "c1/c1_MacroAssembler.hpp"
    32 #include "c1/c1_ValueMap.hpp"
    33 #include "c1/c1_ValueStack.hpp"
    34 #include "code/debugInfoRec.hpp"
    35 #include "compiler/compileLog.hpp"
    36 #include "c1/c1_RangeCheckElimination.hpp"
    39 typedef enum {
    40   _t_compile,
    41   _t_setup,
    42   _t_buildIR,
    43   _t_optimize_blocks,
    44   _t_optimize_null_checks,
    45   _t_rangeCheckElimination,
    46   _t_emit_lir,
    47   _t_linearScan,
    48   _t_lirGeneration,
    49   _t_lir_schedule,
    50   _t_codeemit,
    51   _t_codeinstall,
    52   max_phase_timers
    53 } TimerName;
    55 static const char * timer_name[] = {
    56   "compile",
    57   "setup",
    58   "buildIR",
    59   "optimize_blocks",
    60   "optimize_null_checks",
    61   "rangeCheckElimination",
    62   "emit_lir",
    63   "linearScan",
    64   "lirGeneration",
    65   "lir_schedule",
    66   "codeemit",
    67   "codeinstall"
    68 };
    70 static elapsedTimer timers[max_phase_timers];
    71 static int totalInstructionNodes = 0;
    73 class PhaseTraceTime: public TraceTime {
    74  private:
    75   JavaThread* _thread;
    76   CompileLog* _log;
    78  public:
    79   PhaseTraceTime(TimerName timer)
    80   : TraceTime("", &timers[timer], CITime || CITimeEach, Verbose), _log(NULL) {
    81     if (Compilation::current() != NULL) {
    82       _log = Compilation::current()->log();
    83     }
    85     if (_log != NULL) {
    86       _log->begin_head("phase name='%s'", timer_name[timer]);
    87       _log->stamp();
    88       _log->end_head();
    89     }
    90   }
    92   ~PhaseTraceTime() {
    93     if (_log != NULL)
    94       _log->done("phase");
    95   }
    96 };
    98 // Implementation of Compilation
   101 #ifndef PRODUCT
   103 void Compilation::maybe_print_current_instruction() {
   104   if (_current_instruction != NULL && _last_instruction_printed != _current_instruction) {
   105     _last_instruction_printed = _current_instruction;
   106     _current_instruction->print_line();
   107   }
   108 }
   109 #endif // PRODUCT
   112 DebugInformationRecorder* Compilation::debug_info_recorder() const {
   113   return _env->debug_info();
   114 }
   117 Dependencies* Compilation::dependency_recorder() const {
   118   return _env->dependencies();
   119 }
   122 void Compilation::initialize() {
   123   // Use an oop recorder bound to the CI environment.
   124   // (The default oop recorder is ignorant of the CI.)
   125   OopRecorder* ooprec = new OopRecorder(_env->arena());
   126   _env->set_oop_recorder(ooprec);
   127   _env->set_debug_info(new DebugInformationRecorder(ooprec));
   128   debug_info_recorder()->set_oopmaps(new OopMapSet());
   129   _env->set_dependencies(new Dependencies(_env));
   130 }
   133 void Compilation::build_hir() {
   134   CHECK_BAILOUT();
   136   // setup ir
   137   CompileLog* log = this->log();
   138   if (log != NULL) {
   139     log->begin_head("parse method='%d' ",
   140                     log->identify(_method));
   141     log->stamp();
   142     log->end_head();
   143   }
   144   _hir = new IR(this, method(), osr_bci());
   145   if (log)  log->done("parse");
   146   if (!_hir->is_valid()) {
   147     bailout("invalid parsing");
   148     return;
   149   }
   151 #ifndef PRODUCT
   152   if (PrintCFGToFile) {
   153     CFGPrinter::print_cfg(_hir, "After Generation of HIR", true, false);
   154   }
   155 #endif
   157 #ifndef PRODUCT
   158   if (PrintCFG || PrintCFG0) { tty->print_cr("CFG after parsing"); _hir->print(true); }
   159   if (PrintIR  || PrintIR0 ) { tty->print_cr("IR after parsing"); _hir->print(false); }
   160 #endif
   162   _hir->verify();
   164   if (UseC1Optimizations) {
   165     NEEDS_CLEANUP
   166     // optimization
   167     PhaseTraceTime timeit(_t_optimize_blocks);
   169     _hir->optimize_blocks();
   170   }
   172   _hir->verify();
   174   _hir->split_critical_edges();
   176 #ifndef PRODUCT
   177   if (PrintCFG || PrintCFG1) { tty->print_cr("CFG after optimizations"); _hir->print(true); }
   178   if (PrintIR  || PrintIR1 ) { tty->print_cr("IR after optimizations"); _hir->print(false); }
   179 #endif
   181   _hir->verify();
   183   // compute block ordering for code generation
   184   // the control flow must not be changed from here on
   185   _hir->compute_code();
   187   if (UseGlobalValueNumbering) {
   188     // No resource mark here! LoopInvariantCodeMotion can allocate ValueStack objects.
   189     int instructions = Instruction::number_of_instructions();
   190     GlobalValueNumbering gvn(_hir);
   191     assert(instructions == Instruction::number_of_instructions(),
   192            "shouldn't have created an instructions");
   193   }
   195   _hir->verify();
   197 #ifndef PRODUCT
   198   if (PrintCFGToFile) {
   199     CFGPrinter::print_cfg(_hir, "Before RangeCheckElimination", true, false);
   200   }
   201 #endif
   203   if (RangeCheckElimination) {
   204     if (_hir->osr_entry() == NULL) {
   205       PhaseTraceTime timeit(_t_rangeCheckElimination);
   206       RangeCheckElimination::eliminate(_hir);
   207     }
   208   }
   210 #ifndef PRODUCT
   211   if (PrintCFGToFile) {
   212     CFGPrinter::print_cfg(_hir, "After RangeCheckElimination", true, false);
   213   }
   214 #endif
   216   if (UseC1Optimizations) {
   217     // loop invariant code motion reorders instructions and range
   218     // check elimination adds new instructions so do null check
   219     // elimination after.
   220     NEEDS_CLEANUP
   221     // optimization
   222     PhaseTraceTime timeit(_t_optimize_null_checks);
   224     _hir->eliminate_null_checks();
   225   }
   227   _hir->verify();
   229   // compute use counts after global value numbering
   230   _hir->compute_use_counts();
   232 #ifndef PRODUCT
   233   if (PrintCFG || PrintCFG2) { tty->print_cr("CFG before code generation"); _hir->code()->print(true); }
   234   if (PrintIR  || PrintIR2 ) { tty->print_cr("IR before code generation"); _hir->code()->print(false, true); }
   235 #endif
   237   _hir->verify();
   238 }
   241 void Compilation::emit_lir() {
   242   CHECK_BAILOUT();
   244   LIRGenerator gen(this, method());
   245   {
   246     PhaseTraceTime timeit(_t_lirGeneration);
   247     hir()->iterate_linear_scan_order(&gen);
   248   }
   250   CHECK_BAILOUT();
   252   {
   253     PhaseTraceTime timeit(_t_linearScan);
   255     LinearScan* allocator = new LinearScan(hir(), &gen, frame_map());
   256     set_allocator(allocator);
   257     // Assign physical registers to LIR operands using a linear scan algorithm.
   258     allocator->do_linear_scan();
   259     CHECK_BAILOUT();
   261     _max_spills = allocator->max_spills();
   262   }
   264   if (BailoutAfterLIR) {
   265     if (PrintLIR && !bailed_out()) {
   266       print_LIR(hir()->code());
   267     }
   268     bailout("Bailing out because of -XX:+BailoutAfterLIR");
   269   }
   270 }
   273 void Compilation::emit_code_epilog(LIR_Assembler* assembler) {
   274   CHECK_BAILOUT();
   276   CodeOffsets* code_offsets = assembler->offsets();
   278   // generate code or slow cases
   279   assembler->emit_slow_case_stubs();
   280   CHECK_BAILOUT();
   282   // generate exception adapters
   283   assembler->emit_exception_entries(exception_info_list());
   284   CHECK_BAILOUT();
   286   // Generate code for exception handler.
   287   code_offsets->set_value(CodeOffsets::Exceptions, assembler->emit_exception_handler());
   288   CHECK_BAILOUT();
   290   // Generate code for deopt handler.
   291   code_offsets->set_value(CodeOffsets::Deopt, assembler->emit_deopt_handler());
   292   CHECK_BAILOUT();
   294   // Emit the MethodHandle deopt handler code (if required).
   295   if (has_method_handle_invokes()) {
   296     // We can use the same code as for the normal deopt handler, we
   297     // just need a different entry point address.
   298     code_offsets->set_value(CodeOffsets::DeoptMH, assembler->emit_deopt_handler());
   299     CHECK_BAILOUT();
   300   }
   302   // Emit the handler to remove the activation from the stack and
   303   // dispatch to the caller.
   304   offsets()->set_value(CodeOffsets::UnwindHandler, assembler->emit_unwind_handler());
   306   // done
   307   masm()->flush();
   308 }
   311 bool Compilation::setup_code_buffer(CodeBuffer* code, int call_stub_estimate) {
   312   // Preinitialize the consts section to some large size:
   313   int locs_buffer_size = 20 * (relocInfo::length_limit + sizeof(relocInfo));
   314   char* locs_buffer = NEW_RESOURCE_ARRAY(char, locs_buffer_size);
   315   code->insts()->initialize_shared_locs((relocInfo*)locs_buffer,
   316                                         locs_buffer_size / sizeof(relocInfo));
   317   code->initialize_consts_size(Compilation::desired_max_constant_size());
   318   // Call stubs + two deopt handlers (regular and MH) + exception handler
   319   int stub_size = (call_stub_estimate * LIR_Assembler::call_stub_size) +
   320                    LIR_Assembler::exception_handler_size +
   321                    (2 * LIR_Assembler::deopt_handler_size);
   322   if (stub_size >= code->insts_capacity()) return false;
   323   code->initialize_stubs_size(stub_size);
   324   return true;
   325 }
   328 int Compilation::emit_code_body() {
   329   // emit code
   330   if (!setup_code_buffer(code(), allocator()->num_calls())) {
   331     BAILOUT_("size requested greater than avail code buffer size", 0);
   332   }
   333   code()->initialize_oop_recorder(env()->oop_recorder());
   335   _masm = new C1_MacroAssembler(code());
   336   _masm->set_oop_recorder(env()->oop_recorder());
   338   LIR_Assembler lir_asm(this);
   340   lir_asm.emit_code(hir()->code());
   341   CHECK_BAILOUT_(0);
   343   emit_code_epilog(&lir_asm);
   344   CHECK_BAILOUT_(0);
   346   generate_exception_handler_table();
   348 #ifndef PRODUCT
   349   if (PrintExceptionHandlers && Verbose) {
   350     exception_handler_table()->print();
   351   }
   352 #endif /* PRODUCT */
   354   return frame_map()->framesize();
   355 }
   358 int Compilation::compile_java_method() {
   359   assert(!method()->is_native(), "should not reach here");
   361   if (BailoutOnExceptionHandlers) {
   362     if (method()->has_exception_handlers()) {
   363       bailout("linear scan can't handle exception handlers");
   364     }
   365   }
   367   CHECK_BAILOUT_(no_frame_size);
   369   if (is_profiling() && !method()->ensure_method_data()) {
   370     BAILOUT_("mdo allocation failed", no_frame_size);
   371   }
   373   {
   374     PhaseTraceTime timeit(_t_buildIR);
   375     build_hir();
   376   }
   377   if (BailoutAfterHIR) {
   378     BAILOUT_("Bailing out because of -XX:+BailoutAfterHIR", no_frame_size);
   379   }
   382   {
   383     PhaseTraceTime timeit(_t_emit_lir);
   385     _frame_map = new FrameMap(method(), hir()->number_of_locks(), MAX2(4, hir()->max_stack()));
   386     emit_lir();
   387   }
   388   CHECK_BAILOUT_(no_frame_size);
   390   {
   391     PhaseTraceTime timeit(_t_codeemit);
   392     return emit_code_body();
   393   }
   394 }
   396 void Compilation::install_code(int frame_size) {
   397   // frame_size is in 32-bit words so adjust it intptr_t words
   398   assert(frame_size == frame_map()->framesize(), "must match");
   399   assert(in_bytes(frame_map()->framesize_in_bytes()) % sizeof(intptr_t) == 0, "must be at least pointer aligned");
   400   _env->register_method(
   401     method(),
   402     osr_bci(),
   403     &_offsets,
   404     in_bytes(_frame_map->sp_offset_for_orig_pc()),
   405     code(),
   406     in_bytes(frame_map()->framesize_in_bytes()) / sizeof(intptr_t),
   407     debug_info_recorder()->_oopmaps,
   408     exception_handler_table(),
   409     implicit_exception_table(),
   410     compiler(),
   411     _env->comp_level(),
   412     has_unsafe_access(),
   413     SharedRuntime::is_wide_vector(max_vector_size())
   414   );
   415 }
   418 void Compilation::compile_method() {
   419   // setup compilation
   420   initialize();
   422   if (!method()->can_be_compiled()) {
   423     // Prevent race condition 6328518.
   424     // This can happen if the method is obsolete or breakpointed.
   425     bailout("Bailing out because method is not compilable");
   426     return;
   427   }
   429   if (_env->jvmti_can_hotswap_or_post_breakpoint()) {
   430     // We can assert evol_method because method->can_be_compiled is true.
   431     dependency_recorder()->assert_evol_method(method());
   432   }
   434   if (method()->break_at_execute()) {
   435     BREAKPOINT;
   436   }
   438 #ifndef PRODUCT
   439   if (PrintCFGToFile) {
   440     CFGPrinter::print_compilation(this);
   441   }
   442 #endif
   444   // compile method
   445   int frame_size = compile_java_method();
   447   // bailout if method couldn't be compiled
   448   // Note: make sure we mark the method as not compilable!
   449   CHECK_BAILOUT();
   451   if (InstallMethods) {
   452     // install code
   453     PhaseTraceTime timeit(_t_codeinstall);
   454     install_code(frame_size);
   455   }
   457   if (log() != NULL) // Print code cache state into compiler log
   458     log()->code_cache_state();
   460   totalInstructionNodes += Instruction::number_of_instructions();
   461 }
   464 void Compilation::generate_exception_handler_table() {
   465   // Generate an ExceptionHandlerTable from the exception handler
   466   // information accumulated during the compilation.
   467   ExceptionInfoList* info_list = exception_info_list();
   469   if (info_list->length() == 0) {
   470     return;
   471   }
   473   // allocate some arrays for use by the collection code.
   474   const int num_handlers = 5;
   475   GrowableArray<intptr_t>* bcis = new GrowableArray<intptr_t>(num_handlers);
   476   GrowableArray<intptr_t>* scope_depths = new GrowableArray<intptr_t>(num_handlers);
   477   GrowableArray<intptr_t>* pcos = new GrowableArray<intptr_t>(num_handlers);
   479   for (int i = 0; i < info_list->length(); i++) {
   480     ExceptionInfo* info = info_list->at(i);
   481     XHandlers* handlers = info->exception_handlers();
   483     // empty the arrays
   484     bcis->trunc_to(0);
   485     scope_depths->trunc_to(0);
   486     pcos->trunc_to(0);
   488     for (int i = 0; i < handlers->length(); i++) {
   489       XHandler* handler = handlers->handler_at(i);
   490       assert(handler->entry_pco() != -1, "must have been generated");
   492       int e = bcis->find(handler->handler_bci());
   493       if (e >= 0 && scope_depths->at(e) == handler->scope_count()) {
   494         // two different handlers are declared to dispatch to the same
   495         // catch bci.  During parsing we created edges for each
   496         // handler but we really only need one.  The exception handler
   497         // table will also get unhappy if we try to declare both since
   498         // it's nonsensical.  Just skip this handler.
   499         continue;
   500       }
   502       bcis->append(handler->handler_bci());
   503       if (handler->handler_bci() == -1) {
   504         // insert a wildcard handler at scope depth 0 so that the
   505         // exception lookup logic with find it.
   506         scope_depths->append(0);
   507       } else {
   508         scope_depths->append(handler->scope_count());
   509     }
   510       pcos->append(handler->entry_pco());
   512       // stop processing once we hit a catch any
   513       if (handler->is_catch_all()) {
   514         assert(i == handlers->length() - 1, "catch all must be last handler");
   515   }
   516     }
   517     exception_handler_table()->add_subtable(info->pco(), bcis, scope_depths, pcos);
   518   }
   519 }
   522 Compilation::Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method,
   523                          int osr_bci, BufferBlob* buffer_blob)
   524 : _compiler(compiler)
   525 , _env(env)
   526 , _log(env->log())
   527 , _method(method)
   528 , _osr_bci(osr_bci)
   529 , _hir(NULL)
   530 , _max_spills(-1)
   531 , _frame_map(NULL)
   532 , _masm(NULL)
   533 , _has_exception_handlers(false)
   534 , _has_fpu_code(true)   // pessimistic assumption
   535 , _would_profile(false)
   536 , _has_unsafe_access(false)
   537 , _has_method_handle_invokes(false)
   538 , _bailout_msg(NULL)
   539 , _exception_info_list(NULL)
   540 , _allocator(NULL)
   541 , _next_id(0)
   542 , _next_block_id(0)
   543 , _code(buffer_blob)
   544 , _has_access_indexed(false)
   545 , _current_instruction(NULL)
   546 #ifndef PRODUCT
   547 , _last_instruction_printed(NULL)
   548 #endif // PRODUCT
   549 {
   550   PhaseTraceTime timeit(_t_compile);
   551   _arena = Thread::current()->resource_area();
   552   _env->set_compiler_data(this);
   553   _exception_info_list = new ExceptionInfoList();
   554   _implicit_exception_table.set_size(0);
   555   compile_method();
   556   if (bailed_out()) {
   557     _env->record_method_not_compilable(bailout_msg(), !TieredCompilation);
   558     if (is_profiling()) {
   559       // Compilation failed, create MDO, which would signal the interpreter
   560       // to start profiling on its own.
   561       _method->ensure_method_data();
   562     }
   563   } else if (is_profiling()) {
   564     ciMethodData *md = method->method_data_or_null();
   565     if (md != NULL) {
   566       md->set_would_profile(_would_profile);
   567     }
   568   }
   569 }
   571 Compilation::~Compilation() {
   572   _env->set_compiler_data(NULL);
   573 }
   576 void Compilation::add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers) {
   577 #ifndef PRODUCT
   578   if (PrintExceptionHandlers && Verbose) {
   579     tty->print_cr("  added exception scope for pco %d", pco);
   580   }
   581 #endif
   582   // Note: we do not have program counters for these exception handlers yet
   583   exception_info_list()->push(new ExceptionInfo(pco, exception_handlers));
   584 }
   587 void Compilation::notice_inlined_method(ciMethod* method) {
   588   _env->notice_inlined_method(method);
   589 }
   592 void Compilation::bailout(const char* msg) {
   593   assert(msg != NULL, "bailout message must exist");
   594   if (!bailed_out()) {
   595     // keep first bailout message
   596     if (PrintCompilation || PrintBailouts) tty->print_cr("compilation bailout: %s", msg);
   597     _bailout_msg = msg;
   598   }
   599 }
   602 void Compilation::print_timers() {
   603   // tty->print_cr("    Native methods         : %6.3f s, Average : %2.3f", CompileBroker::_t_native_compilation.seconds(), CompileBroker::_t_native_compilation.seconds() / CompileBroker::_total_native_compile_count);
   604   float total = timers[_t_setup].seconds() + timers[_t_buildIR].seconds() + timers[_t_emit_lir].seconds() + timers[_t_lir_schedule].seconds() + timers[_t_codeemit].seconds() + timers[_t_codeinstall].seconds();
   607   tty->print_cr("    Detailed C1 Timings");
   608   tty->print_cr("       Setup time:        %6.3f s (%4.1f%%)",    timers[_t_setup].seconds(),           (timers[_t_setup].seconds() / total) * 100.0);
   609   tty->print_cr("       Build IR:          %6.3f s (%4.1f%%)",    timers[_t_buildIR].seconds(),         (timers[_t_buildIR].seconds() / total) * 100.0);
   610   float t_optimizeIR = timers[_t_optimize_blocks].seconds() + timers[_t_optimize_null_checks].seconds();
   611   tty->print_cr("         Optimize:           %6.3f s (%4.1f%%)", t_optimizeIR,                         (t_optimizeIR / total) * 100.0);
   612   tty->print_cr("         RCE:                %6.3f s (%4.1f%%)", timers[_t_rangeCheckElimination].seconds(),      (timers[_t_rangeCheckElimination].seconds() / total) * 100.0);
   613   tty->print_cr("       Emit LIR:          %6.3f s (%4.1f%%)",    timers[_t_emit_lir].seconds(),        (timers[_t_emit_lir].seconds() / total) * 100.0);
   614   tty->print_cr("         LIR Gen:          %6.3f s (%4.1f%%)",   timers[_t_lirGeneration].seconds(), (timers[_t_lirGeneration].seconds() / total) * 100.0);
   615   tty->print_cr("         Linear Scan:      %6.3f s (%4.1f%%)",   timers[_t_linearScan].seconds(),    (timers[_t_linearScan].seconds() / total) * 100.0);
   616   NOT_PRODUCT(LinearScan::print_timers(timers[_t_linearScan].seconds()));
   617   tty->print_cr("       LIR Schedule:      %6.3f s (%4.1f%%)",    timers[_t_lir_schedule].seconds(),  (timers[_t_lir_schedule].seconds() / total) * 100.0);
   618   tty->print_cr("       Code Emission:     %6.3f s (%4.1f%%)",    timers[_t_codeemit].seconds(),        (timers[_t_codeemit].seconds() / total) * 100.0);
   619   tty->print_cr("       Code Installation: %6.3f s (%4.1f%%)",    timers[_t_codeinstall].seconds(),     (timers[_t_codeinstall].seconds() / total) * 100.0);
   620   tty->print_cr("       Instruction Nodes: %6d nodes",    totalInstructionNodes);
   622   NOT_PRODUCT(LinearScan::print_statistics());
   623 }
   626 #ifndef PRODUCT
   627 void Compilation::compile_only_this_method() {
   628   ResourceMark rm;
   629   fileStream stream(fopen("c1_compile_only", "wt"));
   630   stream.print_cr("# c1 compile only directives");
   631   compile_only_this_scope(&stream, hir()->top_scope());
   632 }
   635 void Compilation::compile_only_this_scope(outputStream* st, IRScope* scope) {
   636   st->print("CompileOnly=");
   637   scope->method()->holder()->name()->print_symbol_on(st);
   638   st->print(".");
   639   scope->method()->name()->print_symbol_on(st);
   640   st->cr();
   641 }
   644 void Compilation::exclude_this_method() {
   645   fileStream stream(fopen(".hotspot_compiler", "at"));
   646   stream.print("exclude ");
   647   method()->holder()->name()->print_symbol_on(&stream);
   648   stream.print(" ");
   649   method()->name()->print_symbol_on(&stream);
   650   stream.cr();
   651   stream.cr();
   652 }
   653 #endif

mercurial