summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch/arm (follow)
Commit message (Expand)AuthorAgeFilesLines
* replace ad-hoc illegal instruction with the architecturally defined onenaddy2020-10-191-2/+2
* SYS___threxit cannot fail, but this integration looks like a gadget.deraadt2020-10-181-1/+2
* Add support for timeconting in userland.pirofti2020-07-062-2/+23
* Anthony Steinhauser reports that 32-bit arm cpus have the same speculationderaadt2020-03-131-3/+3
* Anthony Steinhauser reports that 32-bit arm cpus have the same speculationderaadt2020-03-111-3/+5
* Mark as 'protected' all the routines from the quad/ and softfloat/ subdirs,guenther2019-11-101-1/+4
* Stop exporting the internal _mcount symbol as that's only referencedguenther2019-10-261-1/+0
* Save and restore the relevant FPU state on armv7.kettenis2018-06-223-28/+26
* Clear the sign bit in the QNAN constants used by strtof, strtod and strtold,jmatthew2018-05-281-4/+4
* Drop memory barrier in _atomic_lock() implementation since the callers nowkettenis2018-05-171-2/+1
* Change floating-point mode/environment control functions to operate onkettenis2018-02-287-1/+215
* Implement ffs(3) using the CLZ instructions which has been available everkettenis2018-01-211-43/+6
* Partial revert of rev. 1.7, fixes build with clangjca2018-01-191-2/+1
* Instead of trying to handle ffs() with the normal rename-mark-hidden-and-aliasguenther2018-01-181-3/+5
* Add two more ARM EABI aliases that I missed in the previous libc minorkettenis2018-01-141-0/+2
* Add ARM EABI runtime aliases to the GCC runtime functions that we includekettenis2017-12-262-1/+32
* Don't use _libc_ prefix when referencing "builtin" symbols with clang.kettenis2017-12-162-3/+8
* clang doesn't propagate attributes like "asm labels" and "visibility(hidden)"guenther2017-11-294-7/+16
* Avoid .align 0. Clang's integrated assembler actually honors this directivekettenis2017-11-213-9/+6
* Stop exporting _memcpy, an implementation detail of bcopy/memcpy/memmoveguenther2017-10-295-9/+10
* Stop exporting some symbols internal to the softfloat implementation,kettenis2017-10-281-27/+0
* Copy files from ../librthread in preparation for moving functionalityguenther2017-08-151-0/+49
* Use the userspace-visible thread register directly in __cerror insteadguenther2016-10-041-6/+8
* Use unified syntax such that this compiles with both gcc and clang.kettenis2016-09-181-2/+4
* unbreak the build by including stddef.h for the definition of NULLjsg2016-09-181-1/+2
* Add an interface to find the ARM.exidx table for use by the ARM EHABI unwinder.kettenis2016-09-174-1/+87
* Add XOR cookies for lr and sp. Stop saving/restoring r12 to/from the jmpbuf.guenther2016-08-072-53/+97
* Use internal names for __errno, _memcpy, memset, and {,_}{set,long}jmpguenther2016-08-0624-87/+106
* Consistently reference '_end' instead of 'end' in the brk/sbrk implementationguenther2016-05-303-7/+6
* Stop supporting longjmperror(); it's not used, not portable, and the checksguenther2016-05-232-6/+4
* Remove sigreturn declaration and the now-unused libc syscall stubguenther2016-05-091-41/+0
* Use a Thread Information Block in both single and multi-threaded programs.guenther2016-05-076-76/+16
* remove duplicate strrchr.c entry in SRCSjsg2016-04-281-2/+2
* The asm in the MD_DISABLE_KBIND macro was too fragile and broke alpha and hppa.guenther2016-03-211-27/+0
* Rearrange C runtime bits: now that ld.so exports environ and __progname,guenther2016-03-201-0/+27
* Wrap the remaining math functions in libc: __fpclassify*(), __flt_rounds(),guenther2015-10-271-1/+2
* Merge the sigaction() and sigprocmask() overloads/wrappers from libpthreadguenther2015-10-232-4/+6
* Pull in <float.h> instead of declaring __flt_rounds() locallyguenther2015-10-181-3/+2
* Uses angle brackets to include softfloat.h, and add the proper directory tomiod2015-09-131-1/+2
* Do provide hidden _libc_* aliases for sig{block,setmask} and use them inguenther2015-09-131-3/+3
* Adds hidden _libc_FOO aliases for the system call stubs.guenther2015-09-109-18/+38
* use #function rather than @function on armderaadt2015-08-311-2/+2
* Add framework for resolving (pun intended) libc namespace issues, usingguenther2015-08-3111-21/+55
* Hide many (194!) symbols that nothing should be using.guenther2015-08-265-68/+14
* Explicitly list the symbols permitted to be exported by libc.guenther2015-08-221-0/+96
* At some point arm moved to a unified syntax for arm and thumb instructions.jsg2015-06-082-37/+41
* Make index/rindex weak aliases of strchr/strrchr since they are notmillert2015-05-151-2/+2
* Make pthread_atfork() track the DSO that called it like atexit() does,guenther2015-04-072-3/+17
* Stop encoding the syscall number in the swi instruction - this has beenjsing2015-03-311-4/+3
* Simplify fork/vfork logic: the kernel has handled returning zero in the childguenther2015-03-312-23/+3