-
Couldn't load subscription status.
- Fork 15k
[clang][headers] Need a way for math.h to share the definitions of INIFINITY and NAN with float.h #164348
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
Merged
Merged
[clang][headers] Need a way for math.h to share the definitions of INIFINITY and NAN with float.h #164348
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,176 @@ | ||
| /*===---- __float_float.h --------------------------------------------------=== | ||
| * | ||
| * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| * See https://llvm.org/LICENSE.txt for license information. | ||
| * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| * | ||
| *===-----------------------------------------------------------------------=== | ||
| */ | ||
|
|
||
| #ifndef __CLANG_FLOAT_FLOAT_H | ||
| #define __CLANG_FLOAT_FLOAT_H | ||
|
|
||
| #if (defined(__MINGW32__) || defined(_MSC_VER) || defined(_AIX)) && \ | ||
| __STDC_HOSTED__ | ||
|
|
||
| /* Undefine anything that we'll be redefining below. */ | ||
| # undef FLT_EVAL_METHOD | ||
| # undef FLT_ROUNDS | ||
| # undef FLT_RADIX | ||
| # undef FLT_MANT_DIG | ||
| # undef DBL_MANT_DIG | ||
| # undef LDBL_MANT_DIG | ||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ | ||
| !defined(__STRICT_ANSI__) || \ | ||
| (defined(__cplusplus) && __cplusplus >= 201103L) || \ | ||
| (__STDC_HOSTED__ && defined(_AIX) && defined(_ALL_SOURCE)) | ||
| # undef DECIMAL_DIG | ||
| # endif | ||
| # undef FLT_DIG | ||
| # undef DBL_DIG | ||
| # undef LDBL_DIG | ||
| # undef FLT_MIN_EXP | ||
| # undef DBL_MIN_EXP | ||
| # undef LDBL_MIN_EXP | ||
| # undef FLT_MIN_10_EXP | ||
| # undef DBL_MIN_10_EXP | ||
| # undef LDBL_MIN_10_EXP | ||
| # undef FLT_MAX_EXP | ||
| # undef DBL_MAX_EXP | ||
| # undef LDBL_MAX_EXP | ||
| # undef FLT_MAX_10_EXP | ||
| # undef DBL_MAX_10_EXP | ||
| # undef LDBL_MAX_10_EXP | ||
| # undef FLT_MAX | ||
| # undef DBL_MAX | ||
| # undef LDBL_MAX | ||
| # undef FLT_EPSILON | ||
| # undef DBL_EPSILON | ||
| # undef LDBL_EPSILON | ||
| # undef FLT_MIN | ||
| # undef DBL_MIN | ||
| # undef LDBL_MIN | ||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || \ | ||
| !defined(__STRICT_ANSI__) || \ | ||
| (defined(__cplusplus) && __cplusplus >= 201703L) || \ | ||
| (__STDC_HOSTED__ && defined(_AIX) && defined(_ALL_SOURCE)) | ||
| # undef FLT_TRUE_MIN | ||
| # undef DBL_TRUE_MIN | ||
| # undef LDBL_TRUE_MIN | ||
| # undef FLT_DECIMAL_DIG | ||
| # undef DBL_DECIMAL_DIG | ||
| # undef LDBL_DECIMAL_DIG | ||
| # undef FLT_HAS_SUBNORM | ||
| # undef DBL_HAS_SUBNORM | ||
| # undef LDBL_HAS_SUBNORM | ||
| # endif | ||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || \ | ||
| !defined(__STRICT_ANSI__) | ||
| # undef FLT_NORM_MAX | ||
| # undef DBL_NORM_MAX | ||
| # undef LDBL_NORM_MAX | ||
| #endif | ||
| #endif | ||
|
|
||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || \ | ||
| !defined(__STRICT_ANSI__) | ||
| # undef FLT_SNAN | ||
| # undef DBL_SNAN | ||
| # undef LDBL_SNAN | ||
| #endif | ||
|
|
||
| /* Characteristics of floating point types, C99 5.2.4.2.2 */ | ||
|
|
||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ | ||
| (defined(__cplusplus) && __cplusplus >= 201103L) | ||
| #define FLT_EVAL_METHOD __FLT_EVAL_METHOD__ | ||
| #endif | ||
| #define FLT_ROUNDS (__builtin_flt_rounds()) | ||
| #define FLT_RADIX __FLT_RADIX__ | ||
|
|
||
| #define FLT_MANT_DIG __FLT_MANT_DIG__ | ||
| #define DBL_MANT_DIG __DBL_MANT_DIG__ | ||
| #define LDBL_MANT_DIG __LDBL_MANT_DIG__ | ||
|
|
||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ | ||
| !defined(__STRICT_ANSI__) || \ | ||
| (defined(__cplusplus) && __cplusplus >= 201103L) || \ | ||
| (__STDC_HOSTED__ && defined(_AIX) && defined(_ALL_SOURCE)) | ||
| # define DECIMAL_DIG __DECIMAL_DIG__ | ||
| #endif | ||
|
|
||
| #define FLT_DIG __FLT_DIG__ | ||
| #define DBL_DIG __DBL_DIG__ | ||
| #define LDBL_DIG __LDBL_DIG__ | ||
|
|
||
| #define FLT_MIN_EXP __FLT_MIN_EXP__ | ||
| #define DBL_MIN_EXP __DBL_MIN_EXP__ | ||
| #define LDBL_MIN_EXP __LDBL_MIN_EXP__ | ||
|
|
||
| #define FLT_MIN_10_EXP __FLT_MIN_10_EXP__ | ||
| #define DBL_MIN_10_EXP __DBL_MIN_10_EXP__ | ||
| #define LDBL_MIN_10_EXP __LDBL_MIN_10_EXP__ | ||
|
|
||
| #define FLT_MAX_EXP __FLT_MAX_EXP__ | ||
| #define DBL_MAX_EXP __DBL_MAX_EXP__ | ||
| #define LDBL_MAX_EXP __LDBL_MAX_EXP__ | ||
|
|
||
| #define FLT_MAX_10_EXP __FLT_MAX_10_EXP__ | ||
| #define DBL_MAX_10_EXP __DBL_MAX_10_EXP__ | ||
| #define LDBL_MAX_10_EXP __LDBL_MAX_10_EXP__ | ||
|
|
||
| #define FLT_MAX __FLT_MAX__ | ||
| #define DBL_MAX __DBL_MAX__ | ||
| #define LDBL_MAX __LDBL_MAX__ | ||
|
|
||
| #define FLT_EPSILON __FLT_EPSILON__ | ||
| #define DBL_EPSILON __DBL_EPSILON__ | ||
| #define LDBL_EPSILON __LDBL_EPSILON__ | ||
|
|
||
| #define FLT_MIN __FLT_MIN__ | ||
| #define DBL_MIN __DBL_MIN__ | ||
| #define LDBL_MIN __LDBL_MIN__ | ||
|
|
||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || \ | ||
| !defined(__STRICT_ANSI__) || \ | ||
| (defined(__cplusplus) && __cplusplus >= 201703L) || \ | ||
| (__STDC_HOSTED__ && defined(_AIX) && defined(_ALL_SOURCE)) | ||
| # define FLT_TRUE_MIN __FLT_DENORM_MIN__ | ||
| # define DBL_TRUE_MIN __DBL_DENORM_MIN__ | ||
| # define LDBL_TRUE_MIN __LDBL_DENORM_MIN__ | ||
| # define FLT_DECIMAL_DIG __FLT_DECIMAL_DIG__ | ||
| # define DBL_DECIMAL_DIG __DBL_DECIMAL_DIG__ | ||
| # define LDBL_DECIMAL_DIG __LDBL_DECIMAL_DIG__ | ||
| # define FLT_HAS_SUBNORM __FLT_HAS_DENORM__ | ||
| # define DBL_HAS_SUBNORM __DBL_HAS_DENORM__ | ||
| # define LDBL_HAS_SUBNORM __LDBL_HAS_DENORM__ | ||
| #endif | ||
|
|
||
| #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || \ | ||
| !defined(__STRICT_ANSI__) | ||
| /* C23 5.2.5.3.2p28 */ | ||
| # define FLT_SNAN (__builtin_nansf("")) | ||
| # define DBL_SNAN (__builtin_nans("")) | ||
| # define LDBL_SNAN (__builtin_nansl("")) | ||
|
|
||
| /* C23 5.2.5.3.3p32 */ | ||
| # define FLT_NORM_MAX __FLT_NORM_MAX__ | ||
| # define DBL_NORM_MAX __DBL_NORM_MAX__ | ||
| # define LDBL_NORM_MAX __LDBL_NORM_MAX__ | ||
| #endif | ||
|
|
||
| #ifdef __STDC_WANT_IEC_60559_TYPES_EXT__ | ||
| # define FLT16_MANT_DIG __FLT16_MANT_DIG__ | ||
| # define FLT16_DECIMAL_DIG __FLT16_DECIMAL_DIG__ | ||
| # define FLT16_DIG __FLT16_DIG__ | ||
| # define FLT16_MIN_EXP __FLT16_MIN_EXP__ | ||
| # define FLT16_MIN_10_EXP __FLT16_MIN_10_EXP__ | ||
| # define FLT16_MAX_EXP __FLT16_MAX_EXP__ | ||
| # define FLT16_MAX_10_EXP __FLT16_MAX_10_EXP__ | ||
| # define FLT16_MAX __FLT16_MAX__ | ||
| # define FLT16_EPSILON __FLT16_EPSILON__ | ||
| # define FLT16_MIN __FLT16_MIN__ | ||
| # define FLT16_TRUE_MIN __FLT16_TRUE_MIN__ | ||
| #endif /* __STDC_WANT_IEC_60559_TYPES_EXT__ */ | ||
|
|
||
| #endif /* __CLANG_FLOAT_FLOAT_H */ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| /*===---- __float_header_macro.h -------------------------------------------=== | ||
| * | ||
| * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| * See https://llvm.org/LICENSE.txt for license information. | ||
| * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| * | ||
| *===-----------------------------------------------------------------------=== | ||
| */ | ||
|
|
||
| #ifndef __CLANG_FLOAT_H | ||
| #define __CLANG_FLOAT_H | ||
| #endif /* __CLANG_FLOAT_H */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| /*===---- __float_infinity_nan.h -------------------------------------------=== | ||
| * | ||
| * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| * See https://llvm.org/LICENSE.txt for license information. | ||
| * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| * | ||
| *===-----------------------------------------------------------------------=== | ||
| */ | ||
|
|
||
| #ifndef __CLANG_FLOAT_INFINITY_NAN_H | ||
| #define __CLANG_FLOAT_INFINITY_NAN_H | ||
|
|
||
| /* C23 5.2.5.3.3p29-30 */ | ||
| #undef INFINITY | ||
| #undef NAN | ||
|
|
||
| #define INFINITY (__builtin_inff()) | ||
| #define NAN (__builtin_nanf("")) | ||
|
|
||
| #endif /* __CLANG_FLOAT_INFINITY_NAN_H */ |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.