This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 65b4b157b [sanitizer] Remove unneeded blank lines new 45688582b Add basic compiler-rt builtins support for hexagon.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: cmake/builtin-config-ix.cmake | 3 +- cmake/config-ix.cmake | 1 + lib/builtins/CMakeLists.txt | 35 ++ lib/builtins/hexagon/common_entry_exit_abi1.S | 103 ++++ lib/builtins/hexagon/common_entry_exit_abi2.S | 268 +++++++++ lib/builtins/hexagon/common_entry_exit_legacy.S | 157 ++++++ lib/builtins/hexagon/dfaddsub.S | 398 +++++++++++++ lib/builtins/hexagon/dfdiv.S | 492 +++++++++++++++++ lib/builtins/hexagon/dffma.S | 705 ++++++++++++++++++++++++ lib/builtins/hexagon/dfminmax.S | 79 +++ lib/builtins/hexagon/dfmul.S | 418 ++++++++++++++ lib/builtins/hexagon/dfsqrt.S | 406 ++++++++++++++ lib/builtins/hexagon/divdi3.S | 85 +++ lib/builtins/hexagon/divsi3.S | 84 +++ lib/builtins/hexagon/fabs_opt.S | 37 ++ lib/builtins/hexagon/fastmath2_dlib_asm.S | 491 +++++++++++++++++ lib/builtins/hexagon/fastmath2_ldlib_asm.S | 345 ++++++++++++ lib/builtins/hexagon/fastmath_dlib_asm.S | 400 ++++++++++++++ lib/builtins/hexagon/fma_opt.S | 31 ++ lib/builtins/hexagon/fmax_opt.S | 30 + lib/builtins/hexagon/fmin_opt.S | 30 + lib/builtins/hexagon/memcpy_forward_vp4cp4n2.S | 125 +++++ lib/builtins/hexagon/memcpy_likely_aligned.S | 64 +++ lib/builtins/hexagon/moddi3.S | 83 +++ lib/builtins/hexagon/modsi3.S | 66 +++ lib/builtins/hexagon/sfdiv_opt.S | 66 +++ lib/builtins/hexagon/sfsqrt_opt.S | 82 +++ lib/builtins/hexagon/udivdi3.S | 71 +++ lib/builtins/hexagon/udivmoddi4.S | 71 +++ lib/builtins/hexagon/udivmodsi4.S | 60 ++ lib/builtins/hexagon/udivsi3.S | 56 ++ lib/builtins/hexagon/umoddi3.S | 74 +++ lib/builtins/hexagon/umodsi3.S | 55 ++ 33 files changed, 5470 insertions(+), 1 deletion(-) create mode 100644 lib/builtins/hexagon/common_entry_exit_abi1.S create mode 100644 lib/builtins/hexagon/common_entry_exit_abi2.S create mode 100644 lib/builtins/hexagon/common_entry_exit_legacy.S create mode 100644 lib/builtins/hexagon/dfaddsub.S create mode 100644 lib/builtins/hexagon/dfdiv.S create mode 100644 lib/builtins/hexagon/dffma.S create mode 100644 lib/builtins/hexagon/dfminmax.S create mode 100644 lib/builtins/hexagon/dfmul.S create mode 100644 lib/builtins/hexagon/dfsqrt.S create mode 100644 lib/builtins/hexagon/divdi3.S create mode 100644 lib/builtins/hexagon/divsi3.S create mode 100644 lib/builtins/hexagon/fabs_opt.S create mode 100644 lib/builtins/hexagon/fastmath2_dlib_asm.S create mode 100644 lib/builtins/hexagon/fastmath2_ldlib_asm.S create mode 100644 lib/builtins/hexagon/fastmath_dlib_asm.S create mode 100644 lib/builtins/hexagon/fma_opt.S create mode 100644 lib/builtins/hexagon/fmax_opt.S create mode 100644 lib/builtins/hexagon/fmin_opt.S create mode 100644 lib/builtins/hexagon/memcpy_forward_vp4cp4n2.S create mode 100644 lib/builtins/hexagon/memcpy_likely_aligned.S create mode 100644 lib/builtins/hexagon/moddi3.S create mode 100644 lib/builtins/hexagon/modsi3.S create mode 100644 lib/builtins/hexagon/sfdiv_opt.S create mode 100644 lib/builtins/hexagon/sfsqrt_opt.S create mode 100644 lib/builtins/hexagon/udivdi3.S create mode 100644 lib/builtins/hexagon/udivmoddi4.S create mode 100644 lib/builtins/hexagon/udivmodsi4.S create mode 100644 lib/builtins/hexagon/udivsi3.S create mode 100644 lib/builtins/hexagon/umoddi3.S create mode 100644 lib/builtins/hexagon/umodsi3.S