blob: 60c6d21f48237484e2b1493f1d04909844c2ec45 [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
Benjamin Kramere1a44272012-02-22 13:42:11 +000024static const char *Magic = "!<arch>\n";
Michael J. Spencera51d7d92011-09-27 19:36:55 +000025
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000026static bool isInternalMember(const ArchiveMemberHeader &amh) {
Craig Toppere3298102012-05-24 06:35:32 +000027 static const char *const internals[] = {
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000028 "/",
Rafael Espindola250bfb12013-06-14 23:25:53 +000029 "//"
Craig Toppere3298102012-05-24 06:35:32 +000030 };
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000031
32 StringRef name = amh.getName();
33 for (std::size_t i = 0; i < sizeof(internals) / sizeof(*internals); ++i) {
34 if (name == internals[i])
35 return true;
36 }
37 return false;
38}
39
David Blaikie2d24e2a2011-12-20 02:50:00 +000040void Archive::anchor() { }
41
Rafael Espindola5263d0a2013-07-09 03:39:35 +000042StringRef ArchiveMemberHeader::getName() const {
43 char EndCond;
44 if (Name[0] == '/' || Name[0] == '#')
45 EndCond = ' ';
46 else
47 EndCond = '/';
48 llvm::StringRef::size_type end =
49 llvm::StringRef(Name, sizeof(Name)).find(EndCond);
50 if (end == llvm::StringRef::npos)
51 end = sizeof(Name);
52 assert(end <= sizeof(Name) && end > 0);
53 // Don't include the EndCond if there is one.
54 return llvm::StringRef(Name, end);
55}
56
Rafael Espindola20125932013-07-09 12:45:11 +000057uint32_t ArchiveMemberHeader::getSize() const {
58 uint32_t Ret;
59 if (llvm::StringRef(Size, sizeof(Size)).rtrim(" ").getAsInteger(10, Ret))
60 llvm_unreachable("Size is not a decimal number.");
61 return Ret;
Rafael Espindola5263d0a2013-07-09 03:39:35 +000062}
63
Rafael Espindola9941bdd2013-07-09 12:49:24 +000064sys::fs::perms ArchiveMemberHeader::getAccessMode() const {
65 unsigned Ret;
66 if (StringRef(AccessMode, sizeof(AccessMode)).rtrim(" ").getAsInteger(8, Ret))
67 llvm_unreachable("Access mode is not an octal number.");
68 return static_cast<sys::fs::perms>(Ret);
69}
70
71sys::TimeValue ArchiveMemberHeader::getLastModified() const {
72 unsigned Seconds;
73 if (StringRef(LastModified, sizeof(LastModified)).rtrim(" ")
74 .getAsInteger(10, Seconds))
75 llvm_unreachable("Last modified time not a decimal number.");
76
77 sys::TimeValue Ret;
78 Ret.fromEpochTime(Seconds);
79 return Ret;
80}
81
82unsigned ArchiveMemberHeader::getUID() const {
83 unsigned Ret;
84 if (StringRef(UID, sizeof(UID)).rtrim(" ").getAsInteger(10, Ret))
85 llvm_unreachable("UID time not a decimal number.");
86 return Ret;
87}
88
89unsigned ArchiveMemberHeader::getGID() const {
90 unsigned Ret;
91 if (StringRef(GID, sizeof(GID)).rtrim(" ").getAsInteger(10, Ret))
92 llvm_unreachable("GID time not a decimal number.");
93 return Ret;
94}
95
Rafael Espindolac5f87572013-07-09 12:22:05 +000096static const ArchiveMemberHeader *toHeader(const char *base) {
97 return reinterpret_cast<const ArchiveMemberHeader *>(base);
98}
99
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000100Archive::Child::Child(const Archive *Parent, const char *Start)
101 : Parent(Parent) {
102 if (!Start)
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000103 return;
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000104
Rafael Espindolac5f87572013-07-09 12:22:05 +0000105 const ArchiveMemberHeader *Header = toHeader(Start);
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000106 Data = StringRef(Start, sizeof(ArchiveMemberHeader) + Header->getSize());
107
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000108 // Setup StartOfFile and PaddingBytes.
109 StartOfFile = sizeof(ArchiveMemberHeader);
110 // Don't include attached name.
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000111 StringRef Name = Header->getName();
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000112 if (Name.startswith("#1/")) {
113 uint64_t NameSize;
114 if (Name.substr(3).rtrim(" ").getAsInteger(10, NameSize))
115 llvm_unreachable("Long name length is not an integer");
116 StartOfFile += NameSize;
117 }
118}
119
120Archive::Child Archive::Child::getNext() const {
121 size_t SpaceToSkip = Data.size();
122 // If it's odd, add 1 to make it even.
123 if (SpaceToSkip & 1)
124 ++SpaceToSkip;
125
126 const char *NextLoc = Data.data() + SpaceToSkip;
127
128 // Check to see if this is past the end of the archive.
129 if (NextLoc >= Parent->Data->getBufferEnd())
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000130 return Child(Parent, NULL);
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000131
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000132 return Child(Parent, NextLoc);
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000133}
134
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000135error_code Archive::Child::getName(StringRef &Result) const {
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000136 StringRef name = getRawName();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000137 // Check if it's a special name.
138 if (name[0] == '/') {
139 if (name.size() == 1) { // Linker member.
140 Result = name;
141 return object_error::success;
142 }
143 if (name.size() == 2 && name[1] == '/') { // String table.
144 Result = name;
145 return object_error::success;
146 }
147 // It's a long name.
148 // Get the offset.
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000149 std::size_t offset;
Michael J. Spencer7932c412013-01-10 01:05:34 +0000150 if (name.substr(1).rtrim(" ").getAsInteger(10, offset))
151 llvm_unreachable("Long name offset is not an integer");
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000152 const char *addr = Parent->StringTable->Data.begin()
153 + sizeof(ArchiveMemberHeader)
Michael J. Spencere92800d2013-01-09 22:58:43 +0000154 + offset;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000155 // Verify it.
156 if (Parent->StringTable == Parent->end_children()
157 || addr < (Parent->StringTable->Data.begin()
158 + sizeof(ArchiveMemberHeader))
159 || addr > (Parent->StringTable->Data.begin()
160 + sizeof(ArchiveMemberHeader)
161 + Parent->StringTable->getSize()))
162 return object_error::parse_failed;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000163
164 // GNU long file names end with a /.
165 if (Parent->kind() == K_GNU) {
166 StringRef::size_type End = StringRef(addr).find('/');
167 Result = StringRef(addr, End);
168 } else {
169 Result = addr;
170 }
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000171 return object_error::success;
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000172 } else if (name.startswith("#1/")) {
Michael J. Spencere92800d2013-01-09 22:58:43 +0000173 uint64_t name_size;
Michael J. Spencer7932c412013-01-10 01:05:34 +0000174 if (name.substr(3).rtrim(" ").getAsInteger(10, name_size))
175 llvm_unreachable("Long name length is not an ingeter");
176 Result = Data.substr(sizeof(ArchiveMemberHeader), name_size);
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000177 return object_error::success;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000178 }
179 // It's a simple name.
180 if (name[name.size() - 1] == '/')
181 Result = name.substr(0, name.size() - 1);
182 else
183 Result = name;
184 return object_error::success;
185}
186
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000187error_code Archive::Child::getMemoryBuffer(OwningPtr<MemoryBuffer> &Result,
188 bool FullPath) const {
189 StringRef Name;
190 if (error_code ec = getName(Name))
191 return ec;
192 SmallString<128> Path;
193 Result.reset(MemoryBuffer::getMemBuffer(
194 getBuffer(), FullPath ? (Twine(Parent->getFileName()) + "(" + Name + ")")
195 .toStringRef(Path)
196 : Name,
197 false));
198 return error_code::success();
199}
200
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000201error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
202 OwningPtr<Binary> ret;
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000203 OwningPtr<MemoryBuffer> Buff;
204 if (error_code ec = getMemoryBuffer(Buff))
205 return ec;
206 if (error_code ec = createBinary(Buff.take(), ret))
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000207 return ec;
208 Result.swap(ret);
209 return object_error::success;
210}
211
212Archive::Archive(MemoryBuffer *source, error_code &ec)
Rafael Espindola51597182013-07-10 20:14:22 +0000213 : Binary(Binary::ID_Archive, source), SymbolTable(end_children()) {
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000214 // Check for sufficient magic.
215 if (!source || source->getBufferSize()
Rafael Espindola6d88f9b2013-07-04 19:40:23 +0000216 < (8 + sizeof(ArchiveMemberHeader)) // Smallest archive.
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000217 || StringRef(source->getBufferStart(), 8) != Magic) {
218 ec = object_error::invalid_file_type;
219 return;
220 }
221
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000222 // Get the special members.
223 child_iterator i = begin_children(false);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000224 child_iterator e = end_children();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000225
Rafael Espindola09a7f602013-07-03 15:57:14 +0000226 if (i == e) {
227 ec = object_error::parse_failed;
228 return;
229 }
230
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000231 StringRef Name = i->getRawName();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000232
Shankar Easwaran206252c2012-11-13 18:38:42 +0000233 // Below is the pattern that is used to figure out the archive format
234 // GNU archive format
Rafael Espindola09a7f602013-07-03 15:57:14 +0000235 // First member : / (may exist, if it exists, points to the symbol table )
Shankar Easwaran206252c2012-11-13 18:38:42 +0000236 // Second member : // (may exist, if it exists, points to the string table)
237 // Note : The string table is used if the filename exceeds 15 characters
238 // BSD archive format
Rafael Espindolaa7397592013-07-10 22:07:59 +0000239 // First member : __.SYMDEF or "__.SYMDEF SORTED" (the symbol table)
240 // There is no string table, if the filename exceeds 15 characters or has a
241 // embedded space, the filename has #1/<size>, The size represents the size
Shankar Easwaran206252c2012-11-13 18:38:42 +0000242 // of the filename that needs to be read after the archive header
243 // COFF archive format
244 // First member : /
245 // Second member : / (provides a directory of symbols)
Rui Ueyama891c0cd2013-06-03 00:27:03 +0000246 // Third member : // (may exist, if it exists, contains the string table)
247 // Note: Microsoft PE/COFF Spec 8.3 says that the third member is present
248 // even if the string table is empty. However, lib.exe does not in fact
249 // seem to create the third member if there's no member whose filename
250 // exceeds 15 characters. So the third member is optional.
Rafael Espindola09a7f602013-07-03 15:57:14 +0000251
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000252 if (Name == "__.SYMDEF") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000253 Format = K_BSD;
254 SymbolTable = i;
255 ec = object_error::success;
256 return;
257 }
258
Rafael Espindolaa7397592013-07-10 22:07:59 +0000259 if (Name.startswith("#1/")) {
260 Format = K_BSD;
261 // We know this is BSD, so getName will work since there is no string table.
262 ec = i->getName(Name);
263 if (ec)
264 return;
265 if (Name == StringRef("__.SYMDEF SORTED\0\0\0", 20))
266 SymbolTable = i;
267 return;
268 }
269
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000270 if (Name == "/") {
Shankar Easwaran206252c2012-11-13 18:38:42 +0000271 SymbolTable = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000272
273 ++i;
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000274 if (i == e) {
275 ec = object_error::parse_failed;
276 return;
277 }
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000278 Name = i->getRawName();
Rafael Espindola09a7f602013-07-03 15:57:14 +0000279 }
280
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000281 if (Name == "//") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000282 Format = K_GNU;
283 StringTable = i;
284 ec = object_error::success;
285 return;
286 }
287
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000288 if (Name[0] != '/') {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000289 Format = K_GNU;
290 ec = object_error::success;
291 return;
292 }
293
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000294 if (Name != "/") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000295 ec = object_error::parse_failed;
296 return;
297 }
298
299 Format = K_COFF;
300 SymbolTable = i;
301
302 ++i;
303 if (i == e) {
304 ec = object_error::success;
305 return;
306 }
307
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000308 Name = i->getRawName();
Rafael Espindola09a7f602013-07-03 15:57:14 +0000309
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000310 if (Name == "//")
Rafael Espindola09a7f602013-07-03 15:57:14 +0000311 StringTable = i;
312
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000313 ec = object_error::success;
314}
315
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000316Archive::child_iterator Archive::begin_children(bool skip_internal) const {
Benjamin Kramere1a44272012-02-22 13:42:11 +0000317 const char *Loc = Data->getBufferStart() + strlen(Magic);
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000318 Child c(this, Loc);
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000319 // Skip internals at the beginning of an archive.
Rafael Espindolac5f87572013-07-09 12:22:05 +0000320 if (skip_internal && isInternalMember(*toHeader(Loc)))
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000321 return c.getNext();
322 return c;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000323}
324
Michael J. Spencer58618932011-10-08 00:17:45 +0000325Archive::child_iterator Archive::end_children() const {
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000326 return Child(this, NULL);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000327}
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000328
329error_code Archive::Symbol::getName(StringRef &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000330 Result = StringRef(Parent->SymbolTable->getBuffer().begin() + StringIndex);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000331 return object_error::success;
332}
333
334error_code Archive::Symbol::getMember(child_iterator &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000335 const char *Buf = Parent->SymbolTable->getBuffer().begin();
Michael J. Spencer768a7072012-11-14 00:04:13 +0000336 const char *Offsets = Buf + 4;
337 uint32_t Offset = 0;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000338 if (Parent->kind() == K_GNU) {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000339 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
340 + SymbolIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000341 } else if (Parent->kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000342 llvm_unreachable("BSD format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000343 } else {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000344 uint32_t MemberCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
345
346 // Skip offsets.
347 Buf += sizeof(support::ulittle32_t)
348 + (MemberCount * sizeof(support::ulittle32_t));
349
350 uint32_t SymbolCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
351
352 if (SymbolIndex >= SymbolCount)
353 return object_error::parse_failed;
354
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000355 // Skip SymbolCount to get to the indices table.
356 const char *Indices = Buf + sizeof(support::ulittle32_t);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000357
358 // Get the index of the offset in the file member offset table for this
359 // symbol.
360 uint16_t OffsetIndex =
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000361 *(reinterpret_cast<const support::ulittle16_t*>(Indices)
Shankar Easwaran206252c2012-11-13 18:38:42 +0000362 + SymbolIndex);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000363 // Subtract 1 since OffsetIndex is 1 based.
364 --OffsetIndex;
365
366 if (OffsetIndex >= MemberCount)
367 return object_error::parse_failed;
368
369 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
370 + OffsetIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000371 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000372
Michael J. Spencer768a7072012-11-14 00:04:13 +0000373 const char *Loc = Parent->getData().begin() + Offset;
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000374 Result = Child(Parent, Loc);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000375
376 return object_error::success;
377}
378
379Archive::Symbol Archive::Symbol::getNext() const {
380 Symbol t(*this);
Benjamin Kramerefd2d5e2011-11-04 13:52:17 +0000381 // Go to one past next null.
382 t.StringIndex =
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000383 Parent->SymbolTable->getBuffer().find('\0', t.StringIndex) + 1;
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000384 ++t.SymbolIndex;
385 return t;
386}
387
388Archive::symbol_iterator Archive::begin_symbols() const {
Rafael Espindola51597182013-07-10 20:14:22 +0000389 if (SymbolTable == end_children())
390 return symbol_iterator(Symbol(this, 0, 0));
391
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000392 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000393 if (kind() == K_GNU) {
394 uint32_t symbol_count = 0;
395 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
396 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
397 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000398 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000399 } else {
400 uint32_t member_count = 0;
401 uint32_t symbol_count = 0;
402 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
403 buf += 4 + (member_count * 4); // Skip offsets.
404 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
405 buf += 4 + (symbol_count * 2); // Skip indices.
406 }
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000407 uint32_t string_start_offset = buf - SymbolTable->getBuffer().begin();
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000408 return symbol_iterator(Symbol(this, 0, string_start_offset));
409}
410
411Archive::symbol_iterator Archive::end_symbols() const {
Rafael Espindola51597182013-07-10 20:14:22 +0000412 if (SymbolTable == end_children())
413 return symbol_iterator(Symbol(this, 0, 0));
414
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000415 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000416 uint32_t symbol_count = 0;
417 if (kind() == K_GNU) {
418 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000419 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000420 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000421 } else {
422 uint32_t member_count = 0;
423 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
424 buf += 4 + (member_count * 4); // Skip offsets.
425 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
426 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000427 return symbol_iterator(
428 Symbol(this, symbol_count, 0));
429}
Shankar Easwaran206252c2012-11-13 18:38:42 +0000430
431Archive::child_iterator Archive::findSym(StringRef name) const {
432 Archive::symbol_iterator bs = begin_symbols();
433 Archive::symbol_iterator es = end_symbols();
434 Archive::child_iterator result;
435
436 StringRef symname;
437 for (; bs != es; ++bs) {
438 if (bs->getName(symname))
439 return end_children();
440 if (symname == name) {
441 if (bs->getMember(result))
442 return end_children();
443 return result;
444 }
445 }
446 return end_children();
447}