]> git.saurik.com Git - apt.git/commitdiff
Optimize VersionHash() to not need temporary copy of input
authorJulian Andres Klode <jak@debian.org>
Tue, 27 Sep 2016 16:28:55 +0000 (18:28 +0200)
committerJulian Andres Klode <jak@debian.org>
Tue, 22 Nov 2016 21:58:18 +0000 (22:58 +0100)
Stop copying stuff, and just parse the bytes one by-one to the
newly created AddCRC16Byte. This improves the instruction count
for an update run from 720,850,121 to 455,801,749 according to
callgrind.

apt-pkg/contrib/crc-16.cc
apt-pkg/contrib/crc-16.h
apt-pkg/deb/deblistparser.cc

index f5df2d8b13af258643249341d904c12ba79df0ed..250d7664a199b9e6fa1d2cfc4bf6b552ef34d9f7 100644 (file)
@@ -64,6 +64,10 @@ static unsigned short const crc16_table[256] =
 
 /* Recompute the FCS with one more character appended. */
 #define CalcFCS(fcs, c) (((fcs) >> 8) ^ crc16_table[((fcs) ^ (c)) & 0xff])
+unsigned short AddCRC16Byte(unsigned short fcs, unsigned char byte)
+{
+   return CalcFCS(fcs, byte);
+}
 unsigned short AddCRC16(unsigned short fcs, void const *Buf,
                        unsigned long long len)
 {
index 08acdafb79c837bef5c4b2be24e6cd64402fb21c..6cc3556c6f8081d28c36bd56a23d38d11dda8363 100644 (file)
@@ -13,6 +13,7 @@
 #include <apt-pkg/macros.h>
 
 #define INIT_FCS  0xffff
+unsigned short AddCRC16Byte(unsigned short fcs, unsigned char byte) APT_CONST;
 unsigned short AddCRC16(unsigned short fcs, void const *buf,
                        unsigned long long len) APT_PURE;
 
index 549e75952885ad0af823ed791ecf261a61a2f9e5..15251bce433d2b0d1c4658acf39d8db20ef460be 100644 (file)
@@ -353,7 +353,6 @@ unsigned short debListParser::VersionHash()
       pkgTagSection::Key::Breaks,
       pkgTagSection::Key::Replaces};
    unsigned long Result = INIT_FCS;
-   char S[1024];
    for (auto I : Sections)
    {
       const char *Start;
@@ -363,23 +362,16 @@ unsigned short debListParser::VersionHash()
       
       /* Strip out any spaces from the text, this undoes dpkgs reformatting
          of certain fields. dpkg also has the rather interesting notion of
-         reformatting depends operators < -> <= */
-      char *J = S;
-      for (; Start != End && (J - S) < sizeof(S); ++Start)
+         reformatting depends operators < -> <=, so we drop all = from the
+        string to make that not matter. */
+      for (; Start != End; ++Start)
       {
-        if (isspace_ascii(*Start) != 0)
+        if (isspace_ascii(*Start) != 0 || *Start == '=')
            continue;
-        *J++ = tolower_ascii_unsafe(*Start);
-
-        /* Normalize <= to < and >= to >. This is the wrong way around, but
-         * more efficient that the right way. And since we're only hashing
-         * it does not matter which way we normalize. */
-        if ((*Start == '<' || *Start == '>') && Start[1] == '=') {
-           Start++;
-        }
+        Result = AddCRC16Byte(Result, tolower_ascii_unsafe(*Start));
       }
 
-      Result = AddCRC16(Result,S,J - S);
+
    }
    
    return Result;