src/share/vm/opto/c2compiler.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8132457 Cdiff src/share/vm/opto/c2compiler.hpp

src/share/vm/opto/c2compiler.hpp

Print this page

        

*** 49,78 **** static const char* retry_class_loading_during_parsing(); // Print compilation timers and statistics void print_timers(); - // Check the availability of an intrinsic for 'method' given a compilation context. - virtual bool is_intrinsic_available(methodHandle method, methodHandle compilation_context); - // Return true if the intrinsification of a method supported by the compiler ! // assuming a non-virtual dispatch. Return false otherwise. virtual bool is_intrinsic_supported(methodHandle method) { return is_intrinsic_supported(method, false); } // 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(methodHandle method, bool is_virtual); - // Processing of command-line flags specific to the C2 compiler. - virtual bool is_intrinsic_disabled_by_flag(methodHandle method) { - return is_intrinsic_disabled_by_flag(method, NULL); - } - - virtual bool is_intrinsic_disabled_by_flag(methodHandle method, methodHandle compilation_context); - // Initial size of the code buffer (may be increased at runtime) static int initial_code_buffer_size(); }; #endif // SHARE_VM_OPTO_C2COMPILER_HPP --- 49,71 ---- static const char* retry_class_loading_during_parsing(); // Print compilation timers and statistics void print_timers(); // Return true if the intrinsification of a method supported by the compiler ! // assuming a non-virtual dispatch. (A virtual dispatch is ! // possible for only a limited set of available intrinsics whereas ! // a non-virtual dispatch is possible for all available intrinsics.) ! // Return false otherwise. virtual bool is_intrinsic_supported(methodHandle method) { return is_intrinsic_supported(method, false); } // 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(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
src/share/vm/opto/c2compiler.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File