diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-15 01:20:11 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-15 01:20:11 +0000 |
commit | 766b793143fa863283498233e8962391da09b63a (patch) | |
tree | 7a344adee85815f8ae6dddff08bed62bf0d5529d /lib/Bytecode/Archive/ArchiveWriter.cpp | |
parent | 6238a85e4f6931a9572e5d327c3ffa7ce1087d50 (diff) |
Changes necessary to enable linking of archives without LLVM symbol tables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Archive/ArchiveWriter.cpp')
-rw-r--r-- | lib/Bytecode/Archive/ArchiveWriter.cpp | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/lib/Bytecode/Archive/ArchiveWriter.cpp b/lib/Bytecode/Archive/ArchiveWriter.cpp index 727b2bfcdf..fa4d9e64fd 100644 --- a/lib/Bytecode/Archive/ArchiveWriter.cpp +++ b/lib/Bytecode/Archive/ArchiveWriter.cpp @@ -197,19 +197,28 @@ Archive::writeMember( if (CreateSymbolTable && (member.isBytecode() || member.isCompressedBytecode())) { std::vector<std::string> symbols; - GetBytecodeSymbols((const unsigned char*)data,fSize,member.getPath().get(), - symbols); - for (std::vector<std::string>::iterator SI = symbols.begin(), - SE = symbols.end(); SI != SE; ++SI) { - - std::pair<SymTabType::iterator,bool> Res = - symTab.insert(std::make_pair(*SI,filepos)); - - if (Res.second) { - symTabSize += SI->length() + - numVbrBytes(SI->length()) + - numVbrBytes(filepos); + ModuleProvider* MP = GetBytecodeSymbols( + (const unsigned char*)data,fSize,member.getPath().get(), symbols); + + // If the bytecode parsed successfully + if ( MP ) { + for (std::vector<std::string>::iterator SI = symbols.begin(), + SE = symbols.end(); SI != SE; ++SI) { + + std::pair<SymTabType::iterator,bool> Res = + symTab.insert(std::make_pair(*SI,filepos)); + + if (Res.second) { + symTabSize += SI->length() + + numVbrBytes(SI->length()) + + numVbrBytes(filepos); + } } + // We don't need this module any more. + delete MP; + } else { + throw std::string("Can't parse bytecode member: ") + + member.getPath().get(); } } |