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 oop protection_domain() { return _base_element_klass->protection_domain(); } 55 jobject protection_domain_handle() { return _base_element_klass->protection_domain_handle(); } 56 57 public: 58 // The one-level type of the array elements. 59 ciKlass* element_klass(); 60 61 int log2_element_size() { 62 return Klass::layout_helper_log2_element_size(layout_helper()); 63 } 64 int element_byte_size() { return 1 << log2_element_size(); } 65 66 // The innermost type of the array elements. 67 ciKlass* base_element_klass() { return _base_element_klass; } 68 69 // What kind of ciObject is this? 70 bool is_flat_array_klass() const { return true; } 71 72 virtual ciKlass* exact_klass(); 73 74 virtual bool can_be_inline_array_klass() { 75 return true; 76 } 77 78 virtual bool is_elem_null_free() const { return true; } 79 }; 80 81 82 #endif // SHARE_VM_CI_CIFLATARRAYKLASS_HPP