1 /*
  2  * Copyright (c) 2017, 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 #ifndef SHARE_VM_OOPS_INLINEKLASS_INLINE_HPP
 25 #define SHARE_VM_OOPS_INLINEKLASS_INLINE_HPP
 26 
 27 #include "memory/iterator.hpp"
 28 #include "oops/flatArrayKlass.hpp"
 29 #include "oops/inlineKlass.hpp"
 30 #include "oops/instanceKlass.inline.hpp"
 31 #include "oops/oop.inline.hpp"
 32 #include "utilities/devirtualizer.inline.hpp"
 33 #include "utilities/macros.hpp"
 34 
 35 inline InlineKlassFixedBlock* InlineKlass::inlineklass_static_block() const {
 36 
 37   InstanceKlass* volatile* adr_impl = adr_implementor();
 38   if (adr_impl != nullptr) {
 39     return (InlineKlassFixedBlock*)(adr_impl + 1);
 40   }
 41 
 42   return (InlineKlassFixedBlock*)end_of_nonstatic_oop_maps();
 43 }
 44 
 45 inline address InlineKlass::adr_return_regs() const {
 46   InlineKlassFixedBlock* vkst = inlineklass_static_block();
 47   return ((address)_adr_inlineklass_fixed_block) + in_bytes(byte_offset_of(InlineKlassFixedBlock, _return_regs));
 48 }
 49 
 50 inline Array<VMRegPair>* InlineKlass::return_regs() const {
 51   return *((Array<VMRegPair>**)adr_return_regs());
 52 }
 53 
 54 
 55 inline InlineKlass* InlineKlass::cast(Klass* k) {
 56   assert(k->is_inline_klass(), "cast to InlineKlass");
 57   return (InlineKlass*) k;
 58 }
 59 
 60 inline address InlineKlass::data_for_oop(oop o) const {
 61   return ((address) (void*) o) + first_field_offset();
 62 }
 63 
 64 inline void InlineKlass::inline_copy_payload_to_new_oop(void* src, oop dst) {
 65   HeapAccess<IS_DEST_UNINITIALIZED>::value_copy(src, data_for_oop(dst), this);
 66 }
 67 
 68 inline void InlineKlass::inline_copy_oop_to_new_oop(oop src, oop dst) {
 69   HeapAccess<IS_DEST_UNINITIALIZED>::value_copy(data_for_oop(src), data_for_oop(dst), this);
 70 }
 71 
 72 inline void InlineKlass::inline_copy_oop_to_new_payload(oop src, void* dst) {
 73   HeapAccess<IS_DEST_UNINITIALIZED>::value_copy(data_for_oop(src), dst, this);
 74 }
 75 
 76 inline void InlineKlass::inline_copy_oop_to_payload(oop src, void* dst) {
 77   HeapAccess<>::value_copy(data_for_oop(src), dst, this);
 78 }
 79 
 80 
 81 template <typename T, class OopClosureType>
 82 void InlineKlass::oop_iterate_specialized(const address oop_addr, OopClosureType* closure) {
 83   OopMapBlock* map = start_of_nonstatic_oop_maps();
 84   OopMapBlock* const end_map = map + nonstatic_oop_map_count();
 85 
 86   for (; map < end_map; map++) {
 87     T* p = (T*) (oop_addr + map->offset());
 88     T* const end = p + map->count();
 89     for (; p < end; ++p) {
 90       Devirtualizer::do_oop(closure, p);
 91     }
 92   }
 93 }
 94 
 95 template <typename T, class OopClosureType>
 96 inline void InlineKlass::oop_iterate_specialized_bounded(const address oop_addr, OopClosureType* closure, void* lo, void* hi) {
 97   OopMapBlock* map = start_of_nonstatic_oop_maps();
 98   OopMapBlock* const end_map = map + nonstatic_oop_map_count();
 99 
100   T* const l   = (T*) lo;
101   T* const h   = (T*) hi;
102 
103   for (; map < end_map; map++) {
104     T* p = (T*) (oop_addr + map->offset());
105     T* end = p + map->count();
106     if (p < l) {
107       p = l;
108     }
109     if (end > h) {
110       end = h;
111     }
112     for (; p < end; ++p) {
113       Devirtualizer::do_oop(closure, p);
114     }
115   }
116 }
117 
118 
119 #endif // SHARE_VM_OOPS_INLINEKLASS_INLINE_HPP