1 /*
 2  * Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
 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  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #ifndef SHARE_VM_CI_CIFLATARRAYKLASS_HPP
26 #define SHARE_VM_CI_CIFLATARRAYKLASS_HPP
27 
28 #include "ci/ciArrayKlass.hpp"
29 
30 // ciFlatArrayKlass
31 //
32 // This class represents a Klass* in the HotSpot virtual machine
33 // whose Klass part is a FlatArrayKlass.
34 class ciFlatArrayKlass : public ciArrayKlass {
35   CI_PACKAGE_ACCESS
36   friend class ciEnv;
37 
38 private:
39   ciKlass* _element_klass;
40   ciKlass* _base_element_klass;
41 
42 protected:
43   ciFlatArrayKlass(Klass* h_k);
44 
45   FlatArrayKlass* get_FlatArrayKlass() {
46     return (FlatArrayKlass*)get_Klass();
47   }
48 
49   const char* type_string() { return "ciFlatArrayKlass"; }
50 
51   oop     loader()        { return _base_element_klass->loader(); }
52   jobject loader_handle() { return _base_element_klass->loader_handle(); }
53 
54 public:
55   // The one-level type of the array elements.
56   ciKlass* element_klass();
57 
58   int log2_element_size() {
59     return Klass::layout_helper_log2_element_size(layout_helper());
60   }
61   int element_byte_size() { return 1 << log2_element_size(); }
62 
63   // The innermost type of the array elements.
64   ciKlass* base_element_klass() { return _base_element_klass; }
65 
66   // What kind of ciObject is this?
67   bool is_flat_array_klass() const { return true; }
68 
69   virtual ciKlass* exact_klass();
70 
71   virtual bool can_be_inline_array_klass() {
72     return true;
73   }
74 };
75 
76 
77 #endif // SHARE_VM_CI_CIFLATARRAYKLASS_HPP