annotate src/share/vm/runtime/fieldType.cpp @ 18096:ca6d25be853b jdk8u25-b13

8044269: Analysis of archive files. Summary: Add checksum verification. Reviewed-by: iklam, dholmes, mschoene
author jiangli
date Tue, 12 Aug 2014 17:46:16 -0400
parents 1d1603768966
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2177
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/typeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/fieldType.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
33 void FieldType::skip_optional_size(Symbol* signature, int* index) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34 jchar c = signature->byte_at(*index);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 while (c >= '0' && c <= '9') {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 *index = *index + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 c = signature->byte_at(*index);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 }
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
41 BasicType FieldType::basic_type(Symbol* signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42 return char2type(signature->byte_at(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // Check if it is a valid array signature
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
46 bool FieldType::is_valid_array_signature(Symbol* sig) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 assert(sig->utf8_length() > 1, "this should already have been checked");
a61af66fc99e Initial load
duke
parents:
diff changeset
48 assert(sig->byte_at(0) == '[', "this should already have been checked");
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // The first character is already checked
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int i = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int len = sig->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // First skip all '['s
a61af66fc99e Initial load
duke
parents:
diff changeset
53 while(i < len - 1 && sig->byte_at(i) == '[') i++;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Check type
a61af66fc99e Initial load
duke
parents:
diff changeset
56 switch(sig->byte_at(i)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 case 'B': // T_BYTE
a61af66fc99e Initial load
duke
parents:
diff changeset
58 case 'C': // T_CHAR
a61af66fc99e Initial load
duke
parents:
diff changeset
59 case 'D': // T_DOUBLE
a61af66fc99e Initial load
duke
parents:
diff changeset
60 case 'F': // T_FLOAT
a61af66fc99e Initial load
duke
parents:
diff changeset
61 case 'I': // T_INT
a61af66fc99e Initial load
duke
parents:
diff changeset
62 case 'J': // T_LONG
a61af66fc99e Initial load
duke
parents:
diff changeset
63 case 'S': // T_SHORT
a61af66fc99e Initial load
duke
parents:
diff changeset
64 case 'Z': // T_BOOLEAN
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // If it is an array, the type is the last character
a61af66fc99e Initial load
duke
parents:
diff changeset
66 return (i + 1 == len);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 case 'L':
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // If it is an object, the last character must be a ';'
a61af66fc99e Initial load
duke
parents:
diff changeset
69 return sig->byte_at(len - 1) == ';';
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
76 BasicType FieldType::get_array_info(Symbol* signature, FieldArrayInfo& fd, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 assert(basic_type(signature) == T_ARRAY, "must be array");
a61af66fc99e Initial load
duke
parents:
diff changeset
78 int index = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 int dim = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 skip_optional_size(signature, &index);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 while (signature->byte_at(index) == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 dim++;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 skip_optional_size(signature, &index);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 ResourceMark rm;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
87 char *element = signature->as_C_string() + index;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
88 BasicType element_type = char2type(element[0]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (element_type == T_OBJECT) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
90 int len = (int)strlen(element);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
91 assert(element[len-1] == ';', "last char should be a semicolon");
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
92 element[len-1] = '\0'; // chop off semicolon
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
93 fd._object_key = SymbolTable::new_symbol(element + 1, CHECK_(T_BYTE));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Pass dimension back to caller
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
96 fd._dimension = dim;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return element_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }