mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8007288: Additional WB API for compiler's testing
Reviewed-by: kvn, vlivanov
This commit is contained in:
parent
12be356d81
commit
ca90185607
19 changed files with 376 additions and 75 deletions
|
@ -827,6 +827,10 @@ inline bool is_highest_tier_compile(int comp_level) {
|
|||
return comp_level == CompLevel_highest_tier;
|
||||
}
|
||||
|
||||
inline bool is_compile(int comp_level) {
|
||||
return is_c1_compile(comp_level) || is_c2_compile(comp_level);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
// 'Forward' declarations of frequently used classes
|
||||
// (in order to reduce interface dependencies & reduce
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue