Fold a binary operator with constant operands when expanding code for a SCEV.
[llvm-complete.git] / lib / Archive / ArchiveReader.cpp
blobc38389e2d7c08ef8753546051aaf8e8af72653df
1 //===-- ArchiveReader.cpp - Read LLVM archive files -------------*- 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 // Builds up standard unix archive files (.a) containing LLVM bytecode.
12 //===----------------------------------------------------------------------===//
14 #include "ArchiveInternals.h"
15 #include "llvm/Bitcode/ReaderWriter.h"
16 #include "llvm/Support/MemoryBuffer.h"
17 #include "llvm/Module.h"
18 #include <memory>
19 using namespace llvm;
21 /// Read a variable-bit-rate encoded unsigned integer
22 inline unsigned readInteger(const char*&At, const char*End){
23 unsigned Shift = 0;
24 unsigned Result = 0;
26 do {
27 if (At == End)
28 return Result;
29 Result |= (unsigned)((*At++) & 0x7F) << Shift;
30 Shift += 7;
31 } while (At[-1] & 0x80);
32 return Result;
35 // Completely parse the Archive's symbol table and populate symTab member var.
36 bool
37 Archive::parseSymbolTable(const void* data, unsigned size, std::string* error) {
38 const char* At = (const char*) data;
39 const char* End = At + size;
40 while (At < End) {
41 unsigned offset = readInteger(At, End);
42 if (At == End) {
43 if (error)
44 *error = "Ran out of data reading vbr_uint for symtab offset!";
45 return false;
47 unsigned length = readInteger(At, End);
48 if (At == End) {
49 if (error)
50 *error = "Ran out of data reading vbr_uint for symtab length!";
51 return false;
53 if (At + length > End) {
54 if (error)
55 *error = "Malformed symbol table: length not consistent with size";
56 return false;
58 // we don't care if it can't be inserted (duplicate entry)
59 symTab.insert(std::make_pair(std::string(At, length), offset));
60 At += length;
62 symTabSize = size;
63 return true;
66 // This member parses an ArchiveMemberHeader that is presumed to be pointed to
67 // by At. The At pointer is updated to the byte just after the header, which
68 // can be variable in size.
69 ArchiveMember*
70 Archive::parseMemberHeader(const char*& At, const char* End, std::string* error)
72 if (At + sizeof(ArchiveMemberHeader) >= End) {
73 if (error)
74 *error = "Unexpected end of file";
75 return 0;
78 // Cast archive member header
79 ArchiveMemberHeader* Hdr = (ArchiveMemberHeader*)At;
80 At += sizeof(ArchiveMemberHeader);
82 // Extract the size and determine if the file is
83 // compressed or not (negative length).
84 int flags = 0;
85 int MemberSize = atoi(Hdr->size);
86 if (MemberSize < 0) {
87 flags |= ArchiveMember::CompressedFlag;
88 MemberSize = -MemberSize;
91 // Check the size of the member for sanity
92 if (At + MemberSize > End) {
93 if (error)
94 *error = "invalid member length in archive file";
95 return 0;
98 // Check the member signature
99 if (!Hdr->checkSignature()) {
100 if (error)
101 *error = "invalid file member signature";
102 return 0;
105 // Convert and check the member name
106 // The empty name ( '/' and 15 blanks) is for a foreign (non-LLVM) symbol
107 // table. The special name "//" and 14 blanks is for a string table, used
108 // for long file names. This library doesn't generate either of those but
109 // it will accept them. If the name starts with #1/ and the remainder is
110 // digits, then those digits specify the length of the name that is
111 // stored immediately following the header. The special name
112 // __LLVM_SYM_TAB__ identifies the symbol table for LLVM bytecode.
113 // Anything else is a regular, short filename that is terminated with
114 // a '/' and blanks.
116 std::string pathname;
117 switch (Hdr->name[0]) {
118 case '#':
119 if (Hdr->name[1] == '1' && Hdr->name[2] == '/') {
120 if (isdigit(Hdr->name[3])) {
121 unsigned len = atoi(&Hdr->name[3]);
122 pathname.assign(At, len);
123 At += len;
124 MemberSize -= len;
125 flags |= ArchiveMember::HasLongFilenameFlag;
126 } else {
127 if (error)
128 *error = "invalid long filename";
129 return 0;
131 } else if (Hdr->name[1] == '_' &&
132 (0 == memcmp(Hdr->name, ARFILE_LLVM_SYMTAB_NAME, 16))) {
133 // The member is using a long file name (>15 chars) format.
134 // This format is standard for 4.4BSD and Mac OSX operating
135 // systems. LLVM uses it similarly. In this format, the
136 // remainder of the name field (after #1/) specifies the
137 // length of the file name which occupy the first bytes of
138 // the member's data. The pathname already has the #1/ stripped.
139 pathname.assign(ARFILE_LLVM_SYMTAB_NAME);
140 flags |= ArchiveMember::LLVMSymbolTableFlag;
142 break;
143 case '/':
144 if (Hdr->name[1]== '/') {
145 if (0 == memcmp(Hdr->name, ARFILE_STRTAB_NAME, 16)) {
146 pathname.assign(ARFILE_STRTAB_NAME);
147 flags |= ArchiveMember::StringTableFlag;
148 } else {
149 if (error)
150 *error = "invalid string table name";
151 return 0;
153 } else if (Hdr->name[1] == ' ') {
154 if (0 == memcmp(Hdr->name, ARFILE_SVR4_SYMTAB_NAME, 16)) {
155 pathname.assign(ARFILE_SVR4_SYMTAB_NAME);
156 flags |= ArchiveMember::SVR4SymbolTableFlag;
157 } else {
158 if (error)
159 *error = "invalid SVR4 symbol table name";
160 return 0;
162 } else if (isdigit(Hdr->name[1])) {
163 unsigned index = atoi(&Hdr->name[1]);
164 if (index < strtab.length()) {
165 const char* namep = strtab.c_str() + index;
166 const char* endp = strtab.c_str() + strtab.length();
167 const char* p = namep;
168 const char* last_p = p;
169 while (p < endp) {
170 if (*p == '\n' && *last_p == '/') {
171 pathname.assign(namep, last_p - namep);
172 flags |= ArchiveMember::HasLongFilenameFlag;
173 break;
175 last_p = p;
176 p++;
178 if (p >= endp) {
179 if (error)
180 *error = "missing name termiantor in string table";
181 return 0;
183 } else {
184 if (error)
185 *error = "name index beyond string table";
186 return 0;
189 break;
190 case '_':
191 if (Hdr->name[1] == '_' &&
192 (0 == memcmp(Hdr->name, ARFILE_BSD4_SYMTAB_NAME, 16))) {
193 pathname.assign(ARFILE_BSD4_SYMTAB_NAME);
194 flags |= ArchiveMember::BSD4SymbolTableFlag;
195 break;
197 /* FALL THROUGH */
199 default:
200 char* slash = (char*) memchr(Hdr->name, '/', 16);
201 if (slash == 0)
202 slash = Hdr->name + 16;
203 pathname.assign(Hdr->name, slash - Hdr->name);
204 break;
207 // Determine if this is a bytecode file
208 switch (sys::IdentifyFileType(At, 4)) {
209 case sys::Bitcode_FileType:
210 case sys::Bytecode_FileType:
211 flags |= ArchiveMember::BytecodeFlag;
212 break;
213 case sys::CompressedBytecode_FileType:
214 flags |= ArchiveMember::CompressedBytecodeFlag;
215 flags &= ~ArchiveMember::CompressedFlag;
216 break;
217 default:
218 flags &= ~(ArchiveMember::BytecodeFlag|
219 ArchiveMember::CompressedBytecodeFlag);
220 break;
223 // Instantiate the ArchiveMember to be filled
224 ArchiveMember* member = new ArchiveMember(this);
226 // Fill in fields of the ArchiveMember
227 member->next = 0;
228 member->prev = 0;
229 member->parent = this;
230 member->path.set(pathname);
231 member->info.fileSize = MemberSize;
232 member->info.modTime.fromEpochTime(atoi(Hdr->date));
233 unsigned int mode;
234 sscanf(Hdr->mode, "%o", &mode);
235 member->info.mode = mode;
236 member->info.user = atoi(Hdr->uid);
237 member->info.group = atoi(Hdr->gid);
238 member->flags = flags;
239 member->data = At;
241 return member;
244 bool
245 Archive::checkSignature(std::string* error) {
246 // Check the magic string at file's header
247 if (mapfile->size() < 8 || memcmp(base, ARFILE_MAGIC, 8)) {
248 if (error)
249 *error = "invalid signature for an archive file";
250 return false;
252 return true;
255 // This function loads the entire archive and fully populates its ilist with
256 // the members of the archive file. This is typically used in preparation for
257 // editing the contents of the archive.
258 bool
259 Archive::loadArchive(std::string* error) {
261 // Set up parsing
262 members.clear();
263 symTab.clear();
264 const char *At = base;
265 const char *End = base + mapfile->size();
267 if (!checkSignature(error))
268 return false;
270 At += 8; // Skip the magic string.
272 bool seenSymbolTable = false;
273 bool foundFirstFile = false;
274 while (At < End) {
275 // parse the member header
276 const char* Save = At;
277 ArchiveMember* mbr = parseMemberHeader(At, End, error);
278 if (!mbr)
279 return false;
281 // check if this is the foreign symbol table
282 if (mbr->isSVR4SymbolTable() || mbr->isBSD4SymbolTable()) {
283 // We just save this but don't do anything special
284 // with it. It doesn't count as the "first file".
285 if (foreignST) {
286 // What? Multiple foreign symbol tables? Just chuck it
287 // and retain the last one found.
288 delete foreignST;
290 foreignST = mbr;
291 At += mbr->getSize();
292 if ((intptr_t(At) & 1) == 1)
293 At++;
294 } else if (mbr->isStringTable()) {
295 // Simply suck the entire string table into a string
296 // variable. This will be used to get the names of the
297 // members that use the "/ddd" format for their names
298 // (SVR4 style long names).
299 strtab.assign(At, mbr->getSize());
300 At += mbr->getSize();
301 if ((intptr_t(At) & 1) == 1)
302 At++;
303 delete mbr;
304 } else if (mbr->isLLVMSymbolTable()) {
305 // This is the LLVM symbol table for the archive. If we've seen it
306 // already, its an error. Otherwise, parse the symbol table and move on.
307 if (seenSymbolTable) {
308 if (error)
309 *error = "invalid archive: multiple symbol tables";
310 return false;
312 if (!parseSymbolTable(mbr->getData(), mbr->getSize(), error))
313 return false;
314 seenSymbolTable = true;
315 At += mbr->getSize();
316 if ((intptr_t(At) & 1) == 1)
317 At++;
318 delete mbr; // We don't need this member in the list of members.
319 } else {
320 // This is just a regular file. If its the first one, save its offset.
321 // Otherwise just push it on the list and move on to the next file.
322 if (!foundFirstFile) {
323 firstFileOffset = Save - base;
324 foundFirstFile = true;
326 members.push_back(mbr);
327 At += mbr->getSize();
328 if ((intptr_t(At) & 1) == 1)
329 At++;
332 return true;
335 // Open and completely load the archive file.
336 Archive*
337 Archive::OpenAndLoad(const sys::Path& file, std::string* ErrorMessage)
339 std::auto_ptr<Archive> result ( new Archive(file));
340 if (result->mapToMemory(ErrorMessage))
341 return 0;
342 if (!result->loadArchive(ErrorMessage))
343 return 0;
344 return result.release();
347 // Get all the bytecode modules from the archive
348 bool
349 Archive::getAllModules(std::vector<Module*>& Modules, std::string* ErrMessage) {
351 for (iterator I=begin(), E=end(); I != E; ++I) {
352 if (I->isBytecode() || I->isCompressedBytecode()) {
353 std::string FullMemberName = archPath.toString() +
354 "(" + I->getPath().toString() + ")";
355 MemoryBuffer *Buffer =
356 MemoryBuffer::getNewMemBuffer(I->getSize(), FullMemberName.c_str());
357 memcpy((char*)Buffer->getBufferStart(), I->getData(), I->getSize());
359 Module *M = ParseBitcodeFile(Buffer, ErrMessage);
360 delete Buffer;
361 if (!M)
362 return true;
364 Modules.push_back(M);
367 return false;
370 // Load just the symbol table from the archive file
371 bool
372 Archive::loadSymbolTable(std::string* ErrorMsg) {
374 // Set up parsing
375 members.clear();
376 symTab.clear();
377 const char *At = base;
378 const char *End = base + mapfile->size();
380 // Make sure we're dealing with an archive
381 if (!checkSignature(ErrorMsg))
382 return false;
384 At += 8; // Skip signature
386 // Parse the first file member header
387 const char* FirstFile = At;
388 ArchiveMember* mbr = parseMemberHeader(At, End, ErrorMsg);
389 if (!mbr)
390 return false;
392 if (mbr->isSVR4SymbolTable() || mbr->isBSD4SymbolTable()) {
393 // Skip the foreign symbol table, we don't do anything with it
394 At += mbr->getSize();
395 if ((intptr_t(At) & 1) == 1)
396 At++;
397 delete mbr;
399 // Read the next one
400 FirstFile = At;
401 mbr = parseMemberHeader(At, End, ErrorMsg);
402 if (!mbr) {
403 delete mbr;
404 return false;
408 if (mbr->isStringTable()) {
409 // Process the string table entry
410 strtab.assign((const char*)mbr->getData(), mbr->getSize());
411 At += mbr->getSize();
412 if ((intptr_t(At) & 1) == 1)
413 At++;
414 delete mbr;
415 // Get the next one
416 FirstFile = At;
417 mbr = parseMemberHeader(At, End, ErrorMsg);
418 if (!mbr) {
419 delete mbr;
420 return false;
424 // See if its the symbol table
425 if (mbr->isLLVMSymbolTable()) {
426 if (!parseSymbolTable(mbr->getData(), mbr->getSize(), ErrorMsg)) {
427 delete mbr;
428 return false;
431 At += mbr->getSize();
432 if ((intptr_t(At) & 1) == 1)
433 At++;
434 delete mbr;
435 // Can't be any more symtab headers so just advance
436 FirstFile = At;
437 } else {
438 // There's no symbol table in the file. We have to rebuild it from scratch
439 // because the intent of this method is to get the symbol table loaded so
440 // it can be searched efficiently.
441 // Add the member to the members list
442 members.push_back(mbr);
445 firstFileOffset = FirstFile - base;
446 return true;
449 // Open the archive and load just the symbol tables
450 Archive*
451 Archive::OpenAndLoadSymbols(const sys::Path& file, std::string* ErrorMessage) {
452 std::auto_ptr<Archive> result ( new Archive(file) );
453 if (result->mapToMemory(ErrorMessage))
454 return 0;
455 if (!result->loadSymbolTable(ErrorMessage))
456 return 0;
457 return result.release();
460 // Look up one symbol in the symbol table and return a ModuleProvider for the
461 // module that defines that symbol.
462 ModuleProvider*
463 Archive::findModuleDefiningSymbol(const std::string& symbol,
464 std::string* ErrMsg) {
465 SymTabType::iterator SI = symTab.find(symbol);
466 if (SI == symTab.end())
467 return 0;
469 // The symbol table was previously constructed assuming that the members were
470 // written without the symbol table header. Because VBR encoding is used, the
471 // values could not be adjusted to account for the offset of the symbol table
472 // because that could affect the size of the symbol table due to VBR encoding.
473 // We now have to account for this by adjusting the offset by the size of the
474 // symbol table and its header.
475 unsigned fileOffset =
476 SI->second + // offset in symbol-table-less file
477 firstFileOffset; // add offset to first "real" file in archive
479 // See if the module is already loaded
480 ModuleMap::iterator MI = modules.find(fileOffset);
481 if (MI != modules.end())
482 return MI->second.first;
484 // Module hasn't been loaded yet, we need to load it
485 const char* modptr = base + fileOffset;
486 ArchiveMember* mbr = parseMemberHeader(modptr, base + mapfile->size(),ErrMsg);
487 if (!mbr)
488 return 0;
490 // Now, load the bytecode module to get the ModuleProvider
491 std::string FullMemberName = archPath.toString() + "(" +
492 mbr->getPath().toString() + ")";
493 MemoryBuffer *Buffer =MemoryBuffer::getNewMemBuffer(mbr->getSize(),
494 FullMemberName.c_str());
495 memcpy((char*)Buffer->getBufferStart(), mbr->getData(), mbr->getSize());
497 ModuleProvider *mp = getBitcodeModuleProvider(Buffer, ErrMsg);
498 if (!mp)
499 return 0;
501 modules.insert(std::make_pair(fileOffset, std::make_pair(mp, mbr)));
503 return mp;
506 // Look up multiple symbols in the symbol table and return a set of
507 // ModuleProviders that define those symbols.
508 bool
509 Archive::findModulesDefiningSymbols(std::set<std::string>& symbols,
510 std::set<ModuleProvider*>& result,
511 std::string* error) {
512 if (!mapfile || !base) {
513 if (error)
514 *error = "Empty archive invalid for finding modules defining symbols";
515 return false;
518 if (symTab.empty()) {
519 // We don't have a symbol table, so we must build it now but lets also
520 // make sure that we populate the modules table as we do this to ensure
521 // that we don't load them twice when findModuleDefiningSymbol is called
522 // below.
524 // Get a pointer to the first file
525 const char* At = ((const char*)base) + firstFileOffset;
526 const char* End = ((const char*)base) + mapfile->size();
528 while ( At < End) {
529 // Compute the offset to be put in the symbol table
530 unsigned offset = At - base - firstFileOffset;
532 // Parse the file's header
533 ArchiveMember* mbr = parseMemberHeader(At, End, error);
534 if (!mbr)
535 return false;
537 // If it contains symbols
538 if (mbr->isBytecode() || mbr->isCompressedBytecode()) {
539 // Get the symbols
540 std::vector<std::string> symbols;
541 std::string FullMemberName = archPath.toString() + "(" +
542 mbr->getPath().toString() + ")";
543 ModuleProvider* MP =
544 GetBytecodeSymbols((const unsigned char*)At, mbr->getSize(),
545 FullMemberName, symbols, error);
547 if (MP) {
548 // Insert the module's symbols into the symbol table
549 for (std::vector<std::string>::iterator I = symbols.begin(),
550 E=symbols.end(); I != E; ++I ) {
551 symTab.insert(std::make_pair(*I, offset));
553 // Insert the ModuleProvider and the ArchiveMember into the table of
554 // modules.
555 modules.insert(std::make_pair(offset, std::make_pair(MP, mbr)));
556 } else {
557 if (error)
558 *error = "Can't parse bytecode member: " +
559 mbr->getPath().toString() + ": " + *error;
560 delete mbr;
561 return false;
565 // Go to the next file location
566 At += mbr->getSize();
567 if ((intptr_t(At) & 1) == 1)
568 At++;
572 // At this point we have a valid symbol table (one way or another) so we
573 // just use it to quickly find the symbols requested.
575 for (std::set<std::string>::iterator I=symbols.begin(),
576 E=symbols.end(); I != E;) {
577 // See if this symbol exists
578 ModuleProvider* mp = findModuleDefiningSymbol(*I,error);
579 if (mp) {
580 // The symbol exists, insert the ModuleProvider into our result,
581 // duplicates wil be ignored
582 result.insert(mp);
584 // Remove the symbol now that its been resolved, being careful to
585 // post-increment the iterator.
586 symbols.erase(I++);
587 } else {
588 ++I;
591 return true;
594 bool Archive::isBytecodeArchive() {
595 // Make sure the symTab has been loaded. In most cases this should have been
596 // done when the archive was constructed, but still, this is just in case.
597 if (!symTab.size())
598 if (!loadSymbolTable(0))
599 return false;
601 // Now that we know it's been loaded, return true
602 // if it has a size
603 if (symTab.size()) return true;
605 //We still can't be sure it isn't a bytecode archive
606 if (!loadArchive(0))
607 return false;
609 std::vector<Module *> Modules;
610 std::string ErrorMessage;
612 // Scan the archive, trying to load a bytecode member. We only load one to
613 // see if this works.
614 for (iterator I = begin(), E = end(); I != E; ++I) {
615 if (!I->isBytecode() && !I->isCompressedBytecode())
616 continue;
618 std::string FullMemberName =
619 archPath.toString() + "(" + I->getPath().toString() + ")";
621 MemoryBuffer *Buffer =
622 MemoryBuffer::getNewMemBuffer(I->getSize(), FullMemberName.c_str());
623 memcpy((char*)Buffer->getBufferStart(), I->getData(), I->getSize());
624 Module *M = ParseBitcodeFile(Buffer);
625 delete Buffer;
626 if (!M)
627 return false; // Couldn't parse bytecode, not a bytecode archive.
628 delete M;
629 return true;
632 return false;