about summary refs log tree commit diff
path: root/src/thread/aarch64
Commit message (Collapse)AuthorAgeFilesLines
* consistently use hidden visibility for cancellable syscall internalsRich Felker2015-04-141-2/+8
| | | | | | | | | | in a few places, non-hidden symbols were referenced from asm in ways that assumed ld-time binding. while these is no semantic reason these symbols need to be hidden, fixing the references without making them hidden was going to be ugly, and hidden reduces some bloat anyway. in the asm files, .global/.hidden directives have been moved to the top to unclutter the actual code.
* add aarch64 portSzabolcs Nagy2015-03-114-0/+69
This adds complete aarch64 target support including bigendian subarch. Some of the long double math functions are known to be broken otherwise interfaces should be fully functional, but at this point consider this port experimental. Initial work on this port was done by Sireesh Tripurari and Kevin Bortis.