From 0701a2f70df66134ead84d4fe86b20b8f28c4fc3 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 6 Sep 2006 18:50:26 +0000 Subject: [PATCH] Keep track of all modules crated using a name to module map. Add private member function getMoudle(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30130 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/LinkTimeOptimizer.h | 6 ++++++ tools/lto/lto.cpp | 19 ++++++++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/include/llvm/LinkTimeOptimizer.h b/include/llvm/LinkTimeOptimizer.h index d20d21e4c02..76a7af66da0 100644 --- a/include/llvm/LinkTimeOptimizer.h +++ b/include/llvm/LinkTimeOptimizer.h @@ -83,6 +83,8 @@ namespace llvm { public: typedef hash_map, string_compare> NameToSymbolMap; + typedef hash_map, + string_compare> NameToModuleMap; enum LTOStatus readLLVMObjectFile(const std::string &InputFilename, NameToSymbolMap &symbols, @@ -91,9 +93,13 @@ namespace llvm { std::vector &exportList, std::string &targetTriple); + private: + Module *getModule (const std::string &InputFilename); + private: std::vector modules; NameToSymbolMap allSymbols; + NameToModuleMap allModules; }; } // End llvm namespace diff --git a/tools/lto/lto.cpp b/tools/lto/lto.cpp index e49364e6320..96b449e28c8 100644 --- a/tools/lto/lto.cpp +++ b/tools/lto/lto.cpp @@ -99,6 +99,23 @@ findExternalRefs(Value *value, std::set &references, findExternalRefs(c->getOperand(i), references, mangler); } +/// InputFilename is a LLVM bytecode file. If Module with InputFilename is +/// available then return it. Otherwise parseInputFilename. +Module * +LinkTimeOptimizer::getModule(const std::string &InputFilename) +{ + Module *m = NULL; + + NameToModuleMap::iterator pos = allModules.find(InputFilename.c_str()); + if (pos != allModules.end()) + m = allModules[InputFilename.c_str()]; + else { + m = ParseBytecodeFile(InputFilename); + allModules[InputFilename.c_str()] = m; + } + return m; +} + /// InputFilename is a LLVM bytecode file. Read it using bytecode reader. /// Collect global functions and symbol names in symbols vector. /// Collect external references in references vector. @@ -108,7 +125,7 @@ LinkTimeOptimizer::readLLVMObjectFile(const std::string &InputFilename, NameToSymbolMap &symbols, std::set &references) { - Module *m = ParseBytecodeFile(InputFilename); + Module *m = getModule(InputFilename); if (!m) return LTO_READ_FAILURE; -- 2.34.1