Skip to content

Commit a28581a

Browse files
committedMar 2, 2022
8281681: compiler/profiling/spectrapredefineclass_classloaders/Launcher.java crash when CodeCache is full
Reviewed-by: alanb, rpressler
1 parent 0ff1f68 commit a28581a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎src/hotspot/cpu/aarch64/aarch64.ad

+4-3
Original file line numberDiff line numberDiff line change
@@ -3819,11 +3819,12 @@ encode %{
38193819
C2_MacroAssembler _masm(&cbuf);
38203820
int method_index = resolved_method_index(cbuf);
38213821
address call = __ ic_call((address)$meth$$method, method_index);
3822-
__ post_call_nop();
38233822
if (call == NULL) {
38243823
ciEnv::current()->record_failure("CodeCache is full");
38253824
return;
3826-
} else if (Compile::current()->max_vector_size() > 0) {
3825+
}
3826+
__ post_call_nop();
3827+
if (Compile::current()->max_vector_size() > 0) {
38273828
__ reinitialize_ptrue();
38283829
}
38293830
%}
@@ -3847,11 +3848,11 @@ encode %{
38473848
CodeBlob *cb = CodeCache::find_blob(entry);
38483849
if (cb) {
38493850
address call = __ trampoline_call(Address(entry, relocInfo::runtime_call_type));
3850-
__ post_call_nop();
38513851
if (call == NULL) {
38523852
ciEnv::current()->record_failure("CodeCache is full");
38533853
return;
38543854
}
3855+
__ post_call_nop();
38553856
} else {
38563857
Label retaddr;
38573858
__ adr(rscratch2, retaddr);

0 commit comments

Comments
 (0)
Please sign in to comment.