summaryrefslogtreecommitdiffstats
path: root/compiler/driver
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-09-17 10:03:58 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-09-17 10:03:58 +0000
commit7d029af44c45c56b3b7a271c54434c2dcec1e219 (patch)
tree91eac51207931dc9ff99bb0f93a184e0032d1480 /compiler/driver
parent97ca64b01e14de77ba14067b26069405d0dba0bf (diff)
parent88157efc1e16707d4ae10775d4acb15121c50fe7 (diff)
downloadart-7d029af44c45c56b3b7a271c54434c2dcec1e219.zip
art-7d029af44c45c56b3b7a271c54434c2dcec1e219.tar.gz
art-7d029af44c45c56b3b7a271c54434c2dcec1e219.tar.bz2
Merge "Add the "time" compilation filter and output compilation stats."
Diffstat (limited to 'compiler/driver')
-rw-r--r--compiler/driver/compiler_options.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h
index c0f91d1..eb3de97 100644
--- a/compiler/driver/compiler_options.h
+++ b/compiler/driver/compiler_options.h
@@ -27,7 +27,8 @@ class CompilerOptions {
kSpace, // Maximize space savings.
kBalanced, // Try to get the best performance return on compilation investment.
kSpeed, // Maximize runtime performance.
- kEverything // Force compilation (Note: excludes compilaton of class initializers).
+ kEverything, // Force compilation (Note: excludes compilation of class initializers).
+ kTime // Compile methods, but minimize compilation time.
};
// Guide heuristics to determine whether to compile method if profile data not available.