System.Math.GetSSEExceptionMask

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetSSEExceptionMask: TSSEExceptionMask;

C++

extern DELPHI_PACKAGE TSSEExceptionMask __fastcall GetSSEExceptionMask(void);

Properties

Type Visibility Source Unit Parent
function public
System.Math.pas
System.Math.hpp
System.Math System.Math

Description

Returns the set of masked Intel SSE arithmetic exceptions.

This is an Intel platform dependent function.

GetSSEExceptionMask returns the TSSEExceptionMask set of masked SSE arithmetic exceptions. GetSSEExceptionMask retrieves the set of masked floating point arithmetic exceptions from the MXCSR control/status register (see SetMXCSR).

GetSSEExceptionMask is considered obsolete (Windows only, not cross-platform) because it is not available for NEXTGEN (mobile) compilers.

Please use GetExceptionMask instead of GetSSEExceptionMask.

See Also