diff options
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 6 | ||||
| -rw-r--r-- | compiler/oat_writer.cc | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 144271d581..47ef222bf8 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -64,7 +64,7 @@ static void DumpStat(size_t x, size_t y, const char* str) { if (x == 0 && y == 0) { return; } - LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; + VLOG(compiler) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; } class AOTCompilationStats { @@ -724,7 +724,7 @@ static void MaybeAddToImageClasses(mirror::Class* klass, CompilerDriver::Descrip std::pair<CompilerDriver::DescriptorSet::iterator, bool> result = image_classes->insert(descriptor); if (result.second) { - LOG(INFO) << "Adding " << descriptor << " to image classes"; + VLOG(compiler) << "Adding " << descriptor << " to image classes"; } else { return; } @@ -2070,7 +2070,7 @@ static void InitializeClass(const ParallelCompilationManager* manager, size_t cl } } if (!is_black_listed) { - LOG(INFO) << "Initializing: " << descriptor; + VLOG(compiler) << "Initializing: " << descriptor; if (StringPiece(descriptor) == "Ljava/lang/Void;") { // Hand initialize j.l.Void to avoid Dex file operations in un-started runtime. mirror::ObjectArray<mirror::Field>* fields = klass->GetSFields(); diff --git a/compiler/oat_writer.cc b/compiler/oat_writer.cc index ce88cf6dd6..b129026a24 100644 --- a/compiler/oat_writer.cc +++ b/compiler/oat_writer.cc @@ -464,7 +464,7 @@ bool OatWriter::Write(OutputStream& out) { if (kIsDebugBuild) { uint32_t size_total = 0; #define DO_STAT(x) \ - LOG(INFO) << #x "=" << PrettySize(x) << " (" << x << "B)"; \ + VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \ size_total += x; DO_STAT(size_dex_file_alignment_); @@ -495,7 +495,7 @@ bool OatWriter::Write(OutputStream& out) { DO_STAT(size_oat_class_method_offsets_); #undef DO_STAT - LOG(INFO) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \ + VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \ CHECK_EQ(file_offset + size_total, static_cast<uint32_t>(out.Seek(0, kSeekCurrent))); CHECK_EQ(size_, size_total); } |