< prev index next >

src/cpu/x86/vm/c1_CodeStubs_x86.cpp

Print this page

        

@@ -500,10 +500,13 @@
   }
 
   ce->align_call(lir_static_call);
 
   ce->emit_static_call_stub();
+  if (ce->compilation()->bailed_out()) {
+    return; // CodeCache is full
+  }
   AddressLiteral resolve(SharedRuntime::get_resolve_static_call_stub(),
                          relocInfo::static_call_type);
   __ call(resolve);
   ce->add_call_info_here(info());
 
< prev index next >