src/hotspot/share/interpreter/interpreterRuntime.cpp
changeset 57745 789e967c2731
parent 55625 f7e8dbb77156
child 57893 49fea19f0726
equal deleted inserted replaced
57739:6717d7e59db4 57745:789e967c2731
  1438       } else {
  1438       } else {
  1439         // set handler
  1439         // set handler
  1440         method->set_signature_handler(_handlers->at(handler_index));
  1440         method->set_signature_handler(_handlers->at(handler_index));
  1441       }
  1441       }
  1442     } else {
  1442     } else {
  1443       CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
  1443       DEBUG_ONLY(Thread::current()->check_possible_safepoint());
  1444       // use generic signature handler
  1444       // use generic signature handler
  1445       method->set_signature_handler(Interpreter::slow_signature_handler());
  1445       method->set_signature_handler(Interpreter::slow_signature_handler());
  1446     }
  1446     }
  1447   }
  1447   }
  1448 #ifdef ASSERT
  1448 #ifdef ASSERT