--- old/src/share/vm/oops/instanceKlass.hpp 2014-03-31 12:04:15.662556000 -0400 +++ new/src/share/vm/oops/instanceKlass.hpp 2014-03-31 12:04:14.195942000 -0400 @@ -490,10 +490,10 @@ static Method* find_instance_method(Array* methods, Symbol* name, Symbol* signature); // find a local method index in default_methods (returns -1 if not found) - static int find_method_index(Array* methods, Symbol* name, Symbol* signature); + static int find_method_index(Array* methods, Symbol* name, Symbol* signature, bool ignore_overpass); // lookup operation (returns NULL if not found) - Method* uncached_lookup_method(Symbol* name, Symbol* signature) const; + Method* uncached_lookup_method(Symbol* name, Symbol* signature, bool ignore_overpass) const; // lookup a method in all the interfaces that this class implements // (returns NULL if not found) @@ -1020,6 +1020,10 @@ // Returns the array class with this class as element type Klass* array_klass_impl(bool or_null, TRAPS); + // find a local method (returns NULL if not found) + Method* find_method_impl(Symbol* name, Symbol* signature, bool ignore_overpass) const; + static Method* find_method_impl(Array* methods, Symbol* name, Symbol* signature, bool ignore_overpass); + // Free CHeap allocated fields. void release_C_heap_structures(); public: