[libc] Add implementations of div, ldiv, lldiv and imaxdiv.
authorSiva Chandra Reddy <sivachandra@google.com>
Fri, 17 Sep 2021 04:38:17 +0000 (04:38 +0000)
committerSiva Chandra Reddy <sivachandra@google.com>
Mon, 20 Sep 2021 04:51:42 +0000 (04:51 +0000)
commit74670e79b0a00224c04dfc6a446ea4439f4cfca4
tree39b7058e5bb66bdf72fded56495b59d0c2815f61
parentdef15c5fb6a117c1b6d8b2835f6760f814410582
[libc] Add implementations of div, ldiv, lldiv and imaxdiv.

Reviewed By: michaelrj

Differential Revision: https://reviews.llvm.org/D109952
22 files changed:
libc/config/linux/aarch64/entrypoints.txt
libc/config/linux/api.td
libc/config/linux/x86_64/entrypoints.txt
libc/spec/stdc.td
libc/src/__support/integer_operations.h
libc/src/inttypes/CMakeLists.txt
libc/src/inttypes/imaxdiv.cpp [new file with mode: 0644]
libc/src/inttypes/imaxdiv.h [new file with mode: 0644]
libc/src/stdlib/CMakeLists.txt
libc/src/stdlib/div.cpp [new file with mode: 0644]
libc/src/stdlib/div.h [new file with mode: 0644]
libc/src/stdlib/ldiv.cpp [new file with mode: 0644]
libc/src/stdlib/ldiv.h [new file with mode: 0644]
libc/src/stdlib/lldiv.cpp [new file with mode: 0644]
libc/src/stdlib/lldiv.h [new file with mode: 0644]
libc/test/src/inttypes/CMakeLists.txt
libc/test/src/inttypes/imaxdiv_test.cpp [new file with mode: 0644]
libc/test/src/stdlib/CMakeLists.txt
libc/test/src/stdlib/DivTest.h [new file with mode: 0644]
libc/test/src/stdlib/div_test.cpp [new file with mode: 0644]
libc/test/src/stdlib/ldiv_test.cpp [new file with mode: 0644]
libc/test/src/stdlib/lldiv_test.cpp [new file with mode: 0644]