Make non-debug dex2oat omit timing and stats information

This is to try and avoid logcat rollovers during startup in stability monkey runs

Change-Id: I32a84517fdb97829d7efa3067cb99e2f38b049ae
diff --git a/src/compiler.h b/src/compiler.h
index 711ee71..2085f43 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -45,7 +45,8 @@
   // can assume will be in the image, with NULL implying all available
   // classes.
   explicit Compiler(InstructionSet instruction_set, bool image, size_t thread_count,
-                    bool support_debugging, const std::set<std::string>* image_classes);
+                    bool support_debugging, const std::set<std::string>* image_classes,
+                    bool dump_stats, bool dump_timings);
 
   ~Compiler();
 
@@ -277,6 +278,9 @@
 
   UniquePtr<AOTCompilationStats> stats_;
 
+  bool dump_stats_;
+  bool dump_timings_;
+
   const std::set<std::string>* image_classes_;
 
 #if defined(ART_USE_LLVM_COMPILER)