1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/SSE.h"
#include <stdio.h>
#if defined(XP_WIN)
int wmain()
#else
int main()
#endif // defined(XP_WIN)
{
printf("CPUID detection present: %s\n",
#ifdef MOZILLA_SSE_HAVE_CPUID_DETECTION
"yes"
#else
"no"
#endif
);
#ifdef MOZILLA_COMPILE_WITH_MMX
# define COMPILE_MMX_STRING "Y"
#else
# define COMPILE_MMX_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_MMX
# define PRESUME_MMX_STRING "Y"
#else
# define PRESUME_MMX_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSE
# define COMPILE_SSE_STRING "Y"
#else
# define COMPILE_SSE_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSE
# define PRESUME_SSE_STRING "Y"
#else
# define PRESUME_SSE_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSE2
# define COMPILE_SSE2_STRING "Y"
#else
# define COMPILE_SSE2_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSE2
# define PRESUME_SSE2_STRING "Y"
#else
# define PRESUME_SSE2_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSE3
# define COMPILE_SSE3_STRING "Y"
#else
# define COMPILE_SSE3_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSE3
# define PRESUME_SSE3_STRING "Y"
#else
# define PRESUME_SSE3_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSSE3
# define COMPILE_SSSE3_STRING "Y"
#else
# define COMPILE_SSSE3_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSSE3
# define PRESUME_SSSE3_STRING "Y"
#else
# define PRESUME_SSSE3_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSE4A
# define COMPILE_SSE4A_STRING "Y"
#else
# define COMPILE_SSE4A_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSE4A
# define PRESUME_SSE4A_STRING "Y"
#else
# define PRESUME_SSE4A_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSE4_1
# define COMPILE_SSE4_1_STRING "Y"
#else
# define COMPILE_SSE4_1_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSE4_1
# define PRESUME_SSE4_1_STRING "Y"
#else
# define PRESUME_SSE4_1_STRING "-"
#endif
#ifdef MOZILLA_COMPILE_WITH_SSE4_2
# define COMPILE_SSE4_2_STRING "Y"
#else
# define COMPILE_SSE4_2_STRING "-"
#endif
#ifdef MOZILLA_PRESUME_SSE4_2
# define PRESUME_SSE4_2_STRING "Y"
#else
# define PRESUME_SSE4_2_STRING "-"
#endif
printf("Feature Presume Compile Support Use\n");
#define SHOW_INFO(featurelc_, featureuc_) \
printf("%7s %1s %1s %1s\n", #featurelc_, \
PRESUME_##featureuc_##_STRING, COMPILE_##featureuc_##_STRING, \
(mozilla::supports_##featurelc_() ? "Y" : "-"));
SHOW_INFO(mmx, MMX)
SHOW_INFO(sse, SSE)
SHOW_INFO(sse2, SSE2)
SHOW_INFO(sse3, SSE3)
SHOW_INFO(ssse3, SSSE3)
SHOW_INFO(sse4a, SSE4A)
SHOW_INFO(sse4_1, SSE4_1)
SHOW_INFO(sse4_2, SSE4_2)
return 0;
}
|