I'm trying to figure out how to write a very fast is_iequal function, optimized for ASCII, to compare if two characters are equal in a case-insensitive manner.
The ultimate goal is for this functor to be used with boost::algorithm::starts_with, etc.
So far my attempt has produced the following:
#include <locale>
unsigned long fast_rand(void);
template<class Ch> struct is_iequal
{
std::ctype<Ch> const &ctype;
is_iequal(std::ctype<Ch> const &ctype) : ctype(ctype) { }
bool operator()(Ch const c1, Ch const c2) const
{
return c1 == c2 ||
('a' <= c1 && c1 <= 'z' && c1 - 'a' == c2 - 'A') ||
('A' <= c1 && c1 <= 'Z' && c1 - 'A' == c2 - 'a') ||
!(c1 <= '\x7F' && c2 <= '\x7F') &&
ctype.toupper(c1) == ctype.toupper(c2);
}
};
int main()
{
size_t const N = 1 << 26;
typedef wchar_t TCHAR;
std::locale loc;
std::ctype<TCHAR> const &ctype = std::use_facet<std::ctype<TCHAR> >(loc);
is_iequal<TCHAR> const is_iequal(ctype); // Functor
TCHAR *s1 = new TCHAR[N], *s2 = new TCHAR[N];
for (size_t i = 0; i < N; i++) { s1[i] = fast_rand() & 0x7F; }
for (size_t i = 0; i < N; i++) { s2[i] = fast_rand() & 0x7F; }
bool dummy = false;
clock_t start = clock();
for (size_t i = 0; i < N; i++) { dummy ^= is_iequal(s1[i], s2[i]); }
printf("%u ms\n", (clock() - start) * 1000 / CLOCKS_PER_SEC, dummy);
}
unsigned long fast_rand(void) // Fast RNG for testing (xorshf96)
{
static unsigned long x = 123456789, y = 362436069, z = 521288629;
x ^= x << 16;
x ^= x >> 5;
x ^= x << 1;
unsigned long t = x;
x = y;
y = z;
z = t ^ x ^ y;
return z;
}
which, on my computer, runs in 584 ms (VC++ 2011 x64).
It's still a bit too slow for my application though -- it's still the bottleneck in my actual program, which causes a slight UI delay I'd like to get rid of if possible.
What can I do to optimize is_iequals further, without changing its interface?
Note: Yes, I am aware of the various problems with this code (UTF-16 handling, pedantic C++ issues with implicit casting to/from char, etc...) but they're irrelevant to my goal here so I'm completely ignoring them for the time being.
is_iequals's interface that can still make it faster. – Mehrdad Dec 1 '12 at 3:20