src/share/vm/runtime/fprofiler.cpp

changeset 2497
3582bf76420e
parent 2314
f95d63e2154a
child 2708
1d1603768966
     1.1 --- a/src/share/vm/runtime/fprofiler.cpp	Thu Jan 27 13:42:28 2011 -0800
     1.2 +++ b/src/share/vm/runtime/fprofiler.cpp	Thu Jan 27 16:11:27 2011 -0800
     1.3 @@ -31,7 +31,7 @@
     1.4  #include "memory/universe.inline.hpp"
     1.5  #include "oops/oop.inline.hpp"
     1.6  #include "oops/oop.inline2.hpp"
     1.7 -#include "oops/symbolOop.hpp"
     1.8 +#include "oops/symbol.hpp"
     1.9  #include "runtime/deoptimization.hpp"
    1.10  #include "runtime/fprofiler.hpp"
    1.11  #include "runtime/mutexLocker.hpp"
    1.12 @@ -318,7 +318,7 @@
    1.13      int limit;
    1.14      int i;
    1.15      methodOop m = method();
    1.16 -    symbolOop k = m->klass_name();
    1.17 +    Symbol* k = m->klass_name();
    1.18      // Print the class name with dots instead of slashes
    1.19      limit = k->utf8_length();
    1.20      for (i = 0 ; i < limit ; i += 1) {
    1.21 @@ -331,7 +331,7 @@
    1.22      if (limit > 0) {
    1.23        st->print(".");
    1.24      }
    1.25 -    symbolOop n = m->name();
    1.26 +    Symbol* n = m->name();
    1.27      limit = n->utf8_length();
    1.28      for (i = 0 ; i < limit ; i += 1) {
    1.29        char c = (char) n->byte_at(i);
    1.30 @@ -339,7 +339,7 @@
    1.31      }
    1.32      if( Verbose ) {
    1.33        // Disambiguate overloaded methods
    1.34 -      symbolOop sig = m->signature();
    1.35 +      Symbol* sig = m->signature();
    1.36        sig->print_symbol_on(st);
    1.37      }
    1.38    }

mercurial