Changeset 156902 in webkit
- Timestamp:
- Oct 4, 2013, 11:41:09 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r156894 r156902 1 2013-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 1 19 2013-10-04 Alexey Proskuryakov <ap@apple.com> 2 20 -
trunk/Source/WebCore/html/parser/HTMLParserIdioms.cpp
r156550 r156902 301 301 302 302 struct ImageWithScale { 303 String imageURL; 303 unsigned imageURLStart; 304 unsigned imageURLLength; 304 305 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 306 315 { 307 return scaleFactor == image.scaleFactor && imageURL == image.imageURL;316 return imageURLLength; 308 317 } 309 318 }; … … 391 400 } 392 401 ImageWithScale image; 393 image.imageURL = String(srcsetAttribute.characters() + imageURLStart, imageURLEnd - imageURLStart); 402 image.imageURLStart = imageURLStart; 403 image.imageURLLength = imageURLEnd - imageURLStart; 394 404 image.scaleFactor = imageScaleFactor; 395 405 … … 407 417 408 418 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); 414 421 } 415 422 … … 421 428 for (size_t i = 0; i < imageCandidates.size() - 1; ++i) { 422 429 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.