comparison src/share/vm/prims/jvmtiTagMap.cpp @ 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 c1a0ede55d6f
children c7f3d0b4570f
comparison
equal deleted inserted replaced
2176:27e4ea99855d 2177:3582bf76420e
2603 kind = JVMTI_HEAP_REFERENCE_OTHER; 2603 kind = JVMTI_HEAP_REFERENCE_OTHER;
2604 } 2604 }
2605 } 2605 }
2606 2606
2607 // some objects are ignored - in the case of simple 2607 // some objects are ignored - in the case of simple
2608 // roots it's mostly symbolOops that we are skipping 2608 // roots it's mostly Symbol*s that we are skipping
2609 // here. 2609 // here.
2610 if (!ServiceUtil::visible_oop(o)) { 2610 if (!ServiceUtil::visible_oop(o)) {
2611 return; 2611 return;
2612 } 2612 }
2613 2613