blob: 71efca2b18633492837e2e758dfcb16def8bfd1a [file] [log] [blame]
Michael J. Spencera51d7d92011-09-27 19:36:55 +00001//===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ArchiveObjectFile class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Object/Archive.h"
15#include "llvm/ADT/APInt.h"
Rafael Espindola5263d0a2013-07-09 03:39:35 +000016#include "llvm/ADT/SmallString.h"
17#include "llvm/ADT/Twine.h"
Michael J. Spencerc8a55a62011-11-02 19:33:12 +000018#include "llvm/Support/Endian.h"
Michael J. Spencera51d7d92011-09-27 19:36:55 +000019#include "llvm/Support/MemoryBuffer.h"
20
21using namespace llvm;
22using namespace object;
23
Craig Topper4172a8a2013-07-16 01:17:10 +000024static const char *const Magic = "!<arch>\n";
Michael J. Spencera51d7d92011-09-27 19:36:55 +000025
David Blaikie2d24e2a2011-12-20 02:50:00 +000026void Archive::anchor() { }
27
Rafael Espindola5263d0a2013-07-09 03:39:35 +000028StringRef ArchiveMemberHeader::getName() const {
29 char EndCond;
30 if (Name[0] == '/' || Name[0] == '#')
31 EndCond = ' ';
32 else
33 EndCond = '/';
34 llvm::StringRef::size_type end =
35 llvm::StringRef(Name, sizeof(Name)).find(EndCond);
36 if (end == llvm::StringRef::npos)
37 end = sizeof(Name);
38 assert(end <= sizeof(Name) && end > 0);
39 // Don't include the EndCond if there is one.
40 return llvm::StringRef(Name, end);
41}
42
Rafael Espindola20125932013-07-09 12:45:11 +000043uint32_t ArchiveMemberHeader::getSize() const {
44 uint32_t Ret;
45 if (llvm::StringRef(Size, sizeof(Size)).rtrim(" ").getAsInteger(10, Ret))
46 llvm_unreachable("Size is not a decimal number.");
47 return Ret;
Rafael Espindola5263d0a2013-07-09 03:39:35 +000048}
49
Rafael Espindola9941bdd2013-07-09 12:49:24 +000050sys::fs::perms ArchiveMemberHeader::getAccessMode() const {
51 unsigned Ret;
52 if (StringRef(AccessMode, sizeof(AccessMode)).rtrim(" ").getAsInteger(8, Ret))
53 llvm_unreachable("Access mode is not an octal number.");
54 return static_cast<sys::fs::perms>(Ret);
55}
56
57sys::TimeValue ArchiveMemberHeader::getLastModified() const {
58 unsigned Seconds;
59 if (StringRef(LastModified, sizeof(LastModified)).rtrim(" ")
60 .getAsInteger(10, Seconds))
61 llvm_unreachable("Last modified time not a decimal number.");
62
63 sys::TimeValue Ret;
64 Ret.fromEpochTime(Seconds);
65 return Ret;
66}
67
68unsigned ArchiveMemberHeader::getUID() const {
69 unsigned Ret;
70 if (StringRef(UID, sizeof(UID)).rtrim(" ").getAsInteger(10, Ret))
71 llvm_unreachable("UID time not a decimal number.");
72 return Ret;
73}
74
75unsigned ArchiveMemberHeader::getGID() const {
76 unsigned Ret;
77 if (StringRef(GID, sizeof(GID)).rtrim(" ").getAsInteger(10, Ret))
78 llvm_unreachable("GID time not a decimal number.");
79 return Ret;
80}
81
Rafael Espindolabe6b9102013-07-09 05:26:25 +000082Archive::Child::Child(const Archive *Parent, const char *Start)
83 : Parent(Parent) {
84 if (!Start)
Rafael Espindola5263d0a2013-07-09 03:39:35 +000085 return;
Rafael Espindolabe6b9102013-07-09 05:26:25 +000086
Rafael Espindola34ac52d2013-07-12 20:21:39 +000087 const ArchiveMemberHeader *Header =
88 reinterpret_cast<const ArchiveMemberHeader *>(Start);
Rafael Espindolabe6b9102013-07-09 05:26:25 +000089 Data = StringRef(Start, sizeof(ArchiveMemberHeader) + Header->getSize());
90
Rafael Espindola5263d0a2013-07-09 03:39:35 +000091 // Setup StartOfFile and PaddingBytes.
92 StartOfFile = sizeof(ArchiveMemberHeader);
93 // Don't include attached name.
Rafael Espindolabe6b9102013-07-09 05:26:25 +000094 StringRef Name = Header->getName();
Rafael Espindola5263d0a2013-07-09 03:39:35 +000095 if (Name.startswith("#1/")) {
96 uint64_t NameSize;
97 if (Name.substr(3).rtrim(" ").getAsInteger(10, NameSize))
98 llvm_unreachable("Long name length is not an integer");
99 StartOfFile += NameSize;
100 }
101}
102
103Archive::Child Archive::Child::getNext() const {
104 size_t SpaceToSkip = Data.size();
105 // If it's odd, add 1 to make it even.
106 if (SpaceToSkip & 1)
107 ++SpaceToSkip;
108
109 const char *NextLoc = Data.data() + SpaceToSkip;
110
111 // Check to see if this is past the end of the archive.
112 if (NextLoc >= Parent->Data->getBufferEnd())
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000113 return Child(Parent, NULL);
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000114
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000115 return Child(Parent, NextLoc);
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000116}
117
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000118error_code Archive::Child::getName(StringRef &Result) const {
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000119 StringRef name = getRawName();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000120 // Check if it's a special name.
121 if (name[0] == '/') {
122 if (name.size() == 1) { // Linker member.
123 Result = name;
124 return object_error::success;
125 }
126 if (name.size() == 2 && name[1] == '/') { // String table.
127 Result = name;
128 return object_error::success;
129 }
130 // It's a long name.
131 // Get the offset.
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000132 std::size_t offset;
Michael J. Spencer7932c412013-01-10 01:05:34 +0000133 if (name.substr(1).rtrim(" ").getAsInteger(10, offset))
134 llvm_unreachable("Long name offset is not an integer");
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000135 const char *addr = Parent->StringTable->Data.begin()
136 + sizeof(ArchiveMemberHeader)
Michael J. Spencere92800d2013-01-09 22:58:43 +0000137 + offset;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000138 // Verify it.
139 if (Parent->StringTable == Parent->end_children()
140 || addr < (Parent->StringTable->Data.begin()
141 + sizeof(ArchiveMemberHeader))
142 || addr > (Parent->StringTable->Data.begin()
143 + sizeof(ArchiveMemberHeader)
144 + Parent->StringTable->getSize()))
145 return object_error::parse_failed;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000146
147 // GNU long file names end with a /.
148 if (Parent->kind() == K_GNU) {
149 StringRef::size_type End = StringRef(addr).find('/');
150 Result = StringRef(addr, End);
151 } else {
152 Result = addr;
153 }
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000154 return object_error::success;
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000155 } else if (name.startswith("#1/")) {
Michael J. Spencere92800d2013-01-09 22:58:43 +0000156 uint64_t name_size;
Michael J. Spencer7932c412013-01-10 01:05:34 +0000157 if (name.substr(3).rtrim(" ").getAsInteger(10, name_size))
158 llvm_unreachable("Long name length is not an ingeter");
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000159 Result = Data.substr(sizeof(ArchiveMemberHeader), name_size)
160 .rtrim(StringRef("\0", 1));
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000161 return object_error::success;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000162 }
163 // It's a simple name.
164 if (name[name.size() - 1] == '/')
165 Result = name.substr(0, name.size() - 1);
166 else
167 Result = name;
168 return object_error::success;
169}
170
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000171error_code Archive::Child::getMemoryBuffer(OwningPtr<MemoryBuffer> &Result,
172 bool FullPath) const {
173 StringRef Name;
174 if (error_code ec = getName(Name))
175 return ec;
176 SmallString<128> Path;
177 Result.reset(MemoryBuffer::getMemBuffer(
178 getBuffer(), FullPath ? (Twine(Parent->getFileName()) + "(" + Name + ")")
179 .toStringRef(Path)
180 : Name,
181 false));
182 return error_code::success();
183}
184
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000185error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
186 OwningPtr<Binary> ret;
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000187 OwningPtr<MemoryBuffer> Buff;
188 if (error_code ec = getMemoryBuffer(Buff))
189 return ec;
190 if (error_code ec = createBinary(Buff.take(), ret))
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000191 return ec;
192 Result.swap(ret);
193 return object_error::success;
194}
195
196Archive::Archive(MemoryBuffer *source, error_code &ec)
Rafael Espindola51597182013-07-10 20:14:22 +0000197 : Binary(Binary::ID_Archive, source), SymbolTable(end_children()) {
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000198 // Check for sufficient magic.
Rafael Espindola5e102c62013-07-12 13:32:28 +0000199 assert(source);
200 if (source->getBufferSize() < 8 ||
201 StringRef(source->getBufferStart(), 8) != Magic) {
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000202 ec = object_error::invalid_file_type;
203 return;
204 }
205
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000206 // Get the special members.
207 child_iterator i = begin_children(false);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000208 child_iterator e = end_children();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000209
Rafael Espindola09a7f602013-07-03 15:57:14 +0000210 if (i == e) {
Rafael Espindola5e102c62013-07-12 13:32:28 +0000211 ec = object_error::success;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000212 return;
213 }
214
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000215 StringRef Name = i->getRawName();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000216
Shankar Easwaran206252c2012-11-13 18:38:42 +0000217 // Below is the pattern that is used to figure out the archive format
218 // GNU archive format
Rafael Espindola09a7f602013-07-03 15:57:14 +0000219 // First member : / (may exist, if it exists, points to the symbol table )
Shankar Easwaran206252c2012-11-13 18:38:42 +0000220 // Second member : // (may exist, if it exists, points to the string table)
221 // Note : The string table is used if the filename exceeds 15 characters
222 // BSD archive format
Rafael Espindolaa7397592013-07-10 22:07:59 +0000223 // First member : __.SYMDEF or "__.SYMDEF SORTED" (the symbol table)
224 // There is no string table, if the filename exceeds 15 characters or has a
225 // embedded space, the filename has #1/<size>, The size represents the size
Shankar Easwaran206252c2012-11-13 18:38:42 +0000226 // of the filename that needs to be read after the archive header
227 // COFF archive format
228 // First member : /
229 // Second member : / (provides a directory of symbols)
Rui Ueyama891c0cd2013-06-03 00:27:03 +0000230 // Third member : // (may exist, if it exists, contains the string table)
231 // Note: Microsoft PE/COFF Spec 8.3 says that the third member is present
232 // even if the string table is empty. However, lib.exe does not in fact
233 // seem to create the third member if there's no member whose filename
234 // exceeds 15 characters. So the third member is optional.
Rafael Espindola09a7f602013-07-03 15:57:14 +0000235
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000236 if (Name == "__.SYMDEF") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000237 Format = K_BSD;
238 SymbolTable = i;
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000239 ++i;
240 FirstRegular = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000241 ec = object_error::success;
242 return;
243 }
244
Rafael Espindolaa7397592013-07-10 22:07:59 +0000245 if (Name.startswith("#1/")) {
246 Format = K_BSD;
247 // We know this is BSD, so getName will work since there is no string table.
248 ec = i->getName(Name);
249 if (ec)
250 return;
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000251 if (Name == "__.SYMDEF SORTED") {
Rafael Espindolaa7397592013-07-10 22:07:59 +0000252 SymbolTable = i;
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000253 ++i;
254 }
255 FirstRegular = i;
Rafael Espindolaa7397592013-07-10 22:07:59 +0000256 return;
257 }
258
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000259 if (Name == "/") {
Shankar Easwaran206252c2012-11-13 18:38:42 +0000260 SymbolTable = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000261
262 ++i;
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000263 if (i == e) {
264 ec = object_error::parse_failed;
265 return;
266 }
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000267 Name = i->getRawName();
Rafael Espindola09a7f602013-07-03 15:57:14 +0000268 }
269
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000270 if (Name == "//") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000271 Format = K_GNU;
272 StringTable = i;
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000273 ++i;
274 FirstRegular = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000275 ec = object_error::success;
276 return;
277 }
278
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000279 if (Name[0] != '/') {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000280 Format = K_GNU;
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000281 FirstRegular = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000282 ec = object_error::success;
283 return;
284 }
285
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000286 if (Name != "/") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000287 ec = object_error::parse_failed;
288 return;
289 }
290
291 Format = K_COFF;
292 SymbolTable = i;
293
294 ++i;
295 if (i == e) {
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000296 FirstRegular = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000297 ec = object_error::success;
298 return;
299 }
300
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000301 Name = i->getRawName();
Rafael Espindola09a7f602013-07-03 15:57:14 +0000302
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000303 if (Name == "//") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000304 StringTable = i;
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000305 ++i;
306 }
Rafael Espindola09a7f602013-07-03 15:57:14 +0000307
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000308 FirstRegular = i;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000309 ec = object_error::success;
310}
311
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000312Archive::child_iterator Archive::begin_children(bool SkipInternal) const {
Rafael Espindola5e102c62013-07-12 13:32:28 +0000313 if (Data->getBufferSize() == 8) // empty archive.
314 return end_children();
Rafael Espindola34ac52d2013-07-12 20:21:39 +0000315
316 if (SkipInternal)
317 return FirstRegular;
318
Benjamin Kramere1a44272012-02-22 13:42:11 +0000319 const char *Loc = Data->getBufferStart() + strlen(Magic);
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000320 Child c(this, Loc);
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000321 return c;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000322}
323
Michael J. Spencer58618932011-10-08 00:17:45 +0000324Archive::child_iterator Archive::end_children() const {
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000325 return Child(this, NULL);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000326}
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000327
328error_code Archive::Symbol::getName(StringRef &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000329 Result = StringRef(Parent->SymbolTable->getBuffer().begin() + StringIndex);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000330 return object_error::success;
331}
332
333error_code Archive::Symbol::getMember(child_iterator &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000334 const char *Buf = Parent->SymbolTable->getBuffer().begin();
Michael J. Spencer768a7072012-11-14 00:04:13 +0000335 const char *Offsets = Buf + 4;
336 uint32_t Offset = 0;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000337 if (Parent->kind() == K_GNU) {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000338 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
339 + SymbolIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000340 } else if (Parent->kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000341 llvm_unreachable("BSD format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000342 } else {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000343 uint32_t MemberCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
344
345 // Skip offsets.
346 Buf += sizeof(support::ulittle32_t)
347 + (MemberCount * sizeof(support::ulittle32_t));
348
349 uint32_t SymbolCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
350
351 if (SymbolIndex >= SymbolCount)
352 return object_error::parse_failed;
353
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000354 // Skip SymbolCount to get to the indices table.
355 const char *Indices = Buf + sizeof(support::ulittle32_t);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000356
357 // Get the index of the offset in the file member offset table for this
358 // symbol.
359 uint16_t OffsetIndex =
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000360 *(reinterpret_cast<const support::ulittle16_t*>(Indices)
Shankar Easwaran206252c2012-11-13 18:38:42 +0000361 + SymbolIndex);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000362 // Subtract 1 since OffsetIndex is 1 based.
363 --OffsetIndex;
364
365 if (OffsetIndex >= MemberCount)
366 return object_error::parse_failed;
367
368 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
369 + OffsetIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000370 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000371
Michael J. Spencer768a7072012-11-14 00:04:13 +0000372 const char *Loc = Parent->getData().begin() + Offset;
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000373 Result = Child(Parent, Loc);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000374
375 return object_error::success;
376}
377
378Archive::Symbol Archive::Symbol::getNext() const {
379 Symbol t(*this);
Benjamin Kramerefd2d5e2011-11-04 13:52:17 +0000380 // Go to one past next null.
381 t.StringIndex =
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000382 Parent->SymbolTable->getBuffer().find('\0', t.StringIndex) + 1;
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000383 ++t.SymbolIndex;
384 return t;
385}
386
387Archive::symbol_iterator Archive::begin_symbols() const {
Rafael Espindolacf48cf22013-07-29 12:40:31 +0000388 if (!hasSymbolTable())
Rafael Espindola51597182013-07-10 20:14:22 +0000389 return symbol_iterator(Symbol(this, 0, 0));
390
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000391 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000392 if (kind() == K_GNU) {
393 uint32_t symbol_count = 0;
394 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
395 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
396 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000397 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000398 } else {
399 uint32_t member_count = 0;
400 uint32_t symbol_count = 0;
401 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
402 buf += 4 + (member_count * 4); // Skip offsets.
403 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
404 buf += 4 + (symbol_count * 2); // Skip indices.
405 }
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000406 uint32_t string_start_offset = buf - SymbolTable->getBuffer().begin();
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000407 return symbol_iterator(Symbol(this, 0, string_start_offset));
408}
409
410Archive::symbol_iterator Archive::end_symbols() const {
Rafael Espindolacf48cf22013-07-29 12:40:31 +0000411 if (!hasSymbolTable())
Rafael Espindola51597182013-07-10 20:14:22 +0000412 return symbol_iterator(Symbol(this, 0, 0));
413
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000414 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000415 uint32_t symbol_count = 0;
416 if (kind() == K_GNU) {
417 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000418 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000419 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000420 } else {
421 uint32_t member_count = 0;
422 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
423 buf += 4 + (member_count * 4); // Skip offsets.
424 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
425 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000426 return symbol_iterator(
427 Symbol(this, symbol_count, 0));
428}
Shankar Easwaran206252c2012-11-13 18:38:42 +0000429
430Archive::child_iterator Archive::findSym(StringRef name) const {
431 Archive::symbol_iterator bs = begin_symbols();
432 Archive::symbol_iterator es = end_symbols();
433 Archive::child_iterator result;
434
435 StringRef symname;
436 for (; bs != es; ++bs) {
437 if (bs->getName(symname))
438 return end_children();
439 if (symname == name) {
440 if (bs->getMember(result))
441 return end_children();
442 return result;
443 }
444 }
445 return end_children();
446}
Rafael Espindolacf48cf22013-07-29 12:40:31 +0000447
448bool Archive::hasSymbolTable() const {
449 return SymbolTable != end_children();
450}