aboutsummaryrefslogtreecommitdiff
path: root/libcxx/utils/generate_std_cppm_in.py
blob: 242134773e6891cdb03ef9aacda76ce552c2688d (plain)
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
# ===----------------------------------------------------------------------===##
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
# ===----------------------------------------------------------------------===##

import os.path

from libcxx.header_information import module_headers
from libcxx.header_information import header_restrictions
from libcxx.header_information import headers_not_available


libcxx_module_directory = os.path.join(
    os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "modules"
)
with open(
    os.path.join(libcxx_module_directory, "std.cppm.in"), "w"
) as std_module_cpp_in:
    std_module_cpp_in.write(
        """\
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

// WARNING, this entire header is generated by
// utils/generate_std_cppm_in.py
// DO NOT MODIFY!

module;

#include <__config>

// The headers of Table 24: C++ library headers [tab:headers.cpp]
// and the headers of Table 25: C++ headers for C library facilities [tab:headers.cpp.c]
"""
    )
    for header in module_headers:
        if header in header_restrictions:
            std_module_cpp_in.write(
                f"""\
#if {header_restrictions[header]}
#  include <{header}>
#endif
"""
            )
        else:
            std_module_cpp_in.write(f"#include <{header}>\n")

    std_module_cpp_in.write("\n// *** Headers not yet available ***\n")
    for header in sorted(headers_not_available):
        std_module_cpp_in.write(
            f"""\
#if __has_include(<{header}>)
#  error "update the header information for <{header}> in libcxx/utils/generate_std_cppm_in.py"
#endif //   __has_include(<{header}>)
"""
        )

    std_module_cpp_in.write(
        """
export module std;

@LIBCXX_MODULE_STD_INCLUDE_SOURCES@
"""
    )