diff options
author | Anwar Ghuloum <anwarg@google.com> | 2013-07-24 15:02:53 -0700 |
---|---|---|
committer | Anwar Ghuloum <anwarg@google.com> | 2013-07-25 16:20:22 -0700 |
commit | 6f28d91aab952e3244fbb4e707fa38f85538f374 (patch) | |
tree | 4ad68f49a154598599bc80d4596b7ee64e5923cc /compiler/driver/compiler_driver_test.cc | |
parent | 41a41fdfc5d38f1b389d5e6cf1a945c96170d3ed (diff) | |
download | android_art-6f28d91aab952e3244fbb4e707fa38f85538f374.tar.gz android_art-6f28d91aab952e3244fbb4e707fa38f85538f374.tar.bz2 android_art-6f28d91aab952e3244fbb4e707fa38f85538f374.zip |
Add systrace support to NewTimingLogger, migrate compiler timing logging to NewTimingLogger
Rpleaced old TimingLogger by NewTimingLogger, renamed NewTimingLogger to TimingLogger, added systrace support to TimingLogger.
Tests passing, phone booting, systrace working.
Change-Id: I2aeffb8bcb7f0fd979d8a2a3a8bcfbaa02413679
Diffstat (limited to 'compiler/driver/compiler_driver_test.cc')
-rw-r--r-- | compiler/driver/compiler_driver_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver_test.cc b/compiler/driver/compiler_driver_test.cc index 78cacaf08e..b06a3180fb 100644 --- a/compiler/driver/compiler_driver_test.cc +++ b/compiler/driver/compiler_driver_test.cc @@ -36,7 +36,7 @@ namespace art { class CompilerDriverTest : public CommonTest { protected: void CompileAll(jobject class_loader) LOCKS_EXCLUDED(Locks::mutator_lock_) { - TimingLogger timings("CompilerDriverTest::CompileAll", false); + base::TimingLogger timings("CompilerDriverTest::CompileAll", false, false); compiler_driver_->CompileAll(class_loader, Runtime::Current()->GetCompileTimeClassPath(class_loader), timings); |