comparison src/share/vm/shark/sharkCompiler.hpp @ 12880:469216acdb28

8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash Summary: Ensure ensure correct initialization of compiler runtime Reviewed-by: kvn, twisti
author anoll
date Thu, 10 Oct 2013 15:44:12 +0200
parents 606eada1bf86
children de6a9e811145
comparison
equal deleted inserted replaced
12876:8b80b262e501 12880:469216acdb28
47 bool supports_native() { return true; } 47 bool supports_native() { return true; }
48 bool supports_osr() { return true; } 48 bool supports_osr() { return true; }
49 bool can_compile_method(methodHandle method) { 49 bool can_compile_method(methodHandle method) {
50 return ! (method->is_method_handle_intrinsic() || method->is_compiled_lambda_form()); 50 return ! (method->is_method_handle_intrinsic() || method->is_compiled_lambda_form());
51 } 51 }
52
53 // Customization
54 bool needs_adapters() { return false; }
55 bool needs_stubs() { return false; }
56 52
57 // Initialization 53 // Initialization
58 void initialize(); 54 void initialize();
59 55
60 // Compile a normal (bytecode) method and install it in the VM 56 // Compile a normal (bytecode) method and install it in the VM