Bug 113651

Summary: Use Vector::reserveInitialCapacity and Vector::uncheckedAppend for JSC's APIs
Product: WebKit Reporter: Benjamin Poulain <benjamin>
Component: New BugsAssignee: Benjamin Poulain <benjamin>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch kling: review+

Benjamin Poulain
Reported 2013-03-30 20:46:18 PDT
Use Vector::reserveInitialCapacity and Vector::uncheckedAppend for JSC's APIs
Attachments
Patch (6.22 KB, patch)
2013-03-30 20:48 PDT, Benjamin Poulain
kling: review+
Benjamin Poulain
Comment 1 2013-03-30 20:48:45 PDT
Andreas Kling
Comment 2 2013-03-31 03:33:07 PDT
Comment on attachment 195885 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=195885&action=review Sure, r=me. > Source/JavaScriptCore/API/JSCallbackConstructor.cpp:79 > + for (size_t i = 0; i < argumentCount; i++) If I was driving by in this neighborhood, I'd change the i++ to ++i because reasons. > Source/JavaScriptCore/API/JSCallbackFunction.cpp:75 > + for (size_t i = 0; i < argumentCount; i++) And here. > Source/JavaScriptCore/API/JSCallbackObjectFunctions.h:374 > + for (size_t i = 0; i < argumentCount; i++) Probably also here. > Source/JavaScriptCore/API/JSCallbackObjectFunctions.h:441 > + for (size_t i = 0; i < argumentCount; i++) Not sure about here. Well, yeah okay here too.
Benjamin Poulain
Comment 3 2013-04-01 12:38:15 PDT
Note You need to log in before you can comment on or make changes to this bug.