hotspot/src/share/vm/shark/sharkCompiler.hpp
changeset 20707 b3b658c6d1f8
parent 15207 86fd7c602ddf
child 22234 da823d78ad65
equal deleted inserted replaced
20703:2de7fe0e9693 20707:b3b658c6d1f8
    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