mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-30 07:14:09 +08:00
codecvt_members.cc (codecvt::do_length): Rewrite, using both mbsnrtowcs and mbrtowc in a loop...
2003-11-25 Paolo Carlini <pcarlini@suse.de> * config/locale/gnu/codecvt_members.cc (codecvt::do_length): Rewrite, using both mbsnrtowcs and mbrtowc in a loop: the former is very fast, but stops if encounters a NUL. (codecvt::do_out): Tweaks. (codecvt::do_in): Tweaks, improve the code dealing with errors. * testsuite/performance/wchar_t_length.cc: New. From-SVN: r73934
This commit is contained in:
parent
eb459c81bf
commit
5af91f0690
@ -1,3 +1,12 @@
|
|||||||
|
2003-11-25 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
|
* config/locale/gnu/codecvt_members.cc (codecvt::do_length):
|
||||||
|
Rewrite, using both mbsnrtowcs and mbrtowc in a loop: the
|
||||||
|
former is very fast, but stops if encounters a NUL.
|
||||||
|
(codecvt::do_out): Tweaks.
|
||||||
|
(codecvt::do_in): Tweaks, improve the code dealing with errors.
|
||||||
|
* testsuite/performance/wchar_t_length.cc: New.
|
||||||
|
|
||||||
2003-11-24 Paolo Carlini <pcarlini@suse.de>
|
2003-11-24 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
* config/locale/gnu/codecvt_members.cc (codecvt::do_in):
|
* config/locale/gnu/codecvt_members.cc (codecvt::do_in):
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// std::codecvt implementation details, GNU version -*- C++ -*-
|
// std::codecvt implementation details, GNU version -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2002 Free Software Foundation, Inc.
|
// Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// 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
|
// software; you can redistribute it and/or modify it under the
|
||||||
@ -57,17 +57,16 @@ namespace std
|
|||||||
// wcsnrtombs is *very* fast but stops if encounters NUL characters:
|
// wcsnrtombs is *very* fast but stops if encounters NUL characters:
|
||||||
// in case we fall back to wcrtomb and then continue, in a loop.
|
// in case we fall back to wcrtomb and then continue, in a loop.
|
||||||
// NB: wcsnrtombs is a GNU extension
|
// NB: wcsnrtombs is a GNU extension
|
||||||
__from_next = __from;
|
for (__from_next = __from, __to_next = __to;
|
||||||
__to_next = __to;
|
__from_next < __from_end && __to_next < __to_end
|
||||||
while (__from_next < __from_end && __to_next < __to_end
|
&& __ret == ok;)
|
||||||
&& __ret == ok)
|
|
||||||
{
|
{
|
||||||
const intern_type* __from_chunk_end = wmemchr(__from_next, L'\0',
|
const intern_type* __from_chunk_end = wmemchr(__from_next, L'\0',
|
||||||
__from_end - __from_next);
|
__from_end - __from_next);
|
||||||
if (!__from_chunk_end)
|
if (!__from_chunk_end)
|
||||||
__from_chunk_end = __from_end;
|
__from_chunk_end = __from_end;
|
||||||
|
|
||||||
const intern_type* __tmp_from = __from_next;
|
__from = __from_next;
|
||||||
const size_t __conv = wcsnrtombs(__to_next, &__from_next,
|
const size_t __conv = wcsnrtombs(__to_next, &__from_next,
|
||||||
__from_chunk_end - __from_next,
|
__from_chunk_end - __from_next,
|
||||||
__to_end - __to_next, &__state);
|
__to_end - __to_next, &__state);
|
||||||
@ -76,9 +75,9 @@ namespace std
|
|||||||
// In case of error, in order to stop at the exact place we
|
// In case of error, in order to stop at the exact place we
|
||||||
// have to start again from the beginning with a series of
|
// have to start again from the beginning with a series of
|
||||||
// wcrtomb.
|
// wcrtomb.
|
||||||
while (__tmp_from < __from_next)
|
for (; __from < __from_next; ++__from)
|
||||||
__to_next += wcrtomb(__to_next, *__tmp_from++, &__tmp_state);
|
__to_next += wcrtomb(__to_next, *__from, &__tmp_state);
|
||||||
__state = __tmp_state;
|
__state = __tmp_state;
|
||||||
__ret = error;
|
__ret = error;
|
||||||
}
|
}
|
||||||
else if (__from_next && __from_next < __from_chunk_end)
|
else if (__from_next && __from_next < __from_chunk_end)
|
||||||
@ -133,10 +132,9 @@ namespace std
|
|||||||
// mbsnrtowcs is *very* fast but stops if encounters NUL characters:
|
// mbsnrtowcs is *very* fast but stops if encounters NUL characters:
|
||||||
// in case we store a L'\0' and then continue, in a loop.
|
// in case we store a L'\0' and then continue, in a loop.
|
||||||
// NB: mbsnrtowcs is a GNU extension
|
// NB: mbsnrtowcs is a GNU extension
|
||||||
__from_next = __from;
|
for (__from_next = __from, __to_next = __to;
|
||||||
__to_next = __to;
|
__from_next < __from_end && __to_next < __to_end
|
||||||
while (__from_next < __from_end && __to_next < __to_end
|
&& __ret == ok;)
|
||||||
&& __ret == ok)
|
|
||||||
{
|
{
|
||||||
const extern_type* __from_chunk_end;
|
const extern_type* __from_chunk_end;
|
||||||
__from_chunk_end = static_cast<const extern_type*>(memchr(__from_next, '\0',
|
__from_chunk_end = static_cast<const extern_type*>(memchr(__from_next, '\0',
|
||||||
@ -145,7 +143,7 @@ namespace std
|
|||||||
if (!__from_chunk_end)
|
if (!__from_chunk_end)
|
||||||
__from_chunk_end = __from_end;
|
__from_chunk_end = __from_end;
|
||||||
|
|
||||||
const extern_type* __tmp_from = __from_next;
|
__from = __from_next;
|
||||||
const size_t __conv = mbsnrtowcs(__to_next, &__from_next,
|
const size_t __conv = mbsnrtowcs(__to_next, &__from_next,
|
||||||
__from_chunk_end - __from_next,
|
__from_chunk_end - __from_next,
|
||||||
__to_end - __to_next, &__state);
|
__to_end - __to_next, &__state);
|
||||||
@ -154,9 +152,18 @@ namespace std
|
|||||||
// In case of error, in order to stop at the exact place we
|
// In case of error, in order to stop at the exact place we
|
||||||
// have to start again from the beginning with a series of
|
// have to start again from the beginning with a series of
|
||||||
// mbrtowc.
|
// mbrtowc.
|
||||||
while (__tmp_from < __from_next)
|
for (;;)
|
||||||
__tmp_from += mbrtowc(__to_next++, __tmp_from,
|
{
|
||||||
__from_next - __tmp_from, &__tmp_state);
|
const size_t __conv_err = mbrtowc(__to_next, __from,
|
||||||
|
__from_end - __from,
|
||||||
|
&__tmp_state);
|
||||||
|
if (__conv_err == static_cast<size_t>(-1)
|
||||||
|
|| __conv_err == static_cast<size_t>(-2))
|
||||||
|
break;
|
||||||
|
__from += __conv_err;
|
||||||
|
++__to_next;
|
||||||
|
}
|
||||||
|
__from_next = __from;
|
||||||
__state = __tmp_state;
|
__state = __tmp_state;
|
||||||
__ret = error;
|
__ret = error;
|
||||||
}
|
}
|
||||||
@ -177,6 +184,7 @@ namespace std
|
|||||||
if (__to_next < __to_end)
|
if (__to_next < __to_end)
|
||||||
{
|
{
|
||||||
// XXX Probably wrong for stateful encodings
|
// XXX Probably wrong for stateful encodings
|
||||||
|
__tmp_state = __state;
|
||||||
++__from_next;
|
++__from_next;
|
||||||
*__to_next++ = L'\0';
|
*__to_next++ = L'\0';
|
||||||
}
|
}
|
||||||
@ -232,39 +240,70 @@ namespace std
|
|||||||
{
|
{
|
||||||
int __ret = 0;
|
int __ret = 0;
|
||||||
state_type __tmp_state(__state);
|
state_type __tmp_state(__state);
|
||||||
|
|
||||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
||||||
__c_locale __old = __uselocale(_M_c_locale_codecvt);
|
__c_locale __old = __uselocale(_M_c_locale_codecvt);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// mbsnrtowcs is *very* fast but stops if encounters NUL characters:
|
||||||
|
// in case we advance past it and then continue, in a loop.
|
||||||
|
// NB: mbsnrtowcs is a GNU extension
|
||||||
|
|
||||||
|
// A dummy internal buffer is needed in order for mbsnrtocws to consider
|
||||||
|
// its fourth parameter (it wouldn't with NULL as first parameter).
|
||||||
|
wchar_t* __to = static_cast<wchar_t*>(__builtin_alloca(sizeof(wchar_t)
|
||||||
|
* __max));
|
||||||
while (__from < __end && __max)
|
while (__from < __end && __max)
|
||||||
{
|
{
|
||||||
size_t __conv = mbrtowc(NULL, __from, __end - __from, &__tmp_state);
|
const extern_type* __from_chunk_end;
|
||||||
|
__from_chunk_end = static_cast<const extern_type*>(memchr(__from, '\0',
|
||||||
|
__end
|
||||||
|
- __from));
|
||||||
|
if (!__from_chunk_end)
|
||||||
|
__from_chunk_end = __end;
|
||||||
|
|
||||||
|
const extern_type* __tmp_from = __from;
|
||||||
|
const size_t __conv = mbsnrtowcs(__to, &__from,
|
||||||
|
__from_chunk_end - __from,
|
||||||
|
__max, &__state);
|
||||||
if (__conv == static_cast<size_t>(-1))
|
if (__conv == static_cast<size_t>(-1))
|
||||||
{
|
{
|
||||||
// Invalid source character
|
// In case of error, in order to stop at the exact place we
|
||||||
|
// have to start again from the beginning with a series of
|
||||||
|
// mbrtowc.
|
||||||
|
for (__from = __tmp_from;;)
|
||||||
|
{
|
||||||
|
const size_t __conv_err = mbrtowc(NULL, __from, __end - __from,
|
||||||
|
&__tmp_state);
|
||||||
|
if (__conv_err == static_cast<size_t>(-1)
|
||||||
|
|| __conv_err == static_cast<size_t>(-2))
|
||||||
|
break;
|
||||||
|
__from += __conv_err;
|
||||||
|
}
|
||||||
|
__state = __tmp_state;
|
||||||
|
__ret += __from - __tmp_from;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (__conv == static_cast<size_t>(-2))
|
if (!__from)
|
||||||
{
|
__from = __from_chunk_end;
|
||||||
// Remainder of input does not form a complete destination
|
|
||||||
// character.
|
__ret += __from - __tmp_from;
|
||||||
break;
|
__max -= __conv;
|
||||||
}
|
|
||||||
else if (__conv == 0)
|
if (__from < __end && __max)
|
||||||
{
|
{
|
||||||
// XXX Probably wrong for stateful encodings
|
// XXX Probably wrong for stateful encodings
|
||||||
__conv = 1;
|
__tmp_state = __state;
|
||||||
|
++__from;
|
||||||
|
++__ret;
|
||||||
|
--__max;
|
||||||
}
|
}
|
||||||
|
|
||||||
__state = __tmp_state;
|
|
||||||
__from += __conv;
|
|
||||||
__ret += __conv;
|
|
||||||
__max--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
||||||
__uselocale(__old);
|
__uselocale(__old);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return __ret;
|
return __ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
62
libstdc++-v3/testsuite/performance/wchar_t_length.cc
Normal file
62
libstdc++-v3/testsuite/performance/wchar_t_length.cc
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
// Copyright (C) 2003 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 2, 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 COPYING. If not, write to the Free
|
||||||
|
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||||
|
// USA.
|
||||||
|
|
||||||
|
// As a special exception, you may use this file as part of a free software
|
||||||
|
// library without restriction. Specifically, if other files instantiate
|
||||||
|
// templates or use macros or inline functions from this file, or you compile
|
||||||
|
// this file and link it with other files to produce an executable, this
|
||||||
|
// file does not by itself cause the resulting executable to be covered by
|
||||||
|
// the GNU General Public License. This exception does not however
|
||||||
|
// invalidate any other reasons why the executable file might be covered by
|
||||||
|
// the GNU General Public License.
|
||||||
|
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstring>
|
||||||
|
#include <fstream>
|
||||||
|
#include <langinfo.h>
|
||||||
|
#include <iconv.h>
|
||||||
|
#include <testsuite_performance.h>
|
||||||
|
|
||||||
|
// libstdc++/11602 (do_length)
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
using namespace std;
|
||||||
|
using namespace __gnu_test;
|
||||||
|
|
||||||
|
time_counter time;
|
||||||
|
resource_counter resource;
|
||||||
|
const int iters = 400000;
|
||||||
|
|
||||||
|
char cbuf[1024];
|
||||||
|
|
||||||
|
memset(cbuf, 'a', 1024);
|
||||||
|
|
||||||
|
// C++ (codecvt)
|
||||||
|
locale loc;
|
||||||
|
const codecvt<wchar_t, char, mbstate_t>& cvt =
|
||||||
|
use_facet<codecvt<wchar_t, char, mbstate_t> >(loc);
|
||||||
|
mbstate_t state;
|
||||||
|
memset(&state, 0, sizeof(state));
|
||||||
|
start_counters(time, resource);
|
||||||
|
for (int i = 0; i < iters; ++i)
|
||||||
|
cvt.length(state, cbuf, cbuf + 1024, 1024);
|
||||||
|
stop_counters(time, resource);
|
||||||
|
report_performance(__FILE__, "C++ (codecvt)", time, resource);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user