Optimize the instruction alignment.
Add a machine-specific, optimized implementation of strcat.PR: 73111Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD)MFC after: 3 weeks
Eliminate a conditional branch and as a side-effect eliminate a branch toa return instruction. (The latter is discouraged by the Opteronoptimization manual because it disables branch prediction fo
Eliminate a conditional branch and as a side-effect eliminate a branch toa return instruction. (The latter is discouraged by the Opteronoptimization manual because it disables branch prediction for the returninstruction.)Reviewed by: bde
show more ...
Add a machine-specific, optimized implementation of strcpy.PR: 73111Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD)MFC after: 3 weeks
Add a machine-specific, optimized implementation of strcmp.PR: 73111Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD)MFC after: 3 weeks
Add machine-specific, optimized implementations of bcmp and memcmp.PR: 73111Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD)MFC after: 3 weeks
Eliminate unneeded instructions that are a vestige of mechanicaltranslation from i386.
Eliminate an unneeded instruction that is a vestige of mechanicaltranslation from i386.
Add machine-specific, optimized implementations of bcopy, bzero, memcpy,memmove, and memset.PR: 73111Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD)MFC after: 3 weeks
1234