< prev index next >

src/hotspot/share/cds/archiveUtils.inline.hpp

Print this page

61   for (int i = 0; i < tmp_array->length(); i++) {
62     archived_array->at_put(i, tmp_array->at(i));
63   }
64 
65   return archived_array;
66 }
67 
68 // Returns the address of an Array<T> that's allocated in the ArchiveBuilder "buffer" space.
69 // All pointers in tmp_array must point to:
70 //    - a buffered object; or
71 //    - a source object that has been archived; or
72 //    - (only when dumping dynamic archive) an object in the static archive.
73 template <typename T>
74 Array<T>* ArchiveUtils::archive_ptr_array(GrowableArray<T>* tmp_array) {
75   ArchiveBuilder* builder = ArchiveBuilder::current();
76   const bool is_dynamic_dump = CDSConfig::is_dumping_dynamic_archive();
77 
78   Array<T>* archived_array = ArchiveBuilder::new_ro_array<T>(tmp_array->length());
79   for (int i = 0; i < tmp_array->length(); i++) {
80       T ptr = tmp_array->at(i);
81       if (!builder->is_in_buffer_space(ptr)) {
82         if (is_dynamic_dump && MetaspaceShared::is_in_shared_metaspace(ptr)) {
83           // We have a pointer that lives in the dynamic archive but points into
84           // the static archive.
85         } else {
86           ptr = builder->get_buffered_addr(ptr);
87         }
88       }
89       archived_array->at_put(i, ptr);
90       ArchivePtrMarker::mark_pointer(archived_array->adr_at(i));
91   }
92 
93   return archived_array;
94 }
95 
96 
97 #endif // SHARE_CDS_ARCHIVEUTILS_INLINE_HPP

61   for (int i = 0; i < tmp_array->length(); i++) {
62     archived_array->at_put(i, tmp_array->at(i));
63   }
64 
65   return archived_array;
66 }
67 
68 // Returns the address of an Array<T> that's allocated in the ArchiveBuilder "buffer" space.
69 // All pointers in tmp_array must point to:
70 //    - a buffered object; or
71 //    - a source object that has been archived; or
72 //    - (only when dumping dynamic archive) an object in the static archive.
73 template <typename T>
74 Array<T>* ArchiveUtils::archive_ptr_array(GrowableArray<T>* tmp_array) {
75   ArchiveBuilder* builder = ArchiveBuilder::current();
76   const bool is_dynamic_dump = CDSConfig::is_dumping_dynamic_archive();
77 
78   Array<T>* archived_array = ArchiveBuilder::new_ro_array<T>(tmp_array->length());
79   for (int i = 0; i < tmp_array->length(); i++) {
80       T ptr = tmp_array->at(i);
81       if (ptr != nullptr && !builder->is_in_buffer_space(ptr)) {
82         if (is_dynamic_dump && MetaspaceShared::is_in_shared_metaspace(ptr)) {
83           // We have a pointer that lives in the dynamic archive but points into
84           // the static archive.
85         } else {
86           ptr = builder->get_buffered_addr(ptr);
87         }
88       }
89       archived_array->at_put(i, ptr);
90       ArchivePtrMarker::mark_pointer(archived_array->adr_at(i));
91   }
92 
93   return archived_array;
94 }
95 
96 
97 #endif // SHARE_CDS_ARCHIVEUTILS_INLINE_HPP
< prev index next >