diff options
author | 2017-07-28 15:58:41 -0700 | |
---|---|---|
committer | 2017-08-08 11:11:00 -0700 | |
commit | b29f684b74216e8d652c48ab9f86cc7d1b327e54 (patch) | |
tree | 393839a3b0e3d3aa0fde20beaef846303ce098c7 /compiler/optimizing/induction_var_range.h | |
parent | bf3710ecec95b2716d1c706b5661192dd9ea6c66 (diff) |
Set basic framework for detecting reductions.
Rationale:
Recognize reductions in loops. Note that reductions are *not*
optimized yet (we would proceed with e.g. unrolling and vectorization).
This CL merely sets up the basic detection framework. Also does
a bit of cleanup on loop optimization code.
Bug: 64091002
Test: test-art-host
Change-Id: I0f52bd7ca69936315b03d02e83da743b8ad0ae72
Diffstat (limited to 'compiler/optimizing/induction_var_range.h')
-rw-r--r-- | compiler/optimizing/induction_var_range.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/compiler/optimizing/induction_var_range.h b/compiler/optimizing/induction_var_range.h index ab1772bf15..0b980f596a 100644 --- a/compiler/optimizing/induction_var_range.h +++ b/compiler/optimizing/induction_var_range.h @@ -151,6 +151,16 @@ class InductionVarRange { } /** + * Checks if the given phi instruction has been classified as anything by + * induction variable analysis. Returns false for anything that cannot be + * classified statically, such as reductions or other complex cycles. + */ + bool IsClassified(HPhi* phi) const { + HLoopInformation* lp = phi->GetBlock()->GetLoopInformation(); // closest enveloping loop + return (lp != nullptr) && (induction_analysis_->LookupInfo(lp, phi) != nullptr); + } + + /** * Checks if header logic of a loop terminates. Sets trip-count tc if known. */ bool IsFinite(HLoopInformation* loop, /*out*/ int64_t* tc) const; |