_clear87、_clearfp
浮動小数点ステータス ワードの取得をオフにします。
unsigned int _clear87( void );
unsigned int _clearfp( void );
戻り値
返される _clear87 または _clearfp を呼び出す前に値のビットは浮動小数点状態を示します。ビットの定義に _clear87 によって" " Float.h を呼び出します。数値演算ライブラリ関数の多くは予測できない結果を含む 8087/80287 のステータスという語を修飾します。ほとんどの浮動小数点演算が浮動小数点ステータス Word の既知の状態の間に実行する _clear87 からの戻り値と _status87 は信頼できるようになります。
解説
_clear87 の関数は浮動小数点例外のステータス Word のフラグをクリアし0 にビジーのビットを設定しステータス テキストを返します。浮動小数点ステータスは浮動小数点スタック オーバーフローおよびアンダーフローのような 8087/80287 の例外ハンドラーを確認します 8087/80287 ステータスの単語や他の条件の組み合わせです。
_clearfp はプラットフォームに依存しない_clear87 ルーチンの移植性の高いバージョンです。これはIntel (x86) プラットフォームで _clear87 と同様にMIPS と ALPHA の各プラットフォームでサポートされています。浮動小数点コードを MIPS または ALPHA に確実に移植するには、_clearfp を使用します。x86 プラットフォームを対象にしただけの場合_clear87 または _clearfp を使用できます。
共通言語ランタイムは浮動小数点の既定の精度のみをサポートするので、/clr (共通言語ランタイムのコンパイル) または /clr:pure を使用してコンパイルする場合、これらの関数は使用しないでください。
必要条件
ルーチン |
必須ヘッダー |
---|---|
_clear87 |
<float.h> |
_clearfp |
<float.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// crt_clear87.c
// compile with: /Od
// This program creates various floating-point
// problems, then uses _clear87 to report on these problems.
// Compile this program with Optimizations disabled (/Od).
// Otherwise the optimizer will remove the code associated with
// the unused floating-point values.
//
#include <stdio.h>
#include <float.h>
int main( void )
{
double a = 1e-40, b;
float x, y;
printf( "Status: %.4x - clear\n", _clear87() );
// Store into y is inexact and underflows:
y = a;
printf( "Status: %.4x - inexact, underflow\n", _clear87() );
// y is denormal:
b = y;
printf( "Status: %.4x - denormal\n", _clear87() );
}
同等の .NET Framework 関数
該当なし標準 C 関数を呼び出すには、PInvoke を使用します。詳細については、「プラットフォーム呼び出しの例」を参照してください。