ciSymbol.cpp 4.5 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28
#include "precompiled.hpp"
#include "ci/ciSymbol.hpp"
#include "ci/ciUtilities.hpp"
#include "memory/oopFactory.hpp"
D
duke 已提交
29 30 31 32

// ------------------------------------------------------------------
// ciSymbol::ciSymbol
//
33 34 35
// Preallocated symbol variant.  Used with symbols from vmSymbols.
ciSymbol::ciSymbol(Symbol* s, vmSymbols::SID sid)
  : _symbol(s), _sid(sid)
36
{
37 38
  assert(_symbol != NULL, "adding null symbol");
  _symbol->increment_refcount();  // increment ref count
39 40 41 42
  assert(sid_ok(), "must be in vmSymbols");
}

// Normal case for non-famous symbols.
43 44
ciSymbol::ciSymbol(Symbol* s)
  : _symbol(s), _sid(vmSymbols::NO_SID)
45
{
46 47
  assert(_symbol != NULL, "adding null symbol");
  _symbol->increment_refcount();  // increment ref count
48
  assert(sid_ok(), "must not be in vmSymbols");
D
duke 已提交
49 50 51 52
}

// ciSymbol
//
53
// This class represents a Symbol* in the HotSpot virtual
D
duke 已提交
54 55 56 57 58 59 60 61
// machine.

// ------------------------------------------------------------------
// ciSymbol::as_utf8
//
// The text of the symbol as a null-terminated C string.
const char* ciSymbol::as_utf8() {
  VM_QUICK_ENTRY_MARK;
62
  Symbol* s = get_symbol();
D
duke 已提交
63 64 65 66 67
  return s->as_utf8();
}

// ------------------------------------------------------------------
// ciSymbol::base
68 69
const jbyte* ciSymbol::base() {
  GUARDED_VM_ENTRY(return get_symbol()->base();)
D
duke 已提交
70 71 72 73 74
}

// ------------------------------------------------------------------
// ciSymbol::byte_at
int ciSymbol::byte_at(int i) {
75
  GUARDED_VM_ENTRY(return get_symbol()->byte_at(i);)
D
duke 已提交
76 77
}

78 79 80 81 82
// ------------------------------------------------------------------
// ciSymbol::starts_with
//
// Tests if the symbol starts with the given prefix.
bool ciSymbol::starts_with(const char* prefix, int len) const {
83
  GUARDED_VM_ENTRY(return get_symbol()->starts_with(prefix, len);)
84 85
}

86 87 88 89
bool ciSymbol::is_signature_polymorphic_name()  const {
  GUARDED_VM_ENTRY(return MethodHandles::is_signature_polymorphic_name(get_symbol());)
}

90 91 92 93 94
// ------------------------------------------------------------------
// ciSymbol::index_of
//
// Determines where the symbol contains the given substring.
int ciSymbol::index_of_at(int i, const char* str, int len) const {
95
  GUARDED_VM_ENTRY(return get_symbol()->index_of_at(i, str, len);)
96 97
}

D
duke 已提交
98 99 100
// ------------------------------------------------------------------
// ciSymbol::utf8_length
int ciSymbol::utf8_length() {
101
  GUARDED_VM_ENTRY(return get_symbol()->utf8_length();)
D
duke 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
}

// ------------------------------------------------------------------
// ciSymbol::print_impl
//
// Implementation of the print method
void ciSymbol::print_impl(outputStream* st) {
  st->print(" value=");
  print_symbol_on(st);
}

// ------------------------------------------------------------------
// ciSymbol::print_symbol_on
//
// Print the value of this symbol on an outputStream
void ciSymbol::print_symbol_on(outputStream *st) {
118
  GUARDED_VM_ENTRY(get_symbol()->print_symbol_on(st);)
D
duke 已提交
119 120 121 122 123 124 125 126
}

// ------------------------------------------------------------------
// ciSymbol::make_impl
//
// Make a ciSymbol from a C string (implementation).
ciSymbol* ciSymbol::make_impl(const char* s) {
  EXCEPTION_CONTEXT;
127
  TempNewSymbol sym = SymbolTable::new_symbol(s, THREAD);
D
duke 已提交
128 129 130 131 132
  if (HAS_PENDING_EXCEPTION) {
    CLEAR_PENDING_EXCEPTION;
    CURRENT_THREAD_ENV->record_out_of_memory_failure();
    return ciEnv::_unloaded_cisymbol;
  }
133
  return CURRENT_THREAD_ENV->get_symbol(sym);
D
duke 已提交
134 135 136 137 138 139 140 141 142
}

// ------------------------------------------------------------------
// ciSymbol::make
//
// Make a ciSymbol from a C string.
ciSymbol* ciSymbol::make(const char* s) {
  GUARDED_VM_ENTRY(return make_impl(s);)
}