< prev index next >

src/hotspot/share/opto/c2compiler.hpp

Print this page
rev 51888 : 8177899: Tests fail due to code cache exhaustion on machines with many cores
Summary: Implemented upper limit on CICompilerCount based on code cache size.
Reviewed-by: kvn, mdoerr

*** 24,33 **** --- 24,34 ---- #ifndef SHARE_VM_OPTO_C2COMPILER_HPP #define SHARE_VM_OPTO_C2COMPILER_HPP #include "compiler/abstractCompiler.hpp" + #include "opto/output.hpp" class C2Compiler : public AbstractCompiler { private: static bool init_c2_runtime();
*** 64,72 **** // Check if the compiler supports an intrinsic for 'method' given the // the dispatch mode specified by the 'is_virtual' parameter. virtual bool is_intrinsic_supported(const methodHandle& method, bool is_virtual); // Initial size of the code buffer (may be increased at runtime) ! static int initial_code_buffer_size(); }; #endif // SHARE_VM_OPTO_C2COMPILER_HPP --- 65,73 ---- // Check if the compiler supports an intrinsic for 'method' given the // the dispatch mode specified by the 'is_virtual' parameter. virtual bool is_intrinsic_supported(const methodHandle& method, bool is_virtual); // Initial size of the code buffer (may be increased at runtime) ! static int initial_code_buffer_size(int const_size = initial_const_capacity); }; #endif // SHARE_VM_OPTO_C2COMPILER_HPP
< prev index next >