mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
6923043: failed nightly tests which use -XX:+PrintCompilation -Xcomp -XX:CompileOnly
Print "made not compilable" line only for deoptimizations. Reviewed-by: never
This commit is contained in:
parent
aecc4f4081
commit
d4878296c5
3 changed files with 12 additions and 9 deletions
|
@ -596,7 +596,10 @@ class methodOopDesc : public oopDesc {
|
|||
// whether it is not compilable for another reason like having a
|
||||
// breakpoint set in it.
|
||||
bool is_not_compilable(int comp_level = CompLevel_highest_tier) const;
|
||||
void set_not_compilable(int comp_level = CompLevel_highest_tier);
|
||||
void set_not_compilable(int comp_level = CompLevel_highest_tier, bool report = true);
|
||||
void set_not_compilable_quietly(int comp_level = CompLevel_highest_tier) {
|
||||
set_not_compilable(comp_level, false);
|
||||
}
|
||||
|
||||
bool is_not_osr_compilable() const { return is_not_compilable() || access_flags().is_not_osr_compilable(); }
|
||||
void set_not_osr_compilable() { _access_flags.set_not_osr_compilable(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue