diff --git a/config/msvc.h b/config/msvc.h index b4f6a913d..45c23e982 100644 --- a/config/msvc.h +++ b/config/msvc.h @@ -25,6 +25,12 @@ #ifndef NASM_CONFIG_MSVC_H #define NASM_CONFIG_MSVC_H +/* Needed for the _BitScanReverse()/_BitScanReverse64() intrinsics below; + not available prior to Visual Studio 2005. */ +#if _MSC_VER >= 1400 +# include +#endif + /* Define to 1 if you have the header file. */ #define HAVE_FCNTL_H 1 @@ -33,9 +39,25 @@ # define HAVE_INTTYPES_H 1 #endif +/* Define to 1 if you have the header file. */ +#if _MSC_VER >= 1400 +# define HAVE_INTRIN_H 1 +#endif + /* Define to 1 if you have the header file. */ #define HAVE_IO_H 1 +/* Define to 1 if you have the header file. */ +#define HAVE_STDARG_H 1 + +/* Define to 1 if you have the header file. */ +#if _MSC_VER >= 1600 +# define HAVE_STDINT_H 1 +#endif + +/* Define to 1 if you have the header file. */ +#define HAVE_STDIO_H 1 + /* Define to 1 if you have the header file. */ #define HAVE_STDLIB_H 1 @@ -48,6 +70,9 @@ /* Define to 1 if you have the header file. */ #define HAVE_SYS_TYPES_H 1 +/* Define to 1 if you have the header file. */ +#define HAVE_WCHAR_H 1 + /* Define to 1 if you have the `access' function. */ #define HAVE_ACCESS 1 #if _MSC_VER < 1400 @@ -60,6 +85,13 @@ # define fileno _fileno #endif +/* Define to 1 if you have the `isascii' function. */ +#define HAVE_ISASCII 1 +#define isascii __isascii + +/* Define to 1 if you have the `iscntrl' function. */ +#define HAVE_ISCNTRL 1 + /* Define to 1 if you have the `snprintf' function. */ #define HAVE_SNPRINTF 1 #if _MSC_VER < 1900 @@ -77,6 +109,25 @@ /* Define to 1 if you have the `_filelengthi64' function. */ #define HAVE__FILELENGTHI64 1 +/* Define to 1 if you have the `_byteswap_ushort' intrinsic function. */ +#define HAVE__BYTESWAP_USHORT 1 + +/* Define to 1 if you have the `_byteswap_ulong' intrinsic function. */ +#define HAVE__BYTESWAP_ULONG 1 + +/* Define to 1 if you have the `_byteswap_uint64' intrinsic function. */ +#define HAVE__BYTESWAP_UINT64 1 + +/* Define to 1 if you have the `_BitScanReverse' intrinsic function. */ +#if _MSC_VER >= 1400 +# define HAVE__BITSCANREVERSE 1 +#endif + +/* Define to 1 if you have the `_BitScanReverse64' intrinsic function. */ +#if (defined(_M_X64) || defined(_M_ARM64)) && _MSC_VER >= 1400 +# define HAVE__BITSCANREVERSE64 1 +#endif + /* Define to 1 if you have the `_fseeki64' function. */ #define HAVE__FSEEKI64 1 @@ -132,6 +183,18 @@ # define uintptr_t size_t #endif +/* Define to 1 if the system has the type `uintmax_t'. */ +#ifdef HAVE_STDINT_H +# define HAVE_UINTMAX_T 1 +#else +/* Define to the widest unsigned integer type if and + do not define. */ +# define uintmax_t unsigned long long +#endif + +/* Define to 1 if the system has the type `unsigned long long int'. */ +#define HAVE_UNSIGNED_LONG_LONG_INT 1 + /* Define to 1 if you have the `vsnprintf' function. */ #define HAVE_VSNPRINTF 1 #if _MSC_VER < 1400