comparison src/share/vm/classfile/classLoader.hpp @ 2177:3582bf76420e

6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
author coleenp
date Thu, 27 Jan 2011 16:11:27 -0800
parents 75efcee5ac47
children 1d1603768966
comparison
equal deleted inserted replaced
2176:27e4ea99855d 2177:3582bf76420e
278 static PerfCounter* load_instance_class_failCounter() { 278 static PerfCounter* load_instance_class_failCounter() {
279 return _load_instance_class_failCounter; 279 return _load_instance_class_failCounter;
280 } 280 }
281 281
282 // Load individual .class file 282 // Load individual .class file
283 static instanceKlassHandle load_classfile(symbolHandle h_name, TRAPS); 283 static instanceKlassHandle load_classfile(Symbol* h_name, TRAPS);
284 284
285 // If the specified package has been loaded by the system, then returns 285 // If the specified package has been loaded by the system, then returns
286 // the name of the directory or ZIP file that the package was loaded from. 286 // the name of the directory or ZIP file that the package was loaded from.
287 // Returns null if the package was not loaded. 287 // Returns null if the package was not loaded.
288 // Note: The specified name can either be the name of a class or package. 288 // Note: The specified name can either be the name of a class or package.