equal
deleted
inserted
replaced
26 #include "compiler/compilerOracle.hpp" |
26 #include "compiler/compilerOracle.hpp" |
27 #include "memory/allocation.inline.hpp" |
27 #include "memory/allocation.inline.hpp" |
28 #include "memory/oopFactory.hpp" |
28 #include "memory/oopFactory.hpp" |
29 #include "memory/resourceArea.hpp" |
29 #include "memory/resourceArea.hpp" |
30 #include "oops/klass.hpp" |
30 #include "oops/klass.hpp" |
31 #include "oops/methodOop.hpp" |
31 #include "oops/method.hpp" |
32 #include "oops/oop.inline.hpp" |
32 #include "oops/oop.inline.hpp" |
33 #include "oops/symbol.hpp" |
33 #include "oops/symbol.hpp" |
34 #include "runtime/handles.inline.hpp" |
34 #include "runtime/handles.inline.hpp" |
35 #include "runtime/jniHandles.hpp" |
35 #include "runtime/jniHandles.hpp" |
36 |
36 |
453 // exclude,java/lang/String.indexOf |
453 // exclude,java/lang/String.indexOf |
454 // For backward compatibility, allow space as separator also. |
454 // For backward compatibility, allow space as separator also. |
455 // exclude java/lang/String indexOf |
455 // exclude java/lang/String indexOf |
456 // exclude,java/lang/String,indexOf |
456 // exclude,java/lang/String,indexOf |
457 // For easy cut-and-paste of method names, allow VM output format |
457 // For easy cut-and-paste of method names, allow VM output format |
458 // as produced by methodOopDesc::print_short_name: |
458 // as produced by Method::print_short_name: |
459 // exclude java.lang.String::indexOf |
459 // exclude java.lang.String::indexOf |
460 // For simple implementation convenience here, convert them all to space. |
460 // For simple implementation convenience here, convert them all to space. |
461 if (have_colon) { |
461 if (have_colon) { |
462 if (*lp == '.') *lp = '/'; // dots build the package prefix |
462 if (*lp == '.') *lp = '/'; // dots build the package prefix |
463 if (*lp == ':') *lp = ' '; |
463 if (*lp == ':') *lp = ' '; |