add floor library function
authorJoshua Batista <jbatista@microsoft.com>
Thu, 8 Dec 2022 21:03:47 +0000 (13:03 -0800)
committerJoshua Batista <jbatista@microsoft.com>
Thu, 8 Dec 2022 23:41:54 +0000 (15:41 -0800)
commit500e72924305c4a1fac2ffd45b16114d49c3a7d2
tree9e40f51275eff3c81a8fff4810609173002c442b
parentfaa75f94f113f2e912a672afcd611ecc79942e6a
add floor library function

This change exposes the floor library function for HLSL,
excluding long, int, and long long doubles.
Floor is supported for all scalar, vector, and matrix types.

Long and long long double support is missing in this patch because those types
don't exist in HLSL. Int is missing because the floor function only works on floating type arguments.

The full documentation of the HLSL floor function is available here:
https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl-floor

Reviewed By: beanz

Differential Revision: https://reviews.llvm.org/D139137
clang/lib/Headers/hlsl/hlsl_intrinsics.h
clang/test/CodeGenHLSL/builtins/floor.hlsl [new file with mode: 0644]