author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46329 | hotspot/src/share/vm/ci/ciTypeArrayKlass.cpp@53ccc37bda19 |
child 49449 | ef5d5d343e2a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33611
diff
changeset
|
2 |
* Copyright (c) 1999, 2017, 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/ciTypeArrayKlass.hpp" |
|
27 |
#include "ci/ciUtilities.hpp" |
|
1 | 28 |
|
29 |
// ciTypeArrayKlass |
|
30 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
31 |
// This class represents a Klass* in the HotSpot virtual machine |
1 | 32 |
// whose Klass part in a TypeArrayKlass. |
33 |
||
34 |
// ------------------------------------------------------------------ |
|
35 |
// ciTypeArrayKlass::ciTypeArrayKlass |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
33611
diff
changeset
|
36 |
ciTypeArrayKlass::ciTypeArrayKlass(Klass* k) : ciArrayKlass(k) { |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
13952
diff
changeset
|
37 |
assert(get_Klass()->is_typeArray_klass(), "wrong type"); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
38 |
assert(element_type() == get_TypeArrayKlass()->element_type(), ""); |
1 | 39 |
} |
40 |
||
41 |
// ------------------------------------------------------------------ |
|
42 |
// ciTypeArrayKlass::make_impl |
|
43 |
// |
|
44 |
// Implementation of make. |
|
45 |
ciTypeArrayKlass* ciTypeArrayKlass::make_impl(BasicType t) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
46 |
Klass* k = Universe::typeArrayKlassObj(t); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
47 |
return CURRENT_ENV->get_type_array_klass(k); |
1 | 48 |
} |
49 |
||
50 |
// ------------------------------------------------------------------ |
|
51 |
// ciTypeArrayKlass::make |
|
52 |
// |
|
53 |
// Make an array klass corresponding to the specified primitive type. |
|
54 |
ciTypeArrayKlass* ciTypeArrayKlass::make(BasicType t) { |
|
55 |
GUARDED_VM_ENTRY(return make_impl(t);) |
|
56 |
} |