mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8257634: C2: Introduce IncrementalInliningForceCleanup diagnostic flag
Reviewed-by: kvn, adityam, thartmann
This commit is contained in:
parent
af6b7f9c55
commit
fd6756ee2b
4 changed files with 8 additions and 1 deletions
|
@ -1880,7 +1880,9 @@ bool Compile::inline_incrementally_one() {
|
|||
|
||||
set_inlining_progress(false);
|
||||
set_do_cleanup(false);
|
||||
return (_late_inlines.length() > 0) && !needs_cleanup;
|
||||
|
||||
bool force_cleanup = directive()->IncrementalInlineForceCleanupOption;
|
||||
return (_late_inlines.length() > 0) && !needs_cleanup && !force_cleanup;
|
||||
}
|
||||
|
||||
void Compile::inline_incrementally_cleanup(PhaseIterGVN& igvn) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue