File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3819,11 +3819,12 @@ encode %{
3819
3819
C2_MacroAssembler _masm(&cbuf);
3820
3820
int method_index = resolved_method_index(cbuf);
3821
3821
address call = __ ic_call((address)$meth$$method, method_index);
3822
- __ post_call_nop();
3823
3822
if (call == NULL) {
3824
3823
ciEnv::current()->record_failure("CodeCache is full");
3825
3824
return;
3826
- } else if (Compile::current()->max_vector_size() > 0) {
3825
+ }
3826
+ __ post_call_nop();
3827
+ if (Compile::current()->max_vector_size() > 0) {
3827
3828
__ reinitialize_ptrue();
3828
3829
}
3829
3830
%}
@@ -3847,11 +3848,11 @@ encode %{
3847
3848
CodeBlob *cb = CodeCache::find_blob(entry);
3848
3849
if (cb) {
3849
3850
address call = __ trampoline_call(Address(entry, relocInfo::runtime_call_type));
3850
- __ post_call_nop();
3851
3851
if (call == NULL) {
3852
3852
ciEnv::current()->record_failure("CodeCache is full");
3853
3853
return;
3854
3854
}
3855
+ __ post_call_nop();
3855
3856
} else {
3856
3857
Label retaddr;
3857
3858
__ adr(rscratch2, retaddr);
You can’t perform that action at this time.
0 commit comments