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+

Description Benjamin Poulain 2013-03-30 20:46:18 PDT
Use Vector::reserveInitialCapacity and Vector::uncheckedAppend for JSC's APIs
Comment 1 Benjamin Poulain 2013-03-30 20:48:45 PDT
Created attachment 195885 [details]
Patch
Comment 2 Andreas Kling 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.
Comment 3 Benjamin Poulain 2013-04-01 12:38:15 PDT
Committed r147349: <http://trac.webkit.org/changeset/147349>