about summary refs log tree commit diff
path: root/sysdeps/powerpc/powerpc64/power9
Commit message (Collapse)AuthorAgeFilesLines
* powerpc: Improve strcmp performance for shorter stringsRajalakshmi Srinivasaraghavan2017-02-071-22/+8
| | | | | | | | | | For strings >16B and <32B existing algorithm takes more time than default implementation when strings are placed closed to end of page. This is due to byte by byte access for handling page cross. This is improved by following >32B code path where the address is adjusted to aligned memory before doing load doubleword operation instead of loading bytes. Tested on powerpc64 and powerpc64le.
* Update copyright dates with scripts/update-copyrights.Joseph Myers2017-01-012-2/+2
|
* powerpc: strncmp optimization for power9Rajalakshmi Srinivasaraghavan2016-12-131-0/+375
| | | | | | | Vectorized loops are used for strings > 32B when compared to power8 optimization. Tested on power9 ppc64le simulator.
* powerpc: strcmp optimization for power9Rajalakshmi Srinivasaraghavan2016-12-011-0/+278
| | | | | | | Vectorized loops are used for strings > 32B when compared to power8 optimization. Tested on power9 ppc64le simulator.
* powerpc: Fix POWER9 impliesTulio Magno Quites Machado Filho2016-09-191-1/+0
| | | | | Fix multiarch build for POWER9 by correcting the order of the directories listed at sysnames configure variable.
* powerpc: Add basic support for POWER9 sans hwcap.Carlos Eduardo Seo2015-12-224-0/+6
This patch adds the minimum changes for supporting the POWER9 processor.