1 /*
2 * Copyright (c) 1997, 2025, 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_OOPS_OBJARRAYOOP_HPP
26 #define SHARE_OOPS_OBJARRAYOOP_HPP
27
28 #include "cppstdlib/type_traits.hpp"
29 #include "oops/arrayOop.hpp"
30 #include "utilities/align.hpp"
31
32 class Klass;
33
34 // An objArrayOop is an array containing oops.
35 // Evaluating "String arg[10]" will create an objArrayOop.
36
37 class objArrayOopDesc : public arrayOopDesc {
38 friend class ArchiveHeapWriter;
39 friend class ObjArrayKlass;
40 friend class Runtime1;
41 friend class psPromotionManager;
42 friend class CSetMarkWordClosure;
43 friend class Continuation;
44 template <typename T>
45 friend class RawOopWriter;
46 friend class AOTMapLogger;
47
48 template <class T> T* obj_at_addr(int index) const;
49
50 template <class T>
51 static ptrdiff_t obj_at_offset(int index) {
52 return base_offset_in_bytes() + sizeof(T) * index;
53 }
54
55 public:
56 // Returns the offset of the first element.
57 static int base_offset_in_bytes() {
58 return arrayOopDesc::base_offset_in_bytes(T_OBJECT);
59 }
60
61 inline static objArrayOop cast(oop o);
62
63 // base is the address following the header.
64 HeapWord* base() const;
65
66 // Accessing
67 oop obj_at(int index) const;
68 oop obj_at(int index, TRAPS) const;
69
70 void obj_at_put(int index, oop value);
71 void obj_at_put(int index, oop value, TRAPS);
72
73 Klass* element_klass();
74
75 public:
76 // special iterators for index ranges, returns size of object
77 template <typename OopClosureType>
78 void oop_iterate_range(OopClosureType* blk, int start, int end);
79 };
80
81 // See similar requirement for oopDesc.
82 static_assert(std::is_trivially_default_constructible<objArrayOopDesc>::value, "required");
83
84 #endif // SHARE_OOPS_OBJARRAYOOP_HPP