1 /* 2 * Copyright (c) 2018, 2020, 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_OOPS_FLATARRAYOOP_INLINE_HPP 26 #define SHARE_VM_OOPS_FLATARRAYOOP_INLINE_HPP 27 28 #include "oops/access.inline.hpp" 29 #include "oops/flatArrayOop.hpp" 30 #include "oops/inlineKlass.inline.hpp" 31 #include "oops/oop.inline.hpp" 32 #include "runtime/globals.hpp" 33 34 inline void* flatArrayOopDesc::base() const { return arrayOopDesc::base(T_PRIMITIVE_OBJECT); } 35 36 inline void* flatArrayOopDesc::value_at_addr(int index, jint lh) const { 37 assert(is_within_bounds(index), "index out of bounds"); 38 39 address addr = (address) base(); 40 addr += (index << Klass::layout_helper_log2_element_size(lh)); 41 return (void*) addr; 42 } 43 44 inline int flatArrayOopDesc::object_size() const { 45 return object_size(klass()->layout_helper(), length()); 46 } 47 48 inline oop flatArrayOopDesc::value_alloc_copy_from_index(flatArrayHandle vah, int index, TRAPS) { 49 FlatArrayKlass* vaklass = FlatArrayKlass::cast(vah->klass()); 50 InlineKlass* vklass = vaklass->element_klass(); 51 assert(vklass->is_initialized(), "Should be"); 52 if (vklass->is_empty_inline_type()) { 53 return vklass->default_value(); 54 } else { 55 oop buf = vklass->allocate_instance_buffer(CHECK_NULL); 56 vklass->inline_copy_payload_to_new_oop(vah->value_at_addr(index, vaklass->layout_helper()), 57 buf, LayoutKind::PAYLOAD); // temporary hack for the transition 58 return buf; 59 } 60 } 61 62 inline void flatArrayOopDesc::value_copy_from_index(int index, oop dst, LayoutKind lk) const { 63 FlatArrayKlass* vaklass = FlatArrayKlass::cast(klass()); 64 InlineKlass* vklass = vaklass->element_klass(); 65 void* src = value_at_addr(index, vaklass->layout_helper()); 66 return vklass->inline_copy_payload_to_new_oop(src, dst, lk); 67 } 68 69 inline void flatArrayOopDesc::value_copy_to_index(oop src, int index, LayoutKind lk) const { 70 FlatArrayKlass* vaklass = FlatArrayKlass::cast(klass()); 71 InlineKlass* vklass = vaklass->element_klass(); 72 if (vklass->is_empty_inline_type()) { 73 return; 74 } 75 void* dst = value_at_addr(index, vaklass->layout_helper()); 76 vklass->inline_copy_oop_to_payload(src, dst, lk); 77 } 78 79 80 81 #endif // SHARE_VM_OOPS_FLATARRAYOOP_INLINE_HPP