Changeset 156902 in webkit


Ignore:
Timestamp:
Oct 4, 2013, 11:41:09 AM (12 years ago)
Author:
ap@apple.com
Message:

Optimize strings copies in srcset parser
https://bugs.webkit.org/show_bug.cgi?id=121899

Patch by Romain Perier <Romain Perier> on 2013-10-04
Reviewed by Alexey Proskuryakov.

No new tests, covered by existing ones.

  • html/parser/HTMLParserIdioms.cpp:

(WebCore::parseImagesWithScaleFromSrcsetAttribute): Don't copy
image.imageURL at each loop iteration, save indexes instead.
(WebCore::bestFitSourceForImageAttributes): Make a String for
the URL only when the corresponding candidate is chosen
by the selection algorithm. It reduces the number of copies
significantly and improves performance
(around 30% with the "Release" profile and 60% with the "Debug" one).

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r156894 r156902  
     12013-10-04  Romain Perier  <romain.perier@gmail.com>
     2
     3        Optimize strings copies in srcset parser
     4        https://bugs.webkit.org/show_bug.cgi?id=121899
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        No new tests, covered by existing ones.
     9
     10        * html/parser/HTMLParserIdioms.cpp:
     11        (WebCore::parseImagesWithScaleFromSrcsetAttribute): Don't copy
     12        image.imageURL at each loop iteration, save indexes instead.
     13        (WebCore::bestFitSourceForImageAttributes): Make a String for
     14        the URL only when the corresponding candidate is chosen
     15        by the selection algorithm. It reduces the number of copies
     16        significantly and improves performance
     17        (around 30% with the "Release" profile and 60% with the "Debug" one).
     18
    1192013-10-04  Alexey Proskuryakov  <ap@apple.com>
    220
  • trunk/Source/WebCore/html/parser/HTMLParserIdioms.cpp

    r156550 r156902  
    301301
    302302struct ImageWithScale {
    303     String imageURL;
     303    unsigned imageURLStart;
     304    unsigned imageURLLength;
    304305    float scaleFactor;
    305     bool operator==(const ImageWithScale& image) const
     306
     307    ImageWithScale()
     308        : imageURLStart(0)
     309        , imageURLLength(0)
     310        , scaleFactor(1)
     311    {
     312    }
     313
     314    bool hasImageURL() const
    306315    {
    307         return scaleFactor == image.scaleFactor && imageURL == image.imageURL;
     316        return imageURLLength;
    308317    }
    309318};
     
    391400        }
    392401        ImageWithScale image;
    393         image.imageURL = String(srcsetAttribute.characters() + imageURLStart, imageURLEnd - imageURLStart);
     402        image.imageURLStart = imageURLStart;
     403        image.imageURLLength = imageURLEnd - imageURLStart;
    394404        image.scaleFactor = imageScaleFactor;
    395405
     
    407417
    408418    if (!srcAttribute.isEmpty()) {
    409         ImageWithScale image;
    410         image.imageURL = srcAttribute;
    411         image.scaleFactor = 1.0;
    412 
    413         imageCandidates.append(image);
     419        ImageWithScale srcPlaceholderImage;
     420        imageCandidates.append(srcPlaceholderImage);
    414421    }
    415422
     
    421428    for (size_t i = 0; i < imageCandidates.size() - 1; ++i) {
    422429        if (imageCandidates[i].scaleFactor >= deviceScaleFactor)
    423             return String(imageCandidates[i].imageURL);
    424     }
    425     return String(imageCandidates.last().imageURL);
    426 }
    427 
    428 }
     430            return imageCandidates[i].hasImageURL() ? srcsetAttribute.substringSharingImpl(imageCandidates[i].imageURLStart, imageCandidates[i].imageURLLength) : srcAttribute;
     431    }
     432    const ImageWithScale& lastCandidate = imageCandidates.last();
     433    return lastCandidate.hasImageURL() ? srcsetAttribute.substringSharingImpl(lastCandidate.imageURLStart, lastCandidate.imageURLLength) : srcAttribute;
     434}
     435
     436}
Note: See TracChangeset for help on using the changeset viewer.