[libc++][Android] BuildKite CI: update Clang and sysroot versions (#116151)
[llvm-project.git] / clang / include / module.modulemap
blobb399f0beee59a1eb18cf011e2380563f4af153ac
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/AMDGPUTypes.def"
41   textual header "clang/Basic/BuiltinHeaders.def"
42   textual header "clang/Basic/BuiltinsAArch64.def"
43   textual header "clang/Basic/BuiltinsAArch64NeonSVEBridge.def"
44   textual header "clang/Basic/BuiltinsAArch64NeonSVEBridge_cg.def"
45   textual header "clang/Basic/BuiltinsAMDGPU.def"
46   textual header "clang/Basic/BuiltinsARM.def"
47   textual header "clang/Basic/BuiltinsHexagon.def"
48   textual header "clang/Basic/BuiltinsHexagonDep.def"
49   textual header "clang/Basic/BuiltinsHexagonMapCustomDep.def"
50   textual header "clang/Basic/BuiltinsLoongArch.def"
51   textual header "clang/Basic/BuiltinsLoongArchBase.def"
52   textual header "clang/Basic/BuiltinsLoongArchLASX.def"
53   textual header "clang/Basic/BuiltinsLoongArchLSX.def"
54   textual header "clang/Basic/BuiltinsMips.def"
55   textual header "clang/Basic/BuiltinsNEON.def"
56   textual header "clang/Basic/BuiltinsNVPTX.def"
57   textual header "clang/Basic/BuiltinsPPC.def"
58   textual header "clang/Basic/BuiltinsRISCVVector.def"
59   textual header "clang/Basic/BuiltinsSME.def"
60   textual header "clang/Basic/BuiltinsSVE.def"
61   textual header "clang/Basic/BuiltinsSystemZ.def"
62   textual header "clang/Basic/BuiltinsVE.def"
63   textual header "clang/Basic/BuiltinsVEVL.gen.def"
64   textual header "clang/Basic/BuiltinsWebAssembly.def"
65   textual header "clang/Basic/BuiltinsX86.def"
66   textual header "clang/Basic/BuiltinsX86_64.def"
67   textual header "clang/Basic/BuiltinsXCore.def"
68   textual header "clang/Basic/CFProtectionOptions.def"
69   textual header "clang/Basic/CodeGenOptions.def"
70   textual header "clang/Basic/DebugOptions.def"
71   textual header "clang/Basic/DiagnosticOptions.def"
72   textual header "clang/Basic/FPOptions.def"
73   textual header "clang/Basic/Features.def"
74   textual header "clang/Basic/HLSLIntangibleTypes.def"
75   textual header "clang/Basic/LangOptions.def"
76   textual header "clang/Basic/MSP430Target.def"
77   textual header "clang/Basic/OpenACCClauses.def"
78   textual header "clang/Basic/OpenCLExtensionTypes.def"
79   textual header "clang/Basic/OpenCLExtensions.def"
80   textual header "clang/Basic/OpenCLImageTypes.def"
81   textual header "clang/Basic/OpenMPKinds.def"
82   textual header "clang/Basic/OperatorKinds.def"
83   textual header "clang/Basic/PPCTypes.def"
84   textual header "clang/Basic/RISCVVTypes.def"
85   textual header "clang/Basic/Sanitizers.def"
86   textual header "clang/Basic/TargetCXXABI.def"
87   textual header "clang/Basic/TargetOSMacros.def"
88   textual header "clang/Basic/TokenKinds.def"
89   textual header "clang/Basic/TransformTypeTraits.def"
90   textual header "clang/Basic/WebAssemblyReferenceTypes.def"
92   module * { export * }
94 module Clang_Basic_TokenKinds {
95   requires cplusplus
97   header "clang/Basic/TokenKinds.h"
98   textual header "clang/Basic/TokenKinds.def"
100   export *
103 module Clang_CodeGen { requires cplusplus umbrella "clang/CodeGen" module * { export * } }
104 module Clang_Config { requires cplusplus umbrella "clang/Config" module * { export * } }
106 // Files for diagnostic groups are spread all over the include/clang/ tree, but
107 // logically form a single module.
108 module Clang_Diagnostics {
109   requires cplusplus
111   module All { header "clang/Basic/AllDiagnostics.h" export * }
112   module Analysis { textual header "clang/Analysis/Analyses/UnsafeBufferUsageGadgets.def" }
113   module AST { header "clang/AST/ASTDiagnostic.h" export * }
114   module Comment { header "clang/AST/CommentDiagnostic.h" export * }
115   module Driver { header "clang/Driver/DriverDiagnostic.h" export * }
116   module Frontend { header "clang/Frontend/FrontendDiagnostic.h" export * }
117   module Lex { header "clang/Lex/LexDiagnostic.h" export * }
118   module Parse { header "clang/Parse/ParseDiagnostic.h" export * }
119   module Serialization { header "clang/Serialization/SerializationDiagnostic.h" export * }
120   module Refactoring { header "clang/Tooling/Refactoring/RefactoringDiagnostic.h" export * }
123 module Clang_Driver {
124   requires cplusplus
125   umbrella "clang/Driver"
127   textual header "clang/Driver/Types.def"
129   module * { export * }
132 module Clang_Edit { requires cplusplus umbrella "clang/Edit" module * { export * } }
133 module Clang_Format { requires cplusplus umbrella "clang/Format" module * { export * } }
135 module Clang_Frontend {
136   requires cplusplus
137   umbrella "clang/Frontend"
139   textual header "clang/Basic/LangStandards.def"
141   module * { export * }
144 module Clang_FrontendTool { requires cplusplus umbrella "clang/FrontendTool" module * { export * } }
145 module Clang_Index { requires cplusplus umbrella "clang/Index" module * { export * } }
146 module Clang_Lex { requires cplusplus umbrella "clang/Lex" module * { export * } }
147 module Clang_Parse { requires cplusplus umbrella "clang/Parse" module * { export * } }
148 module Clang_Rewrite { requires cplusplus umbrella "clang/Rewrite/Core" module * { export * } }
149 module Clang_RewriteFrontend { requires cplusplus umbrella "clang/Rewrite/Frontend" module * { export * } }
150 module Clang_Sema { requires cplusplus umbrella "clang/Sema" module * { export * } }
152 module Clang_Serialization {
153   requires cplusplus
154   umbrella "clang/Serialization"
156   textual header "clang/Serialization/TypeBitCodes.def"
158   module * { export * }
161 module Clang_StaticAnalyzer_Core {
162   requires cplusplus
163   umbrella "clang/StaticAnalyzer/Core"
165   textual header "clang/StaticAnalyzer/Core/Analyses.def"
166   textual header "clang/StaticAnalyzer/Core/AnalyzerOptions.def"
167   textual header "clang/StaticAnalyzer/Core/PathSensitive/SVals.def"
168   textual header "clang/StaticAnalyzer/Core/PathSensitive/Symbols.def"
169   textual header "clang/StaticAnalyzer/Core/PathSensitive/Regions.def"
171   module * { export * }
174 module Clang_StaticAnalyzer_Checkers {
175   requires cplusplus
176   umbrella "clang/StaticAnalyzer/Checkers"
177   module * { export * }
180 module Clang_StaticAnalyzer_Frontend {
181   requires cplusplus
182   umbrella "clang/StaticAnalyzer/Frontend"
183   module * { export * }
186 module Clang_Testing {
187   requires cplusplus
188   umbrella "clang/Testing"
189   module * { export * }
192 module Clang_Tooling {
193   requires cplusplus umbrella "clang/Tooling" module * { export * }
194   // FIXME: Exclude these headers to avoid pulling all of the AST matchers
195   // library into clang-format. Due to inline key functions in the headers,
196   // importing the AST matchers library gives a link dependency on the AST
197   // matchers (and thus the AST), which clang-format should not have.
198   exclude header "clang/Tooling/RefactoringCallbacks.h"
201 module Clang_ToolingCore {
202   requires cplusplus
203   umbrella "clang/Tooling/Core" module * { export * }
206 module Clang_ToolingInclusions {
207   requires cplusplus
208   umbrella "clang/Tooling/Inclusions"
209   module * { export * }