author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 37248 | hotspot/src/share/vm/runtime/fieldType.cpp@11a660dbbb8e |
child 49354 | c6f2f91a1b4e |
permissions | -rw-r--r-- |
1 | 1 |
/* |
37248 | 2 |
* Copyright (c) 1997, 2016, 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:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
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:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/systemDictionary.hpp" |
|
27 |
#include "memory/oopFactory.hpp" |
|
37248 | 28 |
#include "memory/resourceArea.hpp" |
7397 | 29 |
#include "oops/oop.inline.hpp" |
30 |
#include "oops/typeArrayKlass.hpp" |
|
31 |
#include "runtime/fieldType.hpp" |
|
32 |
#include "runtime/signature.hpp" |
|
1 | 33 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
34 |
void FieldType::skip_optional_size(Symbol* signature, int* index) { |
1 | 35 |
jchar c = signature->byte_at(*index); |
36 |
while (c >= '0' && c <= '9') { |
|
37 |
*index = *index + 1; |
|
38 |
c = signature->byte_at(*index); |
|
39 |
} |
|
40 |
} |
|
41 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
42 |
BasicType FieldType::basic_type(Symbol* signature) { |
1 | 43 |
return char2type(signature->byte_at(0)); |
44 |
} |
|
45 |
||
46 |
// Check if it is a valid array signature |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
47 |
bool FieldType::is_valid_array_signature(Symbol* sig) { |
1 | 48 |
assert(sig->utf8_length() > 1, "this should already have been checked"); |
49 |
assert(sig->byte_at(0) == '[', "this should already have been checked"); |
|
50 |
// The first character is already checked |
|
51 |
int i = 1; |
|
52 |
int len = sig->utf8_length(); |
|
53 |
// First skip all '['s |
|
54 |
while(i < len - 1 && sig->byte_at(i) == '[') i++; |
|
55 |
||
56 |
// Check type |
|
57 |
switch(sig->byte_at(i)) { |
|
58 |
case 'B': // T_BYTE |
|
59 |
case 'C': // T_CHAR |
|
60 |
case 'D': // T_DOUBLE |
|
61 |
case 'F': // T_FLOAT |
|
62 |
case 'I': // T_INT |
|
63 |
case 'J': // T_LONG |
|
64 |
case 'S': // T_SHORT |
|
65 |
case 'Z': // T_BOOLEAN |
|
66 |
// If it is an array, the type is the last character |
|
67 |
return (i + 1 == len); |
|
68 |
case 'L': |
|
69 |
// If it is an object, the last character must be a ';' |
|
70 |
return sig->byte_at(len - 1) == ';'; |
|
71 |
} |
|
72 |
||
73 |
return false; |
|
74 |
} |
|
75 |
||
76 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
77 |
BasicType FieldType::get_array_info(Symbol* signature, FieldArrayInfo& fd, TRAPS) { |
1 | 78 |
assert(basic_type(signature) == T_ARRAY, "must be array"); |
79 |
int index = 1; |
|
80 |
int dim = 1; |
|
81 |
skip_optional_size(signature, &index); |
|
82 |
while (signature->byte_at(index) == '[') { |
|
83 |
index++; |
|
84 |
dim++; |
|
85 |
skip_optional_size(signature, &index); |
|
86 |
} |
|
87 |
ResourceMark rm; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
88 |
char *element = signature->as_C_string() + index; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
89 |
BasicType element_type = char2type(element[0]); |
1 | 90 |
if (element_type == T_OBJECT) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
91 |
int len = (int)strlen(element); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
92 |
assert(element[len-1] == ';', "last char should be a semicolon"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
93 |
element[len-1] = '\0'; // chop off semicolon |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
94 |
fd._object_key = SymbolTable::new_symbol(element + 1, CHECK_(T_BYTE)); |
1 | 95 |
} |
96 |
// Pass dimension back to caller |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
97 |
fd._dimension = dim; |
1 | 98 |
return element_type; |
99 |
} |