// ciSymbol // // This class represents a Symbol* in the HotSpot virtual // machine. class ciSymbol : public ciBaseObject {
Symbol* _symbol;
CI_PACKAGE_ACCESS // These friends all make direct use of get_symbol:
friend class ciEnv;
friend class ciInstanceKlass;
friend class ciSignature;
friend class ciMethod;
friend class ciField;
friend class ciObjArrayKlass;
private: const vmSymbolID _sid;
ciSymbol(Symbol* s, vmSymbolID sid);
DEBUG_ONLY(bool sid_ok();)
const char* type_string() { return"ciSymbol"; }
void print_impl(outputStream* st);
// This is public in Symbol* but private here, because the base can move: const u1* base();
// Make a ciSymbol from a C string (implementation). static ciSymbol* make_impl(const char* s);
public: // The enumeration ID from vmSymbols, or vmSymbolID::NO_SID if none.
vmSymbolID sid() const { return _sid; }
// The text of the symbol as a null-terminated utf8 string. const char* as_utf8();
int utf8_length();
// The text of the symbol as ascii with all non-printable characters quoted as \u#### const char* as_quoted_ascii();
// Return the i-th utf byte as a char, where i < utf8_length
char char_at(int i);
// Tests if the symbol starts with the given prefix. bool starts_with(const char* prefix, int len) const;
// Determines where the symbol contains the given substring.
int index_of_at(int i, const char* str, int len) const;
// Make a ciSymbol from a C string. // Consider adding to vmSymbols.hpp instead of using this constructor. // (Your code will be less subject to typographical bugs.) static ciSymbol* make(const char* s);
void print() {
_symbol->print();
}
virtualbool is_symbol() const { returntrue; }
// Are two ciSymbols equal? bool equals(ciSymbol* obj) { returnthis->_symbol == obj->get_symbol(); }
bool is_signature_polymorphic_name() const;
Symbol* get_symbol() const { return _symbol; }
};
#endif// SHARE_CI_CISYMBOL_HPP
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.14 Sekunden
(vorverarbeitet am 2026-09-02)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.