1. 6cab941 [libc] Add implementation of few floating point manipulation functions. by Siva Chandra Reddy · 4 years ago
  2. b2e56ac [libc] Fix integration test header dependency. by Paula Toth · 3 years, 11 months ago
  3. f4b5dc0 [libc][Obvious] Use full path with cmake's if(EXISTS ...). by Siva Chandra Reddy · 3 years, 11 months ago
  4. 4dd54ec [libc] Add a simple linux aarch64 config. by Siva Chandra · 4 years ago
  5. 9014ccc [libc][NFC] Make cpu feature check tolerate non-x86 architectures. by Siva Chandra · 3 years, 11 months ago
  6. a56ca4e [libc] Add implementations of round and roundf. by Siva Chandra Reddy · 4 years ago
  7. 36ba765 [libc] Skip fuzzer as well if its dependent entrypoints are skipped. by Siva Chandra Reddy · 4 years ago
  8. f30f31e [libc][NFC] Adjust sinf and cosf around -infinity inputs. by Siva Chandra Reddy · 4 years ago
  9. 8fa415a [libc][NFC][Obvious] Tidy up some CMake files. by Siva Chandra Reddy · 4 years ago
  10. 34f9cd2 [libc] Skip entrypoints not present in the entrypoints list. by Siva Chandra Reddy · 4 years ago
  11. 0a13802 [libc][NFC] Add few more missing entrypoints to the entrypoint list. by Siva Chandra Reddy · 4 years ago
  12. 6241460 [libc][NFC] Add bzero to list of entrypoints. by Siva Chandra Reddy · 4 years ago
  13. 0466e34 [libc][NFC][Obvious] Add names to various string entrypoints. by Siva Chandra Reddy · 4 years ago
  14. 4a59e1b [libc][NFC] Add ceil[f], floor[f] and trunc[f] to the spec and config files. by Siva Chandra Reddy · 4 years ago
  15. 09df702 [libc] Remove integration test target from check libc. by Paula Toth · 4 years ago
  16. af6d71d [libc] Add integration tests. by Paula Toth · 4 years ago
  17. 0a36d16 [libc] Expose APIGenerator. by Paula Toth · 4 years ago
  18. 5e31830 [libc] Add implementations of ceil[f], floor[f] and trunc[f] from math.h. by Siva Chandra Reddy · 4 years ago
  19. ac37c22 [libc] Add implementation of call_once from threads.h. by Siva Chandra Reddy · 4 years ago
  20. 36a1e11 [libc][NFC][Obvious] Fix few header guards in src/threads. by Siva Chandra Reddy · 4 years ago
  21. 550cab4 [libc][NFC][Obvious] Remove line break from a CMake message. by Siva Chandra Reddy · 4 years ago
  22. 056b003 [libc] Fixing the build command for benchmarks. by Anthony Steinhauser · 4 years ago
  23. a4c617d [libc][NFC][Obvious] Convert the MPFR operations enum to an enum class. by Siva Chandra Reddy · 4 years ago
  24. fd32d0a [libc][NFC] Simplify memcpy implementation by Guillaume Chatelet · 4 years ago
  25. d60a3f6 [libc] Make clang-tidy use host compiler's resource dir. by Paula Toth · 4 years ago
  26. 388577c [libc] Fix accidental inclusion of system libc headers. by Paula Toth · 4 years ago
  27. 4baccd1 Fix typo in CMake error message "LLVM_LIBC_ENABLE_PROJECTS"->"LLVM_ENABLE_PROJECTS" (NFC) by Mehdi Amini · 4 years ago
  28. 2a735b5 [libc] Add memset and bzero implementations by Guillaume Chatelet · 4 years ago
  29. 4412ad1 [libc] Move implementations of expf and exp2f from the AOR to src/math. by Siva Chandra Reddy · 4 years ago
  30. a040bbc [libc] Add implementation of fabs and fabsf. by Siva Chandra Reddy · 4 years ago
  31. e3524be [libc] Consolidate floating point utils into a single utils library. by Siva Chandra Reddy · 4 years ago
  32. 67eba1d [libc] Call mtx_init in mtx_test. by Siva Chandra Reddy · 4 years ago
  33. 4cbbfc9 [libc][Obvious] Fix deps of few threads targets. by Siva Chandra Reddy · 4 years ago
  34. 6ba75b0 [libc] Fix warnings on release build. by Paula Toth · 4 years ago
  35. f71cd61 [libc] Reorganize and clarify a few points around benchmarking by Eric Christopher · 4 years ago
  36. dbeccd3 [libc] Fix how math results are compared with MPFR results. by Siva Chandra Reddy · 4 years ago
  37. b0b5b23 [libc] Change target name for testing benchmark utils infrastructure. by Paula Toth · 4 years ago
  38. a4a3aef [libc] Add no_sanitize("address") attribute to the getMPFRMatcher function. by Siva Chandra Reddy · 4 years ago
  39. d8b20a4 [libc] Improve information printed on failure of a math test which uses MPFR. by Siva Chandra Reddy · 4 years ago
  40. 356ea28 [libc] Include object files from alias entrypoints also in entrypoint libraries. by Siva Chandra Reddy · 4 years ago
  41. a867e6a [libc] Add definitions of double_t and float_t to math.h. by Siva Chandra Reddy · 4 years ago
  42. dc4265a [libc][NFC] Rename cpp::function to cpp::Function. by Siva Chandra Reddy · 4 years ago
  43. 93e711d [libc] Add strlen to library entrypoints. by Paula Toth · 4 years ago
  44. 4eb9bf7 [libc] Fix benchmarks build. by Siva Chandra Reddy · 4 years ago
  45. 1c392ab Add StringRef include to libc benchmark. by Eric Christopher · 4 years ago
  46. b6f33d7 [libc] Add spec for sigdelset and sigfillset. by Paula Toth · 4 years ago
  47. 4b5efaa [libc] Surround get_start_args_addr in __llvm_libc namespace. by Paula Toth · 4 years ago
  48. d63d44e [libc] Link mpfr and gmp wrapper to the libcMPFRWrapper. by Siva Chandra Reddy · 4 years ago
  49. a543e19 [libc][NFC] Cleanup dependencies in src/signal and test/src/signal. by Siva Chandra Reddy · 4 years ago
  50. c10bb02 [libc][Take 2] Propagate entrypoint deps to downstream targets. by Siva Chandra Reddy · 4 years ago
  51. 7eba273 [libc] Revert "Propagate entrypoint deps to downstream targets." by Siva Chandra Reddy · 4 years ago
  52. 943b901 [libc] Propagate entrypoint deps to downstream targets. by Siva Chandra Reddy · 4 years, 1 month ago
  53. dd986bb [libc] [NFC] Split the CMake rules into multiple files. by Siva Chandra Reddy · 4 years, 1 month ago
  54. f70d23a [libc] Add write(2) implementation for Linux and FDReader test utility by Alex Brachet · 4 years, 1 month ago
  55. f0719b8 [libc] Add spec/*.td as dependencies to add_gen_header by Alex Brachet · 4 years, 1 month ago
  56. c34ba5f [libc] Disable AOR ulp tests for sinf, cosf and sincosf. by Siva Chandra Reddy · 4 years, 1 month ago
  57. 5c70794 Use proper dependency name for libc.include.stdio by Alex Brachet · 4 years, 1 month ago
  58. 35fd4f3 [libc] Add cmake target for linting libc. by Paula Toth · 4 years, 1 month ago
  59. 2b9296b [libc] Move implementations of cosf, sinf, sincosf to src/math directory. by Siva Chandra Reddy · 4 years, 1 month ago
  60. 874239b [libc] Add very basic stdio FILE and fwrite by Alex Brachet · 4 years, 1 month ago
  61. 90e9dfd [libc] Remove <functional> dependency in syscall_test.cpp by Alex Brachet · 4 years, 1 month ago
  62. 44425eb [libc] Add fully-qualified target names. by Siva Chandra Reddy · 4 years, 2 months ago
  63. 5811431 [libc] Change minimum cmake requirement. by Paula Toth · 4 years, 1 month ago
  64. 6f44043 [libc] Collect objects only from visible deps of an object library. by Siva Chandra Reddy · 4 years, 1 month ago
  65. 82cbfef [libc][NFC] Make all top of file comments consistent. by Paula Toth · 4 years, 1 month ago
  66. 4ad2cba [libc] NFC: Fix trivial typo in comments, documents, and messages by Kazuaki Ishizaki · 4 years, 1 month ago
  67. 5a67dab [libc] Fix memcpy to adhere to qualified calls. by Paula Toth · 4 years, 1 month ago
  68. 419fae6 [libc] Add strlen implementation. by Paula Toth · 4 years, 1 month ago
  69. ce75290 [libc] Add sigfillset and sigdelset by Alex Brachet · 4 years, 1 month ago
  70. 5c55372 [libc] Only use __has_builtin on clang by Alex Brachet · 4 years, 1 month ago
  71. 3a3f0fd [libc] Extend add_object rule to handle helper object libraries. by Siva Chandra Reddy · 4 years, 1 month ago
  72. a52ff74 [libc][NFC] Ensure internal implementation is in __llvm_libc namespace by Alex Brachet · 4 years, 1 month ago
  73. 8265514 [libc] Add a GNU extensions spec containing sincosf from math.h. by Siva Chandra Reddy · 4 years, 1 month ago
  74. ea5e59f [libc] Add a simple x86_64 linux loader. by Siva Chandra Reddy · 4 years, 2 months ago
  75. 1fd6b4d [libc] Generate math.h instead of the static file it is currently. by Siva Chandra Reddy · 4 years, 1 month ago
  76. 6b2f62d [libc] Enable llvmlibc clang-tidy checks by Paula Toth · 4 years, 1 month ago
  77. e95d3d6 [libc] Don't configure test and fuzzer when -DLLVM_INCLUDE_TESTS=OFF by Alex Brachet · 4 years, 1 month ago
  78. 4503d6d [libc][NFC] Fix typo in milliseconds by Alex Brachet · 4 years, 1 month ago
  79. 4bd6c39 [libc] Add signal by Alex Brachet · 4 years, 1 month ago
  80. d523b72 [libc] NFC - Move the round redirector from its own nested directory. by Siva Chandra Reddy · 4 years, 2 months ago
  81. 8436e38 [libc] Add a missing deps to the linux syscalls target. by Siva Chandra Reddy · 4 years, 2 months ago
  82. 03e1573 [libc] Adding memcpy implementation for x86_64 by Guillaume Chatelet · 4 years, 3 months ago
  83. faf39ab [libc] Add sigaction by Alex Brachet · 4 years, 2 months ago
  84. fdd85aa [libc] Add AOR testing dependencies for buildbot workers. by Paula Toth · 4 years, 2 months ago
  85. 54b0257 [libc] Resolve race condition in sub-process test runner. by Paula Toth · 4 years, 2 months ago
  86. 734f25f [libc] Add a new rule `add_object`. by Siva Chandra Reddy · 4 years, 2 months ago
  87. b6d9bf8 [libc] Add a README.md file to the AOR directory. by Siva Chandra Reddy · 4 years, 2 months ago
  88. 2f20923 [libc] Provide Arm Optimized Routines for the LLVM libc project. by Kristof Beyls · 4 years, 2 months ago
  89. 070394a [libc] [UnitTest] Add timeout to death tests by Alex Brachet · 4 years, 2 months ago
  90. 4bdfd3e [libc] Add initial assert definition by Alex Brachet · 4 years, 2 months ago
  91. caec8aa [libc] Add docker container for llvm-libc buildbot worker. by Paula Toth · 4 years, 2 months ago
  92. 4d4e716 [libc] Add simple implementations of mtx_lock and mtx_unlock. by Siva Chandra Reddy · 4 years, 3 months ago
  93. feb2229 [libc] Take 2: Add linux implementations of thrd_create and thrd_join functions. by Siva Chandra Reddy · 4 years, 2 months ago
  94. 741fcd7 add extern "C" to __errno_location's definition if in __cplusplus file by Alex Brachet · 4 years, 2 months ago
  95. 796c14d [libc] [NFC] Use matchers in tests by Alex Brachet · 4 years, 2 months ago
  96. df19a6b [libc]Revert "Add linux implementations of thrd_create and thrd_join functions." by Siva Chandra Reddy · 4 years, 2 months ago
  97. 1da0d25 [libc] [UnitTest] Add Matchers by Alex Brachet · 4 years, 2 months ago
  98. 403532f [libc] Add linux implementations of thrd_create and thrd_join functions. by Siva Chandra Reddy · 4 years, 5 months ago
  99. 3457a53 [libc] Create abort and _Exit by Alex Brachet · 4 years, 2 months ago
  100. 19a5f29 [libc] Add `errno_h` as a dependency to `sigaddset` and `sigemptyset`. by Siva Chandra Reddy · 4 years, 2 months ago