comparison src/share/vm/shark/sharkCompiler.hpp @ 7643:3ac7d10a6572

Merge with hsx25/hotspot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 31 Jan 2013 15:42:25 +0100
parents 606eada1bf86
children 469216acdb28
comparison
equal deleted inserted replaced
7573:17b6a63fe7c2 7643:3ac7d10a6572
44 const char *name() { return "shark"; } 44 const char *name() { return "shark"; }
45 45
46 // Missing feature tests 46 // Missing feature tests
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) {
50 return ! (method->is_method_handle_intrinsic() || method->is_compiled_lambda_form());
51 }
49 52
50 // Customization 53 // Customization
51 bool needs_adapters() { return false; } 54 bool needs_adapters() { return false; }
52 bool needs_stubs() { return false; } 55 bool needs_stubs() { return false; }
53 56