File: hash_info.cpp

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (126 lines) | stat: -rw-r--r-- 3,409 bytes parent folder | download | duplicates (9)
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
126

// Copyright 2017 Daniel James.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

// Not a test, just a small program to write out configuration info

#include <boost/container_hash/hash.hpp>
#include <iostream>
#include <algorithm>
#include <limits>
#include <climits>

#if defined(BOOST_MSVC)

struct msvc_version {
    unsigned version;
    char const* description;

    friend bool operator<(msvc_version const& v1, msvc_version const& v2) {
        return v1.version < v2.version;
    }
};

void write_compiler_info() {
    // From:
    // https://en.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B
    // https://blogs.msdn.microsoft.com/vcblog/2017/11/15/side-by-side-minor-version-msvc-toolsets-in-visual-studio-2017/
    msvc_version versions[] = {
        {0, "Old Visual C++"},
        {1000, "Visual C++ 4.x, VS4.0?"},
        {1100, "Visual C++ 5.0, VS97"},
        {1200, "Visual C++ 6.0, VS6.0"},
        {1300, "Visual C++ 7.0, VS.NET 2002"},
        {1310, "Visual C++ 7.1, VS.NET 2003"},
        {1400, "Visual C++ 8.0, VS2005"},
        {1500, "Visual C++ 9.0, VS2008"},
        {1600, "Visual C++ 10.0, VS2010"},
        {1700, "Visual C++ 11.0, VS2012"},
        {1800, "Visual C++ 12.0, VS2013"},
        {1900, "Visual C++ 14.00, VS2015"},
        {1910, "Visual C++ 14.1x, VS2017"},
        {1920, "Visual C++ 14.2x, VS2019"},
        {1930, "Visual C++ 14.3x, VS2022"},
    };

    msvc_version msvc = { BOOST_MSVC, "" };
    msvc_version* v = std::upper_bound(versions,
        versions + sizeof(versions) / sizeof(*versions),
        msvc) - 1;
    unsigned difference = msvc.version - v->version;

    std::cout << v->description;
    if (difference) {
        std::cout << " +" << difference;
    }
    std::cout << std::endl;
}

#else

void write_compiler_info() {
}

#endif

#define PRINT(x) std::cout << #x ": " << x << std::endl

int main() {
    write_compiler_info();
    std::cout << std::endl;

    PRINT(__cplusplus);
    PRINT(BOOST_CXX_VERSION);
    std::cout << std::endl;

#if defined(BOOST_NO_CXX17_HDR_STRING_VIEW)
    std::cout << "No <string_view>" << std::endl;
#else
    std::cout << "Has <string_view>" << std::endl;
#endif

#if defined(BOOST_NO_CXX17_HDR_OPTIONAL)
    std::cout << "No <optional>" << std::endl;
#else
    std::cout << "Has <optional>" << std::endl;
#endif

#if defined(BOOST_NO_CXX17_HDR_VARIANT)
    std::cout << "No <variant>" << std::endl;
#else
    std::cout << "Has <variant>" << std::endl;
#endif

#if defined(BOOST_NO_CXX11_HDR_TYPEINDEX)
    std::cout << "No <typeindex>" << std::endl;
#else
    std::cout << "Has <typeindex>" << std::endl;
#endif

#if defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR)
    std::cout << "No <system_error>" << std::endl;
#else
    std::cout << "Has <system_error>" << std::endl;
#endif

    std::cout << std::endl;

    PRINT(CHAR_BIT);
    std::cout << std::endl;

    PRINT(sizeof(std::size_t)*CHAR_BIT);
    PRINT(std::numeric_limits<std::size_t>::digits);
    std::cout << std::endl;

    PRINT(sizeof(float)*CHAR_BIT);
    PRINT(std::numeric_limits<float>::digits);
    std::cout << std::endl;

    PRINT(sizeof(double)*CHAR_BIT);
    PRINT(std::numeric_limits<double>::digits);
    std::cout << std::endl;

    PRINT(sizeof(long double)*CHAR_BIT);
    PRINT(std::numeric_limits<long double>::digits);
}