commit | 82091dad38f3e5bfaf3b6984c9ab73069fb68310 | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Mon Jan 26 10:02:45 2015 +0000 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Fri Jan 30 09:34:25 2015 +0000 |
tree | f66bd397f64a13ee102e45e0b6267c5d55e77505 | |
parent | 28acb6feb50951645c37c077bd3897ea760ca322 [diff] [blame] |
Implement LICM in optimizing compiler. Change-Id: I9c8afb0a58ef45e568576015473cbfd5f011c242
diff --git a/compiler/optimizing/optimization.h b/compiler/optimizing/optimization.h index e36ef19..9315d89 100644 --- a/compiler/optimizing/optimization.h +++ b/compiler/optimizing/optimization.h
@@ -21,6 +21,10 @@ namespace art { +static const char* kLivenessPassName = "liveness"; +static const char* kRegisterAllocatorPassName = "register"; +static const char* kLoopInvariantCodeMotionPassName = "licm"; + /** * Abstraction to implement an optimization pass. */