Separate out BDCE's analysis into a separate DemandedBits analysis.
[oota-llvm.git] / include / llvm / module.modulemap
index 5a2a54cd80dab116171b7cfaeeaaadf7155ff99b..dcc5ce1059ff5d24f5812786f4f147fb9659491b 100644 (file)
@@ -2,7 +2,12 @@ module LLVM_Analysis {
   requires cplusplus
   umbrella "Analysis"
   module * { export * }
+
+  // FIXME: Why is this excluded?
   exclude header "Analysis/BlockFrequencyInfoImpl.h"
+
+  // This is intended for (repeated) textual inclusion.
+  textual header "Analysis/TargetLibraryInfo.def"
 }
 
 module LLVM_AsmParser { requires cplusplus umbrella "AsmParser" module * { export * } }
@@ -24,6 +29,9 @@ module LLVM_Backend {
     exclude header "CodeGen/CommandFlags.h"
     exclude header "CodeGen/LinkAllAsmWriterComponents.h"
     exclude header "CodeGen/LinkAllCodegenComponents.h"
+
+    // These are intended for (repeated) textual inclusion.
+    textual header "CodeGen/DIEValue.def"
   }
 
   module Target {
@@ -41,6 +49,11 @@ module LLVM_Backend {
 module LLVM_Bitcode { requires cplusplus umbrella "Bitcode" module * { export * } }
 module LLVM_Config { requires cplusplus umbrella "Config" module * { export * } }
 
+module LLVM_DebugInfo {
+  requires cplusplus
+  module DIContext { header "DebugInfo/DIContext.h" export * }
+}
+
 module LLVM_DebugInfo_DWARF {
   requires cplusplus
 
@@ -58,16 +71,16 @@ module LLVM_DebugInfo_PDB {
   // a separate library which might not be available.
   //
   // FIXME: There should be a better way to specify this.
-  exclude header "DebugInfo/PDB/DIADataStream.h"
-  exclude header "DebugInfo/PDB/DIAEnumDebugStreams.h"
-  exclude header "DebugInfo/PDB/DIAEnumLineNumbers.h"
-  exclude header "DebugInfo/PDB/DIAEnumSourceFiles.h"
-  exclude header "DebugInfo/PDB/DIAEnumSymbols.h"
-  exclude header "DebugInfo/PDB/DIALineNumber.h"
-  exclude header "DebugInfo/PDB/DIARawSymbol.h"
-  exclude header "DebugInfo/PDB/DIASession.h"
-  exclude header "DebugInfo/PDB/DIASourceFile.h"
-  exclude header "DebugInfo/PDB/DIASupport.h"
+  exclude header "DebugInfo/PDB/DIA/DIADataStream.h"
+  exclude header "DebugInfo/PDB/DIA/DIAEnumDebugStreams.h"
+  exclude header "DebugInfo/PDB/DIA/DIAEnumLineNumbers.h"
+  exclude header "DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
+  exclude header "DebugInfo/PDB/DIA/DIAEnumSymbols.h"
+  exclude header "DebugInfo/PDB/DIA/DIALineNumber.h"
+  exclude header "DebugInfo/PDB/DIA/DIARawSymbol.h"
+  exclude header "DebugInfo/PDB/DIA/DIASession.h"
+  exclude header "DebugInfo/PDB/DIA/DIASourceFile.h"
+  exclude header "DebugInfo/PDB/DIA/DIASupport.h"
 }
 
 module LLVM_DebugInfo_PDB_DIA {
@@ -108,8 +121,10 @@ module LLVM_IR {
   module * { export * }
 
   // These are intended for (repeated) textual inclusion.
+  textual header "IR/DebugInfoFlags.def"
   textual header "IR/Instruction.def"
   textual header "IR/Metadata.def"
+  textual header "IR/Value.def"
 }
 
 module LLVM_IRReader { requires cplusplus umbrella "IRReader" module * { export * } }