History log of /llvm-project/clang/test/AST/ByteCode/fixed-point.cpp (Results 1 – 13 of 13)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4, llvmorg-19.1.3, llvmorg-19.1.2, llvmorg-19.1.1
# 3c851027 30-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Handle DiscardResult for fixed-point literals (#110475)


# 5c811ccc 29-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement more binary operators for fixed point types (#110423)


# 95ce78b7 29-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement fixed-point-to-int casts (#110417)

And some cleanups around overflow handling.


# 1714b113 29-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytcode] Convert Fixed Point values to target semantics... (#110411)

... after a binary operation. The Result of the operation is in the
common semantics of RHS and LHS, so we need to conve

[clang][bytcode] Convert Fixed Point values to target semantics... (#110411)

... after a binary operation. The Result of the operation is in the
common semantics of RHS and LHS, so we need to convert that to the
semantics of the BinaryOperator expression.

show more ...


# c2a37e41 29-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement fixed point casts (#110409)


# defead4d 29-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement fixed-point add (#110405)


# 3a5b9da1 28-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement fixed-point-to-float casts (#110369)


# 6cbd8a30 28-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement floating-to-fixed-point casts (#110361)


# 6b62e04e 28-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement (N)EQ between fixed point and integral (#110358)

Convert the non-fixed-point side to a fixed-point type before doing the
comparison.


# 641b4d53 28-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement integral-to-fixed-point casts (#110350)


# 6fd870bf 27-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement zero-init for fixed point types (#110257)


# 581c015e 27-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Implement fixed point negation (#110237)


# 048bc672 27-Sep-2024 Timm Baeder <tbaeder@redhat.com>

[clang][bytecode] Start implementing fixed point types (#110216)

Add the primitive type and implement to-bool casts.