comparison src/share/vm/ci/ciSignature.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 f95d63e2154a
children 1d1603768966
comparison
equal deleted inserted replaced
2176:27e4ea99855d 2177:3582bf76420e
46 46
47 ciSignature(ciKlass* accessing_klass, ciSymbol* signature); 47 ciSignature(ciKlass* accessing_klass, ciSymbol* signature);
48 48
49 void get_all_klasses(); 49 void get_all_klasses();
50 50
51 symbolOop get_symbolOop() const { return _symbol->get_symbolOop(); } 51 Symbol* get_symbol() const { return _symbol->get_symbol(); }
52 52
53 public: 53 public:
54 ciSymbol* as_symbol() const { return _symbol; } 54 ciSymbol* as_symbol() const { return _symbol; }
55 55
56 ciType* return_type() const; 56 ciType* return_type() const;