Avoid a useless temporary constrution.
[oota-llvm.git] / lib / Bytecode / Archive / Archive.cpp
1 //===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Reid Spencer and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the implementation of the Archive and ArchiveMember
11 // classes that is common to both reading and writing archives..
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "ArchiveInternals.h"
16 #include "llvm/ModuleProvider.h"
17 #include "llvm/Module.h"
18 #include "llvm/Bytecode/Reader.h"
19 #include "llvm/System/Process.h"
20 using namespace llvm;
21
22 // getMemberSize - compute the actual physical size of the file member as seen
23 // on disk. This isn't the size of member's payload. Use getSize() for that.
24 unsigned
25 ArchiveMember::getMemberSize() const {
26   // Basically its the file size plus the header size
27   unsigned result =  info.fileSize + sizeof(ArchiveMemberHeader);
28
29   // If it has a long filename, include the name length
30   if (hasLongFilename())
31     result += path.toString().length() + 1;
32
33   // If its now odd lengthed, include the padding byte
34   if (result % 2 != 0 )
35     result++;
36
37   return result;
38 }
39
40 // This default constructor is only use by the ilist when it creates its
41 // sentry node. We give it specific static values to make it stand out a bit.
42 ArchiveMember::ArchiveMember()
43   : next(0), prev(0), parent(0), path("--invalid--"), flags(0), data(0)
44 {
45   info.user = sys::Process::GetCurrentUserId();
46   info.group = sys::Process::GetCurrentGroupId();
47   info.mode = 0777;
48   info.fileSize = 0;
49   info.modTime = sys::TimeValue::now();
50 }
51
52 // This is the constructor that the Archive class uses when it is building or
53 // reading an archive. It just defaults a few things and ensures the parent is
54 // set for the iplist. The Archive class fills in the ArchiveMember's data.
55 // This is required because correctly setting the data may depend on other
56 // things in the Archive.
57 ArchiveMember::ArchiveMember(Archive* PAR)
58   : next(0), prev(0), parent(PAR), path(), flags(0), data(0)
59 {
60 }
61
62 // This method allows an ArchiveMember to be replaced with the data for a
63 // different file, presumably as an update to the member. It also makes sure
64 // the flags are reset correctly.
65 bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
66   if (!newFile.exists()) {
67     if (ErrMsg) 
68       *ErrMsg = "Can not replace an archive member with a non-existent file";
69     return true;
70   }
71
72   data = 0;
73   path = newFile;
74
75   // SVR4 symbol tables have an empty name
76   if (path.toString() == ARFILE_SVR4_SYMTAB_NAME)
77     flags |= SVR4SymbolTableFlag;
78   else
79     flags &= ~SVR4SymbolTableFlag;
80
81   // BSD4.4 symbol tables have a special name
82   if (path.toString() == ARFILE_BSD4_SYMTAB_NAME)
83     flags |= BSD4SymbolTableFlag;
84   else
85     flags &= ~BSD4SymbolTableFlag;
86
87   // LLVM symbol tables have a very specific name
88   if (path.toString() == ARFILE_LLVM_SYMTAB_NAME)
89     flags |= LLVMSymbolTableFlag;
90   else
91     flags &= ~LLVMSymbolTableFlag;
92
93   // String table name
94   if (path.toString() == ARFILE_STRTAB_NAME)
95     flags |= StringTableFlag;
96   else
97     flags &= ~StringTableFlag;
98
99   // If it has a slash then it has a path
100   bool hasSlash = path.toString().find('/') != std::string::npos;
101   if (hasSlash)
102     flags |= HasPathFlag;
103   else
104     flags &= ~HasPathFlag;
105
106   // If it has a slash or its over 15 chars then its a long filename format
107   if (hasSlash || path.toString().length() > 15)
108     flags |= HasLongFilenameFlag;
109   else
110     flags &= ~HasLongFilenameFlag;
111
112   // Get the signature and status info
113   const char* signature = (const char*) data;
114   std::string magic;
115   if (!signature) {
116     path.getMagicNumber(magic,4);
117     signature = magic.c_str();
118     std::string err;
119     const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
120     if (FSinfo)
121       info = *FSinfo;
122     else
123       return true;
124   }
125
126   // Determine what kind of file it is
127   switch (sys::IdentifyFileType(signature,4)) {
128     case sys::Bytecode_FileType:
129       flags |= BytecodeFlag;
130       break;
131     case sys::CompressedBytecode_FileType:
132       flags |= CompressedBytecodeFlag;
133       flags &= ~CompressedFlag;
134       break;
135     default:
136       flags &= ~(BytecodeFlag|CompressedBytecodeFlag);
137       break;
138   }
139   return false;
140 }
141
142 // Archive constructor - this is the only constructor that gets used for the
143 // Archive class. Everything else (default,copy) is deprecated. This just
144 // initializes and maps the file into memory, if requested.
145 Archive::Archive(const sys::Path& filename, BCDecompressor_t *BCDC)
146   : archPath(filename), members(), mapfile(0), base(0), symTab(), strtab(),
147     symTabSize(0), firstFileOffset(0), modules(), foreignST(0), 
148     Decompressor(BCDC) {
149 }
150
151 bool
152 Archive::mapToMemory(std::string* ErrMsg)
153 {
154   mapfile = new sys::MappedFile();
155   if (mapfile->open(archPath, sys::MappedFile::READ_ACCESS, ErrMsg))
156     return true;
157   if (!(base = (char*) mapfile->map(ErrMsg)))
158     return true;
159   return false;
160 }
161
162 void Archive::cleanUpMemory() {
163   // Shutdown the file mapping
164   if (mapfile) {
165     mapfile->close();
166     delete mapfile;
167     
168     mapfile = 0;
169     base = 0;
170   }
171   
172   // Forget the entire symbol table
173   symTab.clear();
174   symTabSize = 0;
175   
176   firstFileOffset = 0;
177   
178   // Free the foreign symbol table member
179   if (foreignST) {
180     delete foreignST;
181     foreignST = 0;
182   }
183   
184   // Delete any ModuleProviders and ArchiveMember's we've allocated as a result
185   // of symbol table searches.
186   for (ModuleMap::iterator I=modules.begin(), E=modules.end(); I != E; ++I ) {
187     delete I->second.first;
188     delete I->second.second;
189   }
190 }
191
192 // Archive destructor - just clean up memory
193 Archive::~Archive() {
194   cleanUpMemory();
195 }
196
197
198
199 static void getSymbols(Module*M, std::vector<std::string>& symbols) {
200   // Loop over global variables
201   for (Module::global_iterator GI = M->global_begin(), GE=M->global_end(); GI != GE; ++GI)
202     if (!GI->isDeclaration() && !GI->hasInternalLinkage())
203       if (!GI->getName().empty())
204         symbols.push_back(GI->getName());
205   
206   // Loop over functions.
207   for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
208     if (!FI->isDeclaration() && !FI->hasInternalLinkage())
209       if (!FI->getName().empty())
210         symbols.push_back(FI->getName());
211 }
212
213 // Get just the externally visible defined symbols from the bytecode
214 bool llvm::GetBytecodeSymbols(const sys::Path& fName,
215                               std::vector<std::string>& symbols,
216                               BCDecompressor_t *BCDC,
217                               std::string* ErrMsg) {
218   ModuleProvider *MP = getBytecodeModuleProvider(fName.toString(), BCDC,ErrMsg);
219   if (!MP)
220     return true;
221   
222   // Get the module from the provider
223   Module* M = MP->materializeModule();
224   if (M == 0) {
225     delete MP;
226     return true;
227   }
228   
229   // Get the symbols
230   getSymbols(M, symbols);
231   
232   // Done with the module.
233   delete MP;
234   return true;
235 }
236
237 ModuleProvider*
238 llvm::GetBytecodeSymbols(const unsigned char*Buffer, unsigned Length,
239                          const std::string& ModuleID,
240                          std::vector<std::string>& symbols,
241                          BCDecompressor_t *BCDC,
242                          std::string* ErrMsg) {
243   // Get the module provider
244   ModuleProvider* MP = 
245   getBytecodeBufferModuleProvider(Buffer, Length, ModuleID, BCDC, ErrMsg, 0);
246   if (!MP)
247     return 0;
248   
249   // Get the module from the provider
250   Module* M = MP->materializeModule();
251   if (M == 0) {
252     delete MP;
253     return 0;
254   }
255   
256   // Get the symbols
257   getSymbols(M, symbols);
258   
259   // Done with the module. Note that ModuleProvider will delete the
260   // Module when it is deleted. Also note that its the caller's responsibility
261   // to delete the ModuleProvider.
262   return MP;
263 }