about summary refs log tree commit diff
path: root/sysdeps/powerpc/powerpc64/power7/strspn.S
Commit message (Collapse)AuthorAgeFilesLines
* PowerPC: strspn optimization for PPC64/POWER7Vidya Ranganathan2014-03-111-0/+165
The optimization is achieved by following techniques: > hashing of needle. > hashing avoids scanning of duplicate entries in needle across the string. > initializing the hash table with Vector instructions (VSX) by quadword access. > unrolling when scanning for character in string across hash table.