src/share/vm/runtime/stubCodeGenerator.cpp

Fri, 22 Oct 2010 15:59:34 -0400

author
acorn
date
Fri, 22 Oct 2010 15:59:34 -0400
changeset 2233
fa83ab460c54
parent 2036
126ea7725993
child 2314
f95d63e2154a
permissions
-rw-r--r--

6988353: refactor contended sync subsystem
Summary: reduce complexity by factoring synchronizer.cpp
Reviewed-by: dholmes, never, coleenp

     1 /*
     2  * Copyright (c) 1997, 2010, 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 "incls/_precompiled.incl"
    26 #include "incls/_stubCodeGenerator.cpp.incl"
    29 // Implementation of StubCodeDesc
    31 StubCodeDesc* StubCodeDesc::_list = NULL;
    32 int           StubCodeDesc::_count = 0;
    35 StubCodeDesc* StubCodeDesc::desc_for(address pc) {
    36   StubCodeDesc* p = _list;
    37   while (p != NULL && !p->contains(pc)) p = p->_next;
    38   // p == NULL || p->contains(pc)
    39   return p;
    40 }
    43 StubCodeDesc* StubCodeDesc::desc_for_index(int index) {
    44   StubCodeDesc* p = _list;
    45   while (p != NULL && p->index() != index) p = p->_next;
    46   return p;
    47 }
    50 const char* StubCodeDesc::name_for(address pc) {
    51   StubCodeDesc* p = desc_for(pc);
    52   return p == NULL ? NULL : p->name();
    53 }
    56 void StubCodeDesc::print_on(outputStream* st) const {
    57   st->print(group());
    58   st->print("::");
    59   st->print(name());
    60   st->print(" [" INTPTR_FORMAT ", " INTPTR_FORMAT "[ (%d bytes)", begin(), end(), size_in_bytes());
    61 }
    63 // Implementation of StubCodeGenerator
    65 StubCodeGenerator::StubCodeGenerator(CodeBuffer* code) {
    66   _masm = new MacroAssembler(code);
    67   _first_stub = _last_stub = NULL;
    68 }
    70 extern "C" {
    71   static int compare_cdesc(const void* void_a, const void* void_b) {
    72     int ai = (*((StubCodeDesc**) void_a))->index();
    73     int bi = (*((StubCodeDesc**) void_b))->index();
    74     return ai - bi;
    75   }
    76 }
    78 StubCodeGenerator::~StubCodeGenerator() {
    79   if (PrintStubCode) {
    80     CodeBuffer* cbuf = _masm->code();
    81     CodeBlob*   blob = CodeCache::find_blob_unsafe(cbuf->insts()->start());
    82     if (blob != NULL) {
    83       blob->set_comments(cbuf->comments());
    84     }
    85     bool saw_first = false;
    86     StubCodeDesc* toprint[1000];
    87     int toprint_len = 0;
    88     for (StubCodeDesc* cdesc = _last_stub; cdesc != NULL; cdesc = cdesc->_next) {
    89       toprint[toprint_len++] = cdesc;
    90       if (cdesc == _first_stub) { saw_first = true; break; }
    91     }
    92     assert(saw_first, "must get both first & last");
    93     // Print in reverse order:
    94     qsort(toprint, toprint_len, sizeof(toprint[0]), compare_cdesc);
    95     for (int i = 0; i < toprint_len; i++) {
    96       StubCodeDesc* cdesc = toprint[i];
    97       cdesc->print();
    98       tty->cr();
    99       Disassembler::decode(cdesc->begin(), cdesc->end());
   100       tty->cr();
   101     }
   102   }
   103 }
   106 void StubCodeGenerator::stub_prolog(StubCodeDesc* cdesc) {
   107   // default implementation - do nothing
   108 }
   111 void StubCodeGenerator::stub_epilog(StubCodeDesc* cdesc) {
   112   // default implementation - record the cdesc
   113   if (_first_stub == NULL)  _first_stub = cdesc;
   114   _last_stub = cdesc;
   115 }
   118 // Implementation of CodeMark
   120 StubCodeMark::StubCodeMark(StubCodeGenerator* cgen, const char* group, const char* name) {
   121   _cgen  = cgen;
   122   _cdesc = new StubCodeDesc(group, name, _cgen->assembler()->pc());
   123   _cgen->stub_prolog(_cdesc);
   124   // define the stub's beginning (= entry point) to be after the prolog:
   125   _cdesc->set_begin(_cgen->assembler()->pc());
   126 }
   128 StubCodeMark::~StubCodeMark() {
   129   _cgen->assembler()->flush();
   130   _cdesc->set_end(_cgen->assembler()->pc());
   131   assert(StubCodeDesc::_list == _cdesc, "expected order on list");
   132   _cgen->stub_epilog(_cdesc);
   133   Forte::register_stub(_cdesc->name(), _cdesc->begin(), _cdesc->end());
   135   if (JvmtiExport::should_post_dynamic_code_generated()) {
   136     JvmtiExport::post_dynamic_code_generated(_cdesc->name(), _cdesc->begin(), _cdesc->end());
   137   }
   138 }

mercurial