ciSymbol.hpp revision 1427
0N/A/*
1988N/A * Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
1472N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
1472N/A * CA 95054 USA or visit www.sun.com if you need additional information or
1472N/A * have any questions.
0N/A *
0N/A */
0N/A
1879N/A// ciSymbol
1879N/A//
1879N/A// This class represents a symbolOop in the HotSpot virtual
1879N/A// machine.
1879N/Aclass ciSymbol : public ciObject {
1879N/A CI_PACKAGE_ACCESS
1879N/A // These friends all make direct use of get_symbolOop:
1879N/A friend class ciEnv;
1879N/A friend class ciInstanceKlass;
1879N/A friend class ciSignature;
1879N/A friend class ciMethod;
1879N/A friend class ciObjArrayKlass;
1879N/A
1879N/Aprivate:
1879N/A const vmSymbols::SID _sid;
1879N/A DEBUG_ONLY( bool sid_ok() { return vmSymbols::find_sid(get_symbolOop()) == _sid; } )
1879N/A
1879N/A ciSymbol(symbolOop s); // normal case, for symbols not mentioned in vmSymbols
0N/A ciSymbol(symbolHandle s, vmSymbols::SID sid); // for use with vmSymbolHandles
0N/A
0N/A symbolOop get_symbolOop() const { return (symbolOop)get_oop(); }
0N/A
0N/A const char* type_string() { return "ciSymbol"; }
0N/A
0N/A void print_impl(outputStream* st);
0N/A
0N/A // This is public in symbolOop but private here, because the base can move:
0N/A jbyte* base();
0N/A
0N/A // Make a ciSymbol from a C string (implementation).
0N/A static ciSymbol* make_impl(const char* s);
1988N/A
1988N/Apublic:
0N/A // The enumeration ID from vmSymbols, or vmSymbols::NO_SID if none.
1988N/A vmSymbols::SID sid() const { return _sid; }
0N/A
0N/A // The text of the symbol as a null-terminated utf8 string.
0N/A const char* as_utf8();
0N/A int utf8_length();
1879N/A
1879N/A // Return the i-th utf8 byte, where i < utf8_length
int byte_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;
// What kind of ciObject is this?
bool is_symbol() { return true; }
void print_symbol_on(outputStream* st);
void print_symbol() {
print_symbol_on(tty);
}
// 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);
#define CI_SYMBOL_DECLARE(name, ignore_def) \
static ciSymbol* name() { return ciObjectFactory::vm_symbol_at(vmSymbols::VM_SYMBOL_ENUM_NAME(name)); }
VM_SYMBOLS_DO(CI_SYMBOL_DECLARE, CI_SYMBOL_DECLARE)
#undef CI_SYMBOL_DECLARE
};