]> granicus.if.org Git - clang/commitdiff
Print the number (and percentage) of identifiers read from the PCH file as part of...
authorDouglas Gregor <dgregor@apple.com>
Mon, 13 Apr 2009 20:50:16 +0000 (20:50 +0000)
committerDouglas Gregor <dgregor@apple.com>
Mon, 13 Apr 2009 20:50:16 +0000 (20:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68985 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Frontend/PCHReader.cpp

index c843e81fec2f0a9807a0e2258e198b84ab88fa68..f735dd97ac1cf407fca586731b495eae1a92b0d6 100644 (file)
@@ -1158,12 +1158,21 @@ void PCHReader::PrintStats() {
   unsigned NumDeclsLoaded = std::count(DeclAlreadyLoaded.begin(),
                                        DeclAlreadyLoaded.end(),
                                        true);
+  unsigned NumIdentifiersLoaded = 0;
+  for (unsigned I = 0; I < IdentifierData.size(); ++I) {
+    if ((IdentifierData[I] & 0x01) == 0)
+      ++NumIdentifiersLoaded;
+  }
+
   std::fprintf(stderr, "  %u/%u types read (%f%%)\n",
                NumTypesLoaded, (unsigned)TypeAlreadyLoaded.size(),
-               ((float)NumTypesLoaded/(float)TypeAlreadyLoaded.size() * 100));
+               ((float)NumTypesLoaded/TypeAlreadyLoaded.size() * 100));
   std::fprintf(stderr, "  %u/%u declarations read (%f%%)\n",
                NumDeclsLoaded, (unsigned)DeclAlreadyLoaded.size(),
-               ((float)NumDeclsLoaded/(float)DeclAlreadyLoaded.size() * 100));
+               ((float)NumDeclsLoaded/DeclAlreadyLoaded.size() * 100));
+  std::fprintf(stderr, "  %u/%u identifiers read (%f%%)\n",
+               NumIdentifiersLoaded, (unsigned)IdentifierData.size(),
+               ((float)NumIdentifiersLoaded/IdentifierData.size() * 100));
   std::fprintf(stderr, "\n");
 }