author | lana |
Wed, 28 Dec 2011 10:51:24 -0800 | |
changeset 11360 | cfa173720adb |
parent 8921 | 14bfe81f2a9d |
child 13391 | 30245956af37 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8076
diff
changeset
|
2 |
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5420
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "ci/ciSymbol.hpp" |
|
27 |
#include "ci/ciUtilities.hpp" |
|
28 |
#include "memory/oopFactory.hpp" |
|
1 | 29 |
|
30 |
// ------------------------------------------------------------------ |
|
31 |
// ciSymbol::ciSymbol |
|
32 |
// |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
33 |
// Preallocated symbol variant. Used with symbols from vmSymbols. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
34 |
ciSymbol::ciSymbol(Symbol* s, vmSymbols::SID sid) |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
35 |
: _symbol(s), _sid(sid) |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
36 |
{ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
37 |
assert(_symbol != NULL, "adding null symbol"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
38 |
_symbol->increment_refcount(); // increment ref count |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
39 |
assert(sid_ok(), "must be in vmSymbols"); |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
40 |
} |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
41 |
|
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
42 |
// Normal case for non-famous symbols. |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
43 |
ciSymbol::ciSymbol(Symbol* s) |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
44 |
: _symbol(s), _sid(vmSymbols::NO_SID) |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
45 |
{ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
46 |
assert(_symbol != NULL, "adding null symbol"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
47 |
_symbol->increment_refcount(); // increment ref count |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
4567
diff
changeset
|
48 |
assert(sid_ok(), "must not be in vmSymbols"); |
1 | 49 |
} |
50 |
||
51 |
// ciSymbol |
|
52 |
// |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
53 |
// This class represents a Symbol* in the HotSpot virtual |
1 | 54 |
// machine. |
55 |
||
56 |
// ------------------------------------------------------------------ |
|
57 |
// ciSymbol::as_utf8 |
|
58 |
// |
|
59 |
// The text of the symbol as a null-terminated C string. |
|
60 |
const char* ciSymbol::as_utf8() { |
|
61 |
VM_QUICK_ENTRY_MARK; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
62 |
Symbol* s = get_symbol(); |
1 | 63 |
return s->as_utf8(); |
64 |
} |
|
65 |
||
66 |
// ------------------------------------------------------------------ |
|
67 |
// ciSymbol::base |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
68 |
const jbyte* ciSymbol::base() { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
69 |
GUARDED_VM_ENTRY(return get_symbol()->base();) |
1 | 70 |
} |
71 |
||
72 |
// ------------------------------------------------------------------ |
|
73 |
// ciSymbol::byte_at |
|
74 |
int ciSymbol::byte_at(int i) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
75 |
GUARDED_VM_ENTRY(return get_symbol()->byte_at(i);) |
1 | 76 |
} |
77 |
||
78 |
// ------------------------------------------------------------------ |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
79 |
// ciSymbol::starts_with |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
80 |
// |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
81 |
// Tests if the symbol starts with the given prefix. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
82 |
bool ciSymbol::starts_with(const char* prefix, int len) const { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
83 |
GUARDED_VM_ENTRY(return get_symbol()->starts_with(prefix, len);) |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
84 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
85 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
86 |
// ------------------------------------------------------------------ |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
87 |
// ciSymbol::index_of |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
88 |
// |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
89 |
// Determines where the symbol contains the given substring. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
90 |
int ciSymbol::index_of_at(int i, const char* str, int len) const { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
91 |
GUARDED_VM_ENTRY(return get_symbol()->index_of_at(i, str, len);) |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
92 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
93 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
1
diff
changeset
|
94 |
// ------------------------------------------------------------------ |
1 | 95 |
// ciSymbol::utf8_length |
96 |
int ciSymbol::utf8_length() { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
97 |
GUARDED_VM_ENTRY(return get_symbol()->utf8_length();) |
1 | 98 |
} |
99 |
||
100 |
// ------------------------------------------------------------------ |
|
101 |
// ciSymbol::print_impl |
|
102 |
// |
|
103 |
// Implementation of the print method |
|
104 |
void ciSymbol::print_impl(outputStream* st) { |
|
105 |
st->print(" value="); |
|
106 |
print_symbol_on(st); |
|
107 |
} |
|
108 |
||
109 |
// ------------------------------------------------------------------ |
|
110 |
// ciSymbol::print_symbol_on |
|
111 |
// |
|
112 |
// Print the value of this symbol on an outputStream |
|
113 |
void ciSymbol::print_symbol_on(outputStream *st) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
114 |
GUARDED_VM_ENTRY(get_symbol()->print_symbol_on(st);) |
1 | 115 |
} |
116 |
||
117 |
// ------------------------------------------------------------------ |
|
118 |
// ciSymbol::make_impl |
|
119 |
// |
|
120 |
// Make a ciSymbol from a C string (implementation). |
|
121 |
ciSymbol* ciSymbol::make_impl(const char* s) { |
|
122 |
EXCEPTION_CONTEXT; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
123 |
TempNewSymbol sym = SymbolTable::new_symbol(s, THREAD); |
1 | 124 |
if (HAS_PENDING_EXCEPTION) { |
125 |
CLEAR_PENDING_EXCEPTION; |
|
126 |
CURRENT_THREAD_ENV->record_out_of_memory_failure(); |
|
127 |
return ciEnv::_unloaded_cisymbol; |
|
128 |
} |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
129 |
return CURRENT_THREAD_ENV->get_symbol(sym); |
1 | 130 |
} |
131 |
||
132 |
// ------------------------------------------------------------------ |
|
133 |
// ciSymbol::make |
|
134 |
// |
|
135 |
// Make a ciSymbol from a C string. |
|
136 |
ciSymbol* ciSymbol::make(const char* s) { |
|
137 |
GUARDED_VM_ENTRY(return make_impl(s);) |
|
138 |
} |