comparison src/share/vm/compiler/compilerOracle.cpp @ 6725:da91efe96a93

6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
author coleenp
date Sat, 01 Sep 2012 13:25:18 -0400
parents 90d5a592ea8f
children 218a94758fe7
comparison
equal deleted inserted replaced
6724:36d1d483d5d6 6725:da91efe96a93
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 = ' ';