< prev index next > src/hotspot/share/cds/archiveBuilder.hpp
Print this page
_buffered_addr = ref->obj();
} else {
_buffered_addr = nullptr;
}
}
+ SourceObjInfo(address src, address buf) {
+ _source_addr = src;
+ _buffered_addr = buf;
+ }
// This constructor is only used for regenerated objects (created by LambdaFormInvokers, etc).
// src = address of a Method or InstanceKlass that has been regenerated.
// renegerated_obj_info = info for the regenerated version of src.
SourceObjInfo(address src, SourceObjInfo* renegerated_obj_info) :
CHeapBitMap _ptrmap;
// _ptrmap is split into these two bitmaps which are written into the archive.
CHeapBitMap _rw_ptrmap; // marks pointers in the RW region
CHeapBitMap _ro_ptrmap; // marks pointers in the RO region
+ CHeapBitMap _ac_ptrmap; // marks pointers in the CC region
SourceObjList _rw_src_objs; // objs to put in rw region
SourceObjList _ro_src_objs; // objs to put in ro region
ResizeableResourceHashtable<address, SourceObjInfo, AnyObj::C_HEAP, mtClassShared> _src_obj_table;
ResizeableResourceHashtable<address, address, AnyObj::C_HEAP, mtClassShared> _buffered_to_src_table;
void iterate_sorted_roots(MetaspaceClosure* it);
void sort_klasses();
static int compare_symbols_by_address(Symbol** a, Symbol** b);
static int compare_klass_by_name(Klass** a, Klass** b);
+ void update_hidden_class_loader_type(InstanceKlass* ik) NOT_CDS_JAVA_HEAP_RETURN;
void make_shallow_copies(DumpRegion *dump_region, const SourceObjList* src_objs);
void make_shallow_copy(DumpRegion *dump_region, SourceObjInfo* src_info);
void relocate_embedded_pointers(SourceObjList* src_objs);
< prev index next >