RESOLVED FIXED82519
Yarr: if we're not using the output array, don't populate it!
https://bugs.webkit.org/show_bug.cgi?id=82519
Summary Yarr: if we're not using the output array, don't populate it!
Gavin Barraclough
Reported 2012-03-28 13:47:09 PDT
Add a new variant of the match method to RegExp that returns a MatchResult, and modify YarrJIT to be able to compile code that doesn't use an output vector.
Attachments
Fix (55.63 KB, patch)
2012-03-28 14:10 PDT, Gavin Barraclough
buildbot: commit-queue-
Fix (56.29 KB, patch)
2012-03-28 14:30 PDT, Gavin Barraclough
sam: review+
buildbot: commit-queue-
Gavin Barraclough
Comment 1 2012-03-28 14:10:52 PDT
WebKit Review Bot
Comment 2 2012-03-28 14:15:56 PDT
Attachment 134393 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/runtime/RegExp.h:62: The parameter name "globalData" adds no information, so it should be removed. [readability/parameter_name] [5] Source/JavaScriptCore/runtime/RegExp.h:62: The parameter name "s" adds no information, so it should be removed. [readability/parameter_name] [5] Source/JavaScriptCore/runtime/RegExp.cpp:456: An else statement can be removed when the prior "if" concludes with a return, break, continue or goto statement. [readability/control_flow] [4] Source/JavaScriptCore/runtime/RegExp.cpp:477: An else statement can be removed when the prior "if" concludes with a return, break, continue or goto statement. [readability/control_flow] [4] Source/JavaScriptCore/yarr/YarrJIT.cpp:350: Should have only a single space after a punctuation in a comment. [whitespace/comments] [5] Total errors found: 5 in 15 files If any of these errors are false positives, please file a bug against check-webkit-style.
Build Bot
Comment 3 2012-03-28 14:22:01 PDT
Gavin Barraclough
Comment 4 2012-03-28 14:30:50 PDT
Sam Weinig
Comment 5 2012-03-28 14:37:19 PDT
Comment on attachment 134403 [details] Fix View in context: https://bugs.webkit.org/attachment.cgi?id=134403&action=review > Source/JavaScriptCore/runtime/RegExp.cpp:221 > struct RegExpRepresentation { > -#if ENABLE(YARR_JIT) > - Yarr::YarrCodeBlock m_regExpJITCode; > -#endif > - OwnPtr<Yarr::BytecodePattern> m_regExpBytecode; > }; This is now an empty struct. Is that intentional?
Build Bot
Comment 6 2012-03-28 14:54:14 PDT
Build Bot
Comment 7 2012-03-28 14:58:09 PDT
Gavin Barraclough
Comment 8 2012-03-28 15:18:45 PDT
Fixed in r112454
Note You need to log in before you can comment on or make changes to this bug.