WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
135217
Allocate the whole RegExpMatchesArray backing store up front.
https://bugs.webkit.org/show_bug.cgi?id=135217
Summary
Allocate the whole RegExpMatchesArray backing store up front.
Andreas Kling
Reported
2014-07-23 15:24:28 PDT
Have patch.
Attachments
Patch
(2.42 KB, patch)
2014-07-23 15:25 PDT
,
Andreas Kling
ggaren
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Andreas Kling
Comment 1
2014-07-23 15:25:01 PDT
Created
attachment 235385
[details]
Patch
Geoffrey Garen
Comment 2
2014-07-25 11:22:58 PDT
Comment on
attachment 235385
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=235385&action=review
r=me
> Source/JavaScriptCore/runtime/RegExpMatchesArray.cpp:55 > +static inline Butterfly* createRegExpMatchesArrayButterfly(VM& vm, JSCell* intendedOwner, unsigned initialLength) > +{ > + Butterfly* butterfly = Butterfly::create( > + vm, intendedOwner, 0, 0, true, indexingHeaderForArray(initialLength, initialLength), > + ArrayStorage::sizeFor(initialLength)); > + ArrayStorage* storage = butterfly->arrayStorage(); > + storage->m_indexBias = 0; > + storage->m_sparseMap.clear(); > + storage->m_numValuesInVector = 0; > + return butterfly; > +}
Maybe this function should go in JSArray.h?
Andreas Kling
Comment 3
2014-08-14 20:22:19 PDT
Committed
r172618
: <
http://trac.webkit.org/changeset/172618
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug