diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-06-02 19:36:14 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-06-02 19:36:14 +0000 |
commit | ec42ae9cd9aa343e82395d901e30d19a5da5bf38 (patch) | |
tree | ee0541ddd6a618216ef62242a2df4be566a14a2e /libstdc++-v3/testsuite | |
parent | 19c83bfb5d8140d63d59af338bc8a0400ae3df62 (diff) | |
download | gcc-ec42ae9cd9aa343e82395d901e30d19a5da5bf38.tar.gz |
* include/bits/regex_compiler.h (__detail::_BracketMatcher): Reorder
members to avoid wasted space when not using a cache.
(__detail::_BracketMatcher::_M_ready()): Sort and deduplicate set.
* include/bits/regex_compiler.tcc
(__detail::_BracketMatcher::_M_apply(_CharT, false_type)): Use binary
search on set.
* include/bits/regex_executor.h (__detail::_Executor::_Match_mode):
New enumeration type to indicate match mode.
(__detail::_Executor::_State_info): New type holding members only
needed in BFS-mode. Replace unique_ptr<vector<bool>> with
unique_ptr<bool[]>.
(__detail::_Executor::_M_rep_once_more, __detail::_Executor::_M_dfs):
Replace template parameter with run-time function parameter.
(__detail::_Executor::_M_main): Likewise. Dispatch to ...
(__detail::_Executor::_M_main_dispatch): New overloaded functions to
implement DFS and BFS mode.
* include/bits/regex_executor.tcc (__detail::_Executor::_M_main):
Split implementation into ...
(__detail::_Executor::_M_main_dispatch): New overloaded functions.
(__detail::_Executor::_M_lookahead): Create nested executor on stack.
(__detail::_Executor::_M_rep_once_more): Pass match mode as function
argument instead of template argument.
(__detail::_Executor::_M_dfs): Likewise.
* include/bits/regex_scanner.tcc: Fix typos in comments.
* testsuite/performance/28_regex/range.cc: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@211143 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite')
-rw-r--r-- | libstdc++-v3/testsuite/performance/28_regex/range.cc | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/performance/28_regex/range.cc b/libstdc++-v3/testsuite/performance/28_regex/range.cc new file mode 100644 index 00000000000..891cc2e2621 --- /dev/null +++ b/libstdc++-v3/testsuite/performance/28_regex/range.cc @@ -0,0 +1,41 @@ +// Copyright (C) 2014 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +#include <regex> +#include <testsuite_performance.h> + +using namespace __gnu_test; + +int main() +{ + time_counter time; + resource_counter resource; + + start_counters(time, resource); + + // this should get compiled to just L"[abcd]" + auto re = std::wregex(L'[' + std::wstring(300, L'a') + L"bc" + + std::wstring(1000, 'a') + L"d]"); + bool ok = true; + for (int i = 0; i < 100000; ++i) + ok = ok && (std::regex_match(L"b", re) && std::regex_match(L"d", re)); + + stop_counters(time, resource); + report_performance(__FILE__, "", time, resource); + + return ok ? 0 : 1; +} |