Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / include / module.modulemap
blob7dbb7cf02b4f82c19f428348ff9b2f302b4fa294
1 module Clang_C {
2   umbrella "clang-c"
3   module * { export * }
6 module Clang_Analysis {
7   requires cplusplus
8   umbrella "clang/Analysis"
10   textual header "clang/Analysis/Analyses/ThreadSafetyOps.def"
12   module * { export * }
14   // FIXME: Exclude these headers to avoid pulling all of the AST matchers
15   // library into clang. Due to inline key functions in the headers,
16   // importing the AST matchers library gives a link dependency on the AST
17   // matchers (and thus the AST), which clang-format should not have.
18   exclude header "clang/Analysis/Analyses/ExprMutationAnalyzer.h"
21 module Clang_AST {
22   requires cplusplus
23   umbrella "clang/AST"
25   textual header "clang/AST/BuiltinTypes.def"
26   textual header "clang/AST/CXXRecordDeclDefinitionBits.def"
27   textual header "clang/AST/OperationKinds.def"
28   textual header "clang/AST/TypeLocNodes.def"
30   module * { export * }
33 module Clang_ASTMatchers { requires cplusplus umbrella "clang/ASTMatchers" module * { export * } }
35 module Clang_Basic {
36   requires cplusplus
37   umbrella "clang/Basic"
39   textual header "clang/Basic/AArch64SVEACLETypes.def"
40   textual header "clang/Basic/BuiltinsAArch64.def"
41   textual header "clang/Basic/BuiltinsAMDGPU.def"
42   textual header "clang/Basic/BuiltinsAArch64NeonSVEBridge.def"
43   textual header "clang/Basic/BuiltinsAArch64NeonSVEBridge_cg.def"
44   textual header "clang/Basic/BuiltinsARM.def"
45   textual header "clang/Basic/BuiltinsBPF.def"
46   textual header "clang/Basic/Builtins.def"
47   textual header "clang/Basic/BuiltinHeaders.def"
48   textual header "clang/Basic/BuiltinsHexagon.def"
49   textual header "clang/Basic/BuiltinsHexagonDep.def"
50   textual header "clang/Basic/BuiltinsHexagonMapCustomDep.def"
51   textual header "clang/Basic/BuiltinsLoongArch.def"
52   textual header "clang/Basic/BuiltinsLoongArchBase.def"
53   textual header "clang/Basic/BuiltinsLoongArchLSX.def"
54   textual header "clang/Basic/BuiltinsLoongArchLASX.def"
55   textual header "clang/Basic/BuiltinsMips.def"
56   textual header "clang/Basic/BuiltinsNEON.def"
57   textual header "clang/Basic/BuiltinsNVPTX.def"
58   textual header "clang/Basic/BuiltinsPPC.def"
59   textual header "clang/Basic/BuiltinsRISCV.def"
60   textual header "clang/Basic/BuiltinsRISCVVector.def"
61   textual header "clang/Basic/BuiltinsSME.def"
62   textual header "clang/Basic/BuiltinsSVE.def"
63   textual header "clang/Basic/BuiltinsSystemZ.def"
64   textual header "clang/Basic/BuiltinsVE.def"
65   textual header "clang/Basic/BuiltinsVEVL.gen.def"
66   textual header "clang/Basic/BuiltinsWebAssembly.def"
67   textual header "clang/Basic/BuiltinsX86.def"
68   textual header "clang/Basic/BuiltinsX86_64.def"
69   textual header "clang/Basic/BuiltinsXCore.def"
70   textual header "clang/Basic/CodeGenOptions.def"
71   textual header "clang/Basic/DiagnosticOptions.def"
72   textual header "clang/Basic/Features.def"
73   textual header "clang/Basic/FPOptions.def"
74   textual header "clang/Basic/MSP430Target.def"
75   textual header "clang/Basic/LangOptions.def"
76   textual header "clang/Basic/OpenCLExtensions.def"
77   textual header "clang/Basic/OpenCLImageTypes.def"
78   textual header "clang/Basic/OpenCLExtensionTypes.def"
79   textual header "clang/Basic/OpenMPKinds.def"
80   textual header "clang/Basic/OperatorKinds.def"
81   textual header "clang/Basic/PPCTypes.def"
82   textual header "clang/Basic/RISCVVTypes.def"
83   textual header "clang/Basic/Sanitizers.def"
84   textual header "clang/Basic/TargetCXXABI.def"
85   textual header "clang/Basic/TransformTypeTraits.def"
86   textual header "clang/Basic/TokenKinds.def"
87   textual header "clang/Basic/WebAssemblyReferenceTypes.def"
89   module * { export * }
91 module Clang_Basic_TokenKinds {
92   requires cplusplus
94   header "clang/Basic/TokenKinds.h"
95   textual header "clang/Basic/TokenKinds.def"
97   export *
100 module Clang_CodeGen { requires cplusplus umbrella "clang/CodeGen" module * { export * } }
101 module Clang_Config { requires cplusplus umbrella "clang/Config" module * { export * } }
103 // Files for diagnostic groups are spread all over the include/clang/ tree, but
104 // logically form a single module.
105 module Clang_Diagnostics {
106   requires cplusplus
108   module All { header "clang/Basic/AllDiagnostics.h" export * }
109   module Analysis { textual header "clang/Analysis/Analyses/UnsafeBufferUsageGadgets.def" }
110   module AST { header "clang/AST/ASTDiagnostic.h" export * }
111   module Comment { header "clang/AST/CommentDiagnostic.h" export * }
112   module Driver { header "clang/Driver/DriverDiagnostic.h" export * }
113   module Frontend { header "clang/Frontend/FrontendDiagnostic.h" export * }
114   module Lex { header "clang/Lex/LexDiagnostic.h" export * }
115   module Parse { header "clang/Parse/ParseDiagnostic.h" export * }
116   module Sema { header "clang/Sema/SemaDiagnostic.h" export * }
117   module Serialization { header "clang/Serialization/SerializationDiagnostic.h" export * }
118   module Refactoring { header "clang/Tooling/Refactoring/RefactoringDiagnostic.h" export * }
121 module Clang_Driver {
122   requires cplusplus
123   umbrella "clang/Driver"
125   textual header "clang/Driver/Types.def"
127   module * { export * }
130 module Clang_Edit { requires cplusplus umbrella "clang/Edit" module * { export * } }
131 module Clang_Format { requires cplusplus umbrella "clang/Format" module * { export * } }
133 module Clang_Frontend {
134   requires cplusplus
135   umbrella "clang/Frontend"
137   textual header "clang/Basic/LangStandards.def"
139   module * { export * }
142 module Clang_FrontendTool { requires cplusplus umbrella "clang/FrontendTool" module * { export * } }
143 module Clang_Index { requires cplusplus umbrella "clang/Index" module * { export * } }
144 module Clang_Lex { requires cplusplus umbrella "clang/Lex" module * { export * } }
145 module Clang_Parse { requires cplusplus umbrella "clang/Parse" module * { export * } }
146 module Clang_Rewrite { requires cplusplus umbrella "clang/Rewrite/Core" module * { export * } }
147 module Clang_RewriteFrontend { requires cplusplus umbrella "clang/Rewrite/Frontend" module * { export * } }
148 module Clang_Sema { requires cplusplus umbrella "clang/Sema" module * { export * } }
150 module Clang_Serialization {
151   requires cplusplus
152   umbrella "clang/Serialization"
154   textual header "clang/Serialization/TypeBitCodes.def"
156   module * { export * }
159 module Clang_StaticAnalyzer_Core {
160   requires cplusplus
161   umbrella "clang/StaticAnalyzer/Core"
163   textual header "clang/StaticAnalyzer/Core/Analyses.def"
164   textual header "clang/StaticAnalyzer/Core/AnalyzerOptions.def"
165   textual header "clang/StaticAnalyzer/Core/PathSensitive/SVals.def"
166   textual header "clang/StaticAnalyzer/Core/PathSensitive/Symbols.def"
167   textual header "clang/StaticAnalyzer/Core/PathSensitive/Regions.def"
169   module * { export * }
172 module Clang_StaticAnalyzer_Checkers {
173   requires cplusplus
174   umbrella "clang/StaticAnalyzer/Checkers"
175   module * { export * }
178 module Clang_StaticAnalyzer_Frontend {
179   requires cplusplus
180   umbrella "clang/StaticAnalyzer/Frontend"
181   module * { export * }
184 module Clang_Testing {
185   requires cplusplus
186   umbrella "clang/Testing"
187   module * { export * }
190 module Clang_Tooling {
191   requires cplusplus umbrella "clang/Tooling" module * { export * }
192   // FIXME: Exclude these headers to avoid pulling all of the AST matchers
193   // library into clang-format. Due to inline key functions in the headers,
194   // importing the AST matchers library gives a link dependency on the AST
195   // matchers (and thus the AST), which clang-format should not have.
196   exclude header "clang/Tooling/RefactoringCallbacks.h"
199 module Clang_ToolingCore {
200   requires cplusplus
201   umbrella "clang/Tooling/Core" module * { export * }
204 module Clang_ToolingInclusions {
205   requires cplusplus
206   umbrella "clang/Tooling/Inclusions"
207   module * { export * }