mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
Fixed Whitebox.deoptimizeMethod() to deoptimize all OSR versions of the method. Reviewed-by: kvn, iignatyev
This commit is contained in:
parent
8aa05f7690
commit
fe1762fbd6
5 changed files with 119 additions and 12 deletions
|
@ -742,6 +742,7 @@ class InstanceKlass: public Klass {
|
|||
void set_osr_nmethods_head(nmethod* h) { _osr_nmethods_head = h; };
|
||||
void add_osr_nmethod(nmethod* n);
|
||||
void remove_osr_nmethod(nmethod* n);
|
||||
int mark_osr_nmethods(const Method* m);
|
||||
nmethod* lookup_osr_nmethod(const Method* m, int bci, int level, bool match_level) const;
|
||||
|
||||
// Breakpoint support (see methods on Method* for details)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue