]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/clang/module.modulemap
Vendor import of clang trunk r290819:
[FreeBSD/FreeBSD.git] / include / clang / module.modulemap
1 module Clang_Analysis {
2   requires cplusplus
3   umbrella "Analysis"
4
5   textual header "Analysis/Analyses/ThreadSafetyOps.def"
6
7   module * { export * }
8 }
9
10 module Clang_AST {
11   requires cplusplus
12   umbrella "AST"
13
14   textual header "AST/BuiltinTypes.def"
15   textual header "AST/OperationKinds.def"
16   textual header "AST/TypeLocNodes.def"
17   textual header "AST/TypeNodes.def"
18
19   module * { export * }
20 }
21
22 module Clang_ASTMatchers { requires cplusplus umbrella "ASTMatchers" module * { export * } }
23
24 module Clang_Basic {
25   requires cplusplus
26   umbrella "Basic"
27
28   textual header "Basic/BuiltinsAArch64.def"
29   textual header "Basic/BuiltinsAMDGPU.def"
30   textual header "Basic/BuiltinsARM.def"
31   textual header "Basic/Builtins.def"
32   textual header "Basic/BuiltinsHexagon.def"
33   textual header "Basic/BuiltinsLe64.def"
34   textual header "Basic/BuiltinsMips.def"
35   textual header "Basic/BuiltinsNEON.def"
36   textual header "Basic/BuiltinsNVPTX.def"
37   textual header "Basic/BuiltinsPPC.def"
38   textual header "Basic/BuiltinsSystemZ.def"
39   textual header "Basic/BuiltinsWebAssembly.def"
40   textual header "Basic/BuiltinsX86.def"
41   textual header "Basic/BuiltinsX86_64.def"
42   textual header "Basic/BuiltinsXCore.def"
43   textual header "Basic/DiagnosticOptions.def"
44   textual header "Basic/LangOptions.def"
45   textual header "Basic/OpenCLExtensions.def"
46   textual header "Basic/OpenCLImageTypes.def"
47   textual header "Basic/OpenMPKinds.def"
48   textual header "Basic/OperatorKinds.def"
49   textual header "Basic/Sanitizers.def"
50   textual header "Basic/TokenKinds.def"
51
52   module * { export * }
53 }
54
55 module Clang_CodeGen { requires cplusplus umbrella "CodeGen" module * { export * } }
56 module Clang_Config { requires cplusplus umbrella "Config" module * { export * } }
57
58 // Files for diagnostic groups are spread all over the include/clang/ tree, but
59 // logically form a single module.
60 module Clang_Diagnostics {
61   requires cplusplus
62
63   module All { header "Basic/AllDiagnostics.h" export * }
64   module Analysis { header "Analysis/AnalysisDiagnostic.h" export * }
65   module AST { header "AST/ASTDiagnostic.h" export * }
66   module Comment { header "AST/CommentDiagnostic.h" export * }
67   module Driver { header "Driver/DriverDiagnostic.h" export * }
68   module Frontend { header "Frontend/FrontendDiagnostic.h" export * }
69   module Lex { header "Lex/LexDiagnostic.h" export * }
70   module Parse { header "Parse/ParseDiagnostic.h" export * }
71   // FIXME: This breaks the build of Clang_Sema, for unknown reasons.
72   //module Sema { header "Sema/SemaDiagnostic.h" export * }
73   module Serialization { header "Serialization/SerializationDiagnostic.h" export * }
74 }
75
76 module Clang_Driver {
77   requires cplusplus
78   umbrella "Driver"
79
80   textual header "Driver/Types.def"
81
82   module * { export * }
83 }
84
85 module Clang_Edit { requires cplusplus umbrella "Edit" module * { export * } }
86 module Clang_Format { requires cplusplus umbrella "Format" module * { export * } }
87
88 module Clang_Frontend {
89   requires cplusplus
90   umbrella "Frontend"
91
92   textual header "Frontend/CodeGenOptions.def"
93   textual header "Frontend/LangStandards.def"
94
95   module * { export * }
96
97   // FIXME: This violates layers.
98   exclude header "Frontend/PCHContainerOperations.h"
99 }
100
101 module Clang_FrontendTool { requires cplusplus umbrella "FrontendTool" module * { export * } }
102 module Clang_Index { requires cplusplus umbrella "Index" module * { export * } }
103 module Clang_Lex { requires cplusplus umbrella "Lex" module * { export * } }
104 module Clang_Parse { requires cplusplus umbrella "Parse" module * { export * } }
105 module Clang_Rewrite { requires cplusplus umbrella "Rewrite" module * { export * } }
106 module Clang_Sema { requires cplusplus umbrella "Sema" module * { export * } }
107 module Clang_Serialization { requires cplusplus umbrella "Serialization" module * { export * } }
108
109 module Clang_StaticAnalyzer_Core {
110   requires cplusplus
111   umbrella "StaticAnalyzer/Core"
112
113   textual header "StaticAnalyzer/Core/Analyses.def"
114   textual header "StaticAnalyzer/Core/PathSensitive/SVals.def"
115   textual header "StaticAnalyzer/Core/PathSensitive/Symbols.def"
116   textual header "StaticAnalyzer/Core/PathSensitive/Regions.def"
117
118   module * { export * }
119 }
120
121 module Clang_StaticAnalyzer_Checkers {
122   requires cplusplus
123   umbrella "StaticAnalyzer/Checkers"
124   module * { export * }
125 }
126
127 module Clang_StaticAnalyzer_Frontend {
128   requires cplusplus
129   umbrella "StaticAnalyzer/Frontend"
130   module * { export * }
131 }
132
133 module Clang_Tooling {
134   requires cplusplus umbrella "Tooling" module * { export * }
135   // FIXME: Exclude this header to avoid pulling all of the AST matchers
136   // library into clang-format. Due to inline key functions in the headers,
137   // importing the AST matchers library gives a link dependency on the AST
138   // matchers (and thus the AST), which clang-format should not have.
139   exclude header "Tooling/RefactoringCallbacks.h"
140 }