hotspot/src/share/vm/interpreter/abstractInterpreter.cpp
changeset 46727 6e4a84748e2c
parent 46630 75aa3e39d02c
equal deleted inserted replaced
46726:7801367e3cc9 46727:6e4a84748e2c
   107 
   107 
   108 
   108 
   109 //------------------------------------------------------------------------------------------------------------------------
   109 //------------------------------------------------------------------------------------------------------------------------
   110 // Entry points
   110 // Entry points
   111 
   111 
   112 AbstractInterpreter::MethodKind AbstractInterpreter::method_kind(methodHandle m) {
   112 AbstractInterpreter::MethodKind AbstractInterpreter::method_kind(const methodHandle& m) {
   113   // Abstract method?
   113   // Abstract method?
   114   if (m->is_abstract()) return abstract;
   114   if (m->is_abstract()) return abstract;
   115 
   115 
   116   // Method handle primitive?
   116   // Method handle primitive?
   117   if (m->is_method_handle_intrinsic()) {
   117   if (m->is_method_handle_intrinsic()) {