1 //===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the implementation of the Archive and ArchiveMember
11 // classes that is common to both reading and writing archives..
13 //===----------------------------------------------------------------------===//
15 #include "ArchiveInternals.h"
16 #include "llvm/Bitcode/ReaderWriter.h"
17 #include "llvm/Module.h"
18 #include "llvm/Support/MemoryBuffer.h"
19 #include "llvm/System/Process.h"
24 // getMemberSize - compute the actual physical size of the file member as seen
25 // on disk. This isn't the size of member's payload. Use getSize() for that.
27 ArchiveMember::getMemberSize() const {
28 // Basically its the file size plus the header size
29 unsigned result
= info
.fileSize
+ sizeof(ArchiveMemberHeader
);
31 // If it has a long filename, include the name length
32 if (hasLongFilename())
33 result
+= path
.str().length() + 1;
35 // If its now odd lengthed, include the padding byte
42 // This default constructor is only use by the ilist when it creates its
43 // sentry node. We give it specific static values to make it stand out a bit.
44 ArchiveMember::ArchiveMember()
45 : parent(0), path("--invalid--"), flags(0), data(0)
47 info
.user
= sys::Process::GetCurrentUserId();
48 info
.group
= sys::Process::GetCurrentGroupId();
51 info
.modTime
= sys::TimeValue::now();
54 // This is the constructor that the Archive class uses when it is building or
55 // reading an archive. It just defaults a few things and ensures the parent is
56 // set for the iplist. The Archive class fills in the ArchiveMember's data.
57 // This is required because correctly setting the data may depend on other
58 // things in the Archive.
59 ArchiveMember::ArchiveMember(Archive
* PAR
)
60 : parent(PAR
), path(), flags(0), data(0)
64 // This method allows an ArchiveMember to be replaced with the data for a
65 // different file, presumably as an update to the member. It also makes sure
66 // the flags are reset correctly.
67 bool ArchiveMember::replaceWith(const sys::Path
& newFile
, std::string
* ErrMsg
) {
68 if (!newFile
.exists()) {
70 *ErrMsg
= "Can not replace an archive member with a non-existent file";
77 // SVR4 symbol tables have an empty name
78 if (path
.str() == ARFILE_SVR4_SYMTAB_NAME
)
79 flags
|= SVR4SymbolTableFlag
;
81 flags
&= ~SVR4SymbolTableFlag
;
83 // BSD4.4 symbol tables have a special name
84 if (path
.str() == ARFILE_BSD4_SYMTAB_NAME
)
85 flags
|= BSD4SymbolTableFlag
;
87 flags
&= ~BSD4SymbolTableFlag
;
89 // LLVM symbol tables have a very specific name
90 if (path
.str() == ARFILE_LLVM_SYMTAB_NAME
)
91 flags
|= LLVMSymbolTableFlag
;
93 flags
&= ~LLVMSymbolTableFlag
;
96 if (path
.str() == ARFILE_STRTAB_NAME
)
97 flags
|= StringTableFlag
;
99 flags
&= ~StringTableFlag
;
101 // If it has a slash then it has a path
102 bool hasSlash
= path
.str().find('/') != std::string::npos
;
104 flags
|= HasPathFlag
;
106 flags
&= ~HasPathFlag
;
108 // If it has a slash or its over 15 chars then its a long filename format
109 if (hasSlash
|| path
.str().length() > 15)
110 flags
|= HasLongFilenameFlag
;
112 flags
&= ~HasLongFilenameFlag
;
114 // Get the signature and status info
115 const char* signature
= (const char*) data
;
118 path
.getMagicNumber(magic
,4);
119 signature
= magic
.c_str();
121 const sys::FileStatus
*FSinfo
= path
.getFileStatus(false, ErrMsg
);
128 // Determine what kind of file it is.
129 switch (sys::IdentifyFileType(signature
,4)) {
130 case sys::Bitcode_FileType
:
131 flags
|= BitcodeFlag
;
134 flags
&= ~BitcodeFlag
;
140 // Archive constructor - this is the only constructor that gets used for the
141 // Archive class. Everything else (default,copy) is deprecated. This just
142 // initializes and maps the file into memory, if requested.
143 Archive::Archive(const sys::Path
& filename
, LLVMContext
& C
)
144 : archPath(filename
), members(), mapfile(0), base(0), symTab(), strtab(),
145 symTabSize(0), firstFileOffset(0), modules(), foreignST(0), Context(C
) {
149 Archive::mapToMemory(std::string
* ErrMsg
) {
150 mapfile
= MemoryBuffer::getFile(archPath
.c_str(), ErrMsg
);
153 base
= mapfile
->getBufferStart();
157 void Archive::cleanUpMemory() {
158 // Shutdown the file mapping
163 // Forget the entire symbol table
169 // Free the foreign symbol table member
175 // Delete any Modules and ArchiveMember's we've allocated as a result of
176 // symbol table searches.
177 for (ModuleMap::iterator I
=modules
.begin(), E
=modules
.end(); I
!= E
; ++I
) {
178 delete I
->second
.first
;
179 delete I
->second
.second
;
183 // Archive destructor - just clean up memory
184 Archive::~Archive() {
190 static void getSymbols(Module
*M
, std::vector
<std::string
>& symbols
) {
191 // Loop over global variables
192 for (Module::global_iterator GI
= M
->global_begin(), GE
=M
->global_end(); GI
!= GE
; ++GI
)
193 if (!GI
->isDeclaration() && !GI
->hasLocalLinkage())
194 if (!GI
->getName().empty())
195 symbols
.push_back(GI
->getName());
197 // Loop over functions
198 for (Module::iterator FI
= M
->begin(), FE
= M
->end(); FI
!= FE
; ++FI
)
199 if (!FI
->isDeclaration() && !FI
->hasLocalLinkage())
200 if (!FI
->getName().empty())
201 symbols
.push_back(FI
->getName());
204 for (Module::alias_iterator AI
= M
->alias_begin(), AE
= M
->alias_end();
207 symbols
.push_back(AI
->getName());
211 // Get just the externally visible defined symbols from the bitcode
212 bool llvm::GetBitcodeSymbols(const sys::Path
& fName
,
213 LLVMContext
& Context
,
214 std::vector
<std::string
>& symbols
,
215 std::string
* ErrMsg
) {
216 std::auto_ptr
<MemoryBuffer
> Buffer(
217 MemoryBuffer::getFileOrSTDIN(fName
.c_str()));
219 if (ErrMsg
) *ErrMsg
= "Could not open file '" + fName
.str() + "'";
223 Module
*M
= ParseBitcodeFile(Buffer
.get(), Context
, ErrMsg
);
228 getSymbols(M
, symbols
);
230 // Done with the module.
236 llvm::GetBitcodeSymbols(const char *BufPtr
, unsigned Length
,
237 const std::string
& ModuleID
,
238 LLVMContext
& Context
,
239 std::vector
<std::string
>& symbols
,
240 std::string
* ErrMsg
) {
242 std::auto_ptr
<MemoryBuffer
> Buffer(
243 MemoryBuffer::getMemBufferCopy(StringRef(BufPtr
, Length
),ModuleID
.c_str()));
245 Module
*M
= ParseBitcodeFile(Buffer
.get(), Context
, ErrMsg
);
250 getSymbols(M
, symbols
);
252 // Done with the module. Note that it's the caller's responsibility to delete