comparison src/share/vm/code/nmethod.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents b10e42998d01
children ab59ee6c581b
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
708 // PrimitiveIC* primitiveIC_at(char* p) const; 708 // PrimitiveIC* primitiveIC_at(char* p) const;
709 oop embeddedOop_at(address p); 709 oop embeddedOop_at(address p);
710 710
711 // tells if any of this method's dependencies have been invalidated 711 // tells if any of this method's dependencies have been invalidated
712 // (this is expensive!) 712 // (this is expensive!)
713 static void check_all_dependencies(DepChange& changes); 713 bool check_all_dependencies();
714 714
715 // tells if this compiled method is dependent on the given changes, 715 // tells if this compiled method is dependent on the given changes,
716 // and the changes have invalidated it 716 // and the changes have invalidated it
717 bool check_dependency_on(DepChange& changes); 717 bool check_dependency_on(DepChange& changes);
718 718