@@ -789,17 +789,14 @@ size_t Metaspace::max_allocation_word_size() {
789
789
return metaspace::chunklevel::MAX_CHUNK_WORD_SIZE - max_overhead_words;
790
790
}
791
791
792
+ // This version of Metaspace::allocate does not throw OOM but simply returns NULL, and
793
+ // is suitable for calling from non-Java threads.
794
+ // Callers are responsible for checking null.
792
795
MetaWord* Metaspace::allocate (ClassLoaderData* loader_data, size_t word_size,
793
- MetaspaceObj::Type type, TRAPS ) {
796
+ MetaspaceObj::Type type) {
794
797
assert (word_size <= Metaspace::max_allocation_word_size (),
795
798
" allocation size too large (" SIZE_FORMAT " )" , word_size);
796
799
assert (!_frozen, " sanity" );
797
- assert (!(DumpSharedSpaces && THREAD->is_VM_thread ()), " sanity" );
798
-
799
- if (HAS_PENDING_EXCEPTION) {
800
- assert (false , " Should not allocate with exception pending" );
801
- return NULL ; // caller does a CHECK_NULL too
802
- }
803
800
804
801
assert (loader_data != NULL , " Should never pass around a NULL loader_data. "
805
802
" ClassLoaderData::the_null_class_loader_data() should have been used." );
@@ -809,7 +806,30 @@ MetaWord* Metaspace::allocate(ClassLoaderData* loader_data, size_t word_size,
809
806
// Try to allocate metadata.
810
807
MetaWord* result = loader_data->metaspace_non_null ()->allocate (word_size, mdtype);
811
808
809
+ if (result != NULL ) {
810
+ // Zero initialize.
811
+ Copy::fill_to_words ((HeapWord*)result, word_size, 0 );
812
+
813
+ log_trace (metaspace)(" Metaspace::allocate: type %d return " PTR_FORMAT " ." , (int )type, p2i (result));
814
+ }
815
+
816
+ return result;
817
+ }
818
+
819
+ MetaWord* Metaspace::allocate (ClassLoaderData* loader_data, size_t word_size,
820
+ MetaspaceObj::Type type, TRAPS) {
821
+
822
+ assert (THREAD->is_Java_thread (), " can't allocate in non-Java thread because we cannot throw exception" );
823
+
824
+ if (HAS_PENDING_EXCEPTION) {
825
+ assert (false , " Should not allocate with exception pending" );
826
+ return NULL ; // caller does a CHECK_NULL too
827
+ }
828
+
829
+ MetaWord* result = allocate (loader_data, word_size, type);
830
+
812
831
if (result == NULL ) {
832
+ MetadataType mdtype = (type == MetaspaceObj::ClassType) ? ClassType : NonClassType;
813
833
tracer ()->report_metaspace_allocation_failure (loader_data, word_size, type, mdtype);
814
834
815
835
// Allocation failed.
@@ -819,18 +839,18 @@ MetaWord* Metaspace::allocate(ClassLoaderData* loader_data, size_t word_size,
819
839
// expansion of the metaspace.
820
840
result = Universe::heap ()->satisfy_failed_metadata_allocation (loader_data, word_size, mdtype);
821
841
}
822
- }
823
842
824
- if (result == NULL ) {
825
- report_metadata_oome (loader_data, word_size, type, mdtype, THREAD);
826
- assert (HAS_PENDING_EXCEPTION, " sanity" );
827
- return NULL ;
828
- }
843
+ if (result == NULL ) {
844
+ report_metadata_oome (loader_data, word_size, type, mdtype, THREAD);
845
+ assert (HAS_PENDING_EXCEPTION, " sanity" );
846
+ return NULL ;
847
+ }
829
848
830
- // Zero initialize.
831
- Copy::fill_to_words ((HeapWord*)result, word_size, 0 );
849
+ // Zero initialize.
850
+ Copy::fill_to_words ((HeapWord*)result, word_size, 0 );
832
851
833
- log_trace (metaspace)(" Metaspace::allocate: type %d return " PTR_FORMAT " ." , (int )type, p2i (result));
852
+ log_trace (metaspace)(" Metaspace::allocate: type %d return " PTR_FORMAT " ." , (int )type, p2i (result));
853
+ }
834
854
835
855
return result;
836
856
}
0 commit comments