Bug 82028

Summary: cssText should use StringBuilder
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: CSSAssignee: Ryosuke Niwa <rniwa>
Status: RESOLVED FIXED    
Severity: Normal CC: abarth, eric, kling, koivisto, macpherson, menard, webkit.review.bot, zimmermann
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 81737    
Attachments:
Description Flags
Cleanup morrita: review+, rniwa: commit-queue+

Ryosuke Niwa
Reported 2012-03-23 00:07:09 PDT
StylePropertySet::asText should use StringBuilder instead of adding bunch of string literals and String by operator+ and operator+=.
Attachments
Cleanup (5.17 KB, patch)
2012-03-23 02:06 PDT, Ryosuke Niwa
morrita: review+
rniwa: commit-queue+
Ryosuke Niwa
Comment 1 2012-03-23 02:06:51 PDT
Ryosuke Niwa
Comment 2 2012-03-23 02:52:36 PDT
Nikolas Zimmermann
Comment 3 2012-03-23 04:08:55 PDT
Just came across your commit message: "Make StylePropertySet::asText more efficient by deploying StringBuilder; avoids heap churn by String::operator+ and String::operator+=." First of all this change is great and correct. For cases like this StringBuilder should be used (if we don't know before of many parts it consists, aka. how big the final string is). But "String a = stringB + "C" + "D" + stringC" doesn't involve any heap churns anymore, only String::operator+= is inefficient, String::operator+ uses magic, to avoid any immediate heap allocations, by figuring out the final buffer size before. So whenever you want to concat three strings (not necessarily of the same types, eg. a const char* with a String and an AtomicString), using String::operator+ is the easiest and most performant way. (Have a look at the StringAppend<> template stuff). Just wanted to let you know :-)
Ryosuke Niwa
Comment 4 2012-03-23 04:29:43 PDT
(In reply to comment #3) > Just came across your commit message: > "Make StylePropertySet::asText more efficient by deploying StringBuilder; avoids heap churn by String::operator+ and String::operator+=." > > First of all this change is great and correct. For cases like this StringBuilder should be used (if we don't know before of many parts it consists, aka. how big the final string is). > > But "String a = stringB + "C" + "D" + stringC" doesn't involve any heap churns anymore, only String::operator+= is inefficient, String::operator+ uses magic, to avoid any immediate heap allocations, by figuring out the final buffer size before. Okay, I wasn't sure if that optimization had been landed or not. Good to know it's in there :) Is it defined in WTFString.h?
Nikolas Zimmermann
Comment 5 2012-03-23 04:37:33 PDT
(In reply to comment #4) > Okay, I wasn't sure if that optimization had been landed or not. Good to know it's in there :) Is it defined in WTFString.h? wtf/text/text/StringOperators.h and StringConcatenate.h contain the code.
Note You need to log in before you can comment on or make changes to this bug.