-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HLSL] implement isinf
intrinsic
#70095
Labels
clang:codegen
IR generation bugs: mangling, exceptions, etc.
clang:frontend
Language frontend issues, e.g. anything involving "Sema"
HLSL
HLSL Language Support
Comments
farzonl
added a commit
to farzonl/llvm-project
that referenced
this issue
Mar 12, 2024
This change implements part 1 of 2 for llvm#70095 - `hlsl_intrinsics.h - add the `isinf` api - `Builtins.td` - add an hlsl builtin for `isinf`. - `CGBuiltin.cpp` add the ir generation for `isinf` intrinsic. - `SemaChecking.cpp` - add a non-math elementwise checks because this is a bool return. - `IntrinsicsDirectX.td - add an `isinf` intrinsic. DXIL.td lowering is left, but changes need to be made there before we can support this case.
farzonl
added a commit
to farzonl/llvm-project
that referenced
this issue
Mar 14, 2024
This change implements part 1 of 2 for llvm#70095 - `hlsl_intrinsics.h - add the `isinf` api - `Builtins.td` - add an hlsl builtin for `isinf`. - `CGBuiltin.cpp` add the ir generation for `isinf` intrinsic. - `SemaChecking.cpp` - add a non-math elementwise checks because this is a bool return. - `IntrinsicsDirectX.td - add an `isinf` intrinsic. DXIL.td lowering is left, but changes need to be made there before we can support this case.
farzonl
added a commit
that referenced
this issue
Mar 14, 2024
This change implements part 1 of 2 for #70095 - `hlsl_intrinsics.h` - add the `isinf` api - `Builtins.td` - add an hlsl builtin for `isinf`. - `CGBuiltin.cpp` add the ir generation for `isinf` intrinsic. - `SemaChecking.cpp` - add a non-math elementwise checks because this is a bool return. - `IntrinsicsDirectX.td` - add an `isinf` intrinsic. `DXIL.td` lowering is left, but changes need to be made there before we can support this case.
@llvm/issue-subscribers-clang-frontend Author: Chris B (llvm-beanz)
Implement HLSL `isinf` intrinsic:
https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl-isinf |
@llvm/issue-subscribers-clang-codegen Author: Chris B (llvm-beanz)
Implement HLSL `isinf` intrinsic:
https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl-isinf |
52 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
clang:codegen
IR generation bugs: mangling, exceptions, etc.
clang:frontend
Language frontend issues, e.g. anything involving "Sema"
HLSL
HLSL Language Support
Implement HLSL
isinf
intrinsic:https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl-isinf
The text was updated successfully, but these errors were encountered: