summaryrefslogtreecommitdiff
path: root/lib/libc/amd64/string/strcpy.S
Commit message (Collapse)AuthorAgeFilesLines
* Make both stpcpy and strcpy be assembly language implementationsGeorge V. Neville-Neil2011-07-211-114/+0
| | | | | | | | | | | | on amd64. Submitted by: Guillaume Morin (guillaume at morinfr.org) Reviewed by: kib, jhb Approved by: re (bz) MFC after: 1 month Notes: svn path=/head/; revision=224246
* Add section .note.GNU-stack for assembly files used by 386 and amd64.Konstantin Belousov2011-01-071-0/+2
| | | | Notes: svn path=/head/; revision=217106
* We've been lax about matching END() macros in asm code for some time. ThisPeter Wemm2008-11-021-0/+1
| | | | | | | | | | is used to set the ELF size attribute for functions. It isn't normally critical but some things can make use of it (gdb for stack traces). Valgrind needs it so I'm adding it in. The problem is present on all branches and on both i386 and amd64. Notes: svn path=/head/; revision=184547
* Optimize the instruction alignment.Alan Cox2005-04-231-2/+1
| | | | Notes: svn path=/head/; revision=145459
* Add a machine-specific, optimized implementation of strcpy.Alan Cox2005-04-101-0/+112
PR: 73111 Submitted by: Ville-Pertti Keinonen <will@iki.fi> (taken from NetBSD) MFC after: 3 weeks Notes: svn path=/head/; revision=144854