author | vlivanov |
Tue, 10 Sep 2013 14:51:48 -0700 | |
changeset 19770 | 7cb9f982ea81 |
parent 7397 | 5b173b4ca846 |
child 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
7397 | 2 |
* Copyright (c) 1999, 2010, 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 "ci/ciArray.hpp" |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
27 |
#include "ci/ciArrayKlass.hpp" |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
28 |
#include "ci/ciConstant.hpp" |
7397 | 29 |
#include "ci/ciKlass.hpp" |
30 |
#include "ci/ciUtilities.hpp" |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
31 |
#include "oops/objArrayOop.hpp" |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
32 |
#include "oops/typeArrayOop.hpp" |
1 | 33 |
|
34 |
// ciArray |
|
35 |
// |
|
36 |
// This class represents an arrayOop in the HotSpot virtual |
|
37 |
// machine. |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
38 |
static BasicType fixup_element_type(BasicType bt) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
39 |
if (bt == T_ARRAY) return T_OBJECT; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
40 |
if (bt == T_BOOLEAN) return T_BYTE; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
41 |
return bt; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
42 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
43 |
|
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
44 |
ciConstant ciArray::element_value_impl(BasicType elembt, |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
45 |
arrayOop ary, |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
46 |
int index) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
47 |
if (ary == NULL) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
48 |
return ciConstant(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
49 |
assert(ary->is_array(), ""); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
50 |
if (index < 0 || index >= ary->length()) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
51 |
return ciConstant(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
52 |
ArrayKlass* ak = (ArrayKlass*) ary->klass(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
53 |
BasicType abt = ak->element_type(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
54 |
if (fixup_element_type(elembt) != |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
55 |
fixup_element_type(abt)) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
56 |
return ciConstant(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
57 |
switch (elembt) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
58 |
case T_ARRAY: |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
59 |
case T_OBJECT: |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
60 |
{ |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
61 |
assert(ary->is_objArray(), ""); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
62 |
objArrayOop objary = (objArrayOop) ary; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
63 |
oop elem = objary->obj_at(index); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
64 |
ciEnv* env = CURRENT_ENV; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
65 |
ciObject* box = env->get_object(elem); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
66 |
return ciConstant(T_OBJECT, box); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
67 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
68 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
69 |
assert(ary->is_typeArray(), ""); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
70 |
typeArrayOop tary = (typeArrayOop) ary; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
71 |
jint value = 0; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
72 |
switch (elembt) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
73 |
case T_LONG: return ciConstant(tary->long_at(index)); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
74 |
case T_FLOAT: return ciConstant(tary->float_at(index)); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
75 |
case T_DOUBLE: return ciConstant(tary->double_at(index)); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
76 |
default: return ciConstant(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
77 |
case T_BYTE: value = tary->byte_at(index); break; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
78 |
case T_BOOLEAN: value = tary->byte_at(index) & 1; break; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
79 |
case T_SHORT: value = tary->short_at(index); break; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
80 |
case T_CHAR: value = tary->char_at(index); break; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
81 |
case T_INT: value = tary->int_at(index); break; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
82 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
83 |
return ciConstant(elembt, value); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
84 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
85 |
|
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
86 |
// ------------------------------------------------------------------ |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
87 |
// ciArray::element_value |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
88 |
// |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
89 |
// Current value of an element. |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
90 |
// Returns T_ILLEGAL if there is no element at the given index. |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
91 |
ciConstant ciArray::element_value(int index) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
92 |
BasicType elembt = element_basic_type(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
93 |
GUARDED_VM_ENTRY( |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
94 |
return element_value_impl(elembt, get_arrayOop(), index); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
95 |
) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
96 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
97 |
|
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
98 |
// ------------------------------------------------------------------ |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
99 |
// ciArray::element_value_by_offset |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
100 |
// |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
101 |
// Current value of an element at the specified offset. |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
102 |
// Returns T_ILLEGAL if there is no element at the given offset. |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
103 |
ciConstant ciArray::element_value_by_offset(intptr_t element_offset) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
104 |
BasicType elembt = element_basic_type(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
105 |
intptr_t shift = exact_log2(type2aelembytes(elembt)); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
106 |
intptr_t header = arrayOopDesc::base_offset_in_bytes(elembt); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
107 |
intptr_t index = (element_offset - header) >> shift; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
108 |
intptr_t offset = header + ((intptr_t)index << shift); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
109 |
if (offset != element_offset || index != (jint)index) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
110 |
return ciConstant(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
111 |
return element_value((jint) index); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
7397
diff
changeset
|
112 |
} |
1 | 113 |
|
114 |
// ------------------------------------------------------------------ |
|
115 |
// ciArray::print_impl |
|
116 |
// |
|
117 |
// Implementation of the print method. |
|
118 |
void ciArray::print_impl(outputStream* st) { |
|
119 |
st->print(" length=%d type=", length()); |
|
120 |
klass()->print(st); |
|
121 |
} |