blob: a8a35a5cfde3928b47f1fe0cfdbe8cef1a761b0d [file] [log] [blame]
Rui Ueyama411c63602015-05-28 19:09:30 +00001//===- InputFiles.cpp -----------------------------------------------------===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "Chunks.h"
Rui Ueyama8fd9fb92015-06-01 02:58:15 +000011#include "Error.h"
Rui Ueyama411c63602015-05-28 19:09:30 +000012#include "InputFiles.h"
Rui Ueyama67fcd1a02015-08-05 19:51:28 +000013#include "Symbols.h"
Rui Ueyama411c63602015-05-28 19:09:30 +000014#include "llvm/ADT/STLExtras.h"
Peter Collingbourne60c16162015-06-01 20:10:10 +000015#include "llvm/LTO/LTOModule.h"
Rui Ueyama411c63602015-05-28 19:09:30 +000016#include "llvm/Object/COFF.h"
17#include "llvm/Support/COFF.h"
18#include "llvm/Support/Debug.h"
19#include "llvm/Support/Endian.h"
20#include "llvm/Support/raw_ostream.h"
21
Rui Ueyama1c79ce92015-07-08 20:22:50 +000022using namespace llvm::COFF;
Rui Ueyama411c63602015-05-28 19:09:30 +000023using namespace llvm::object;
24using namespace llvm::support::endian;
Rui Ueyama411c63602015-05-28 19:09:30 +000025using llvm::RoundUpToAlignment;
Rui Ueyamaea533cd2015-07-09 19:54:13 +000026using llvm::Triple;
Rui Ueyamacd3f99b2015-07-24 23:51:14 +000027using llvm::support::ulittle32_t;
Rui Ueyama411c63602015-05-28 19:09:30 +000028using llvm::sys::fs::file_magic;
Rui Ueyamaea533cd2015-07-09 19:54:13 +000029using llvm::sys::fs::identify_magic;
Rui Ueyama411c63602015-05-28 19:09:30 +000030
31namespace lld {
32namespace coff {
33
Rui Ueyama65813ed2015-07-02 20:33:48 +000034int InputFile::NextIndex = 0;
35
Rui Ueyama411c63602015-05-28 19:09:30 +000036// Returns the last element of a path, which is supposed to be a filename.
37static StringRef getBasename(StringRef Path) {
Rui Ueyamaea63a282015-06-18 20:16:26 +000038 size_t Pos = Path.find_last_of("\\/");
Rui Ueyama411c63602015-05-28 19:09:30 +000039 if (Pos == StringRef::npos)
40 return Path;
41 return Path.substr(Pos + 1);
42}
43
44// Returns a string in the format of "foo.obj" or "foo.obj(bar.lib)".
45std::string InputFile::getShortName() {
46 if (ParentName == "")
47 return getName().lower();
48 std::string Res = (getBasename(ParentName) + "(" +
49 getBasename(getName()) + ")").str();
50 return StringRef(Res).lower();
51}
52
Rafael Espindolab835ae82015-08-06 14:58:50 +000053void ArchiveFile::parse() {
Rui Ueyamad7c2f582015-05-31 21:04:56 +000054 // Parse a MemoryBufferRef as an archive file.
55 auto ArchiveOrErr = Archive::create(MB);
Rafael Espindolab835ae82015-08-06 14:58:50 +000056 error(ArchiveOrErr, "Failed to parse static library");
Rui Ueyama04ec69aa2015-08-18 09:18:15 +000057 File = std::move(*ArchiveOrErr);
Rui Ueyama411c63602015-05-28 19:09:30 +000058
59 // Allocate a buffer for Lazy objects.
Rui Ueyama605e1f62015-06-26 23:51:45 +000060 size_t NumSyms = File->getNumberOfSymbols();
Rui Ueyama8d3010a2015-06-30 19:35:21 +000061 LazySymbols.reserve(NumSyms);
Rui Ueyama411c63602015-05-28 19:09:30 +000062
63 // Read the symbol table to construct Lazy objects.
Rui Ueyama95b781d2015-08-18 09:06:41 +000064 for (const Archive::Symbol &Sym : File->symbols())
Rafael Espindolafb497d72015-09-02 16:07:11 +000065 LazySymbols.emplace_back(this, Sym);
Rui Ueyama159fb4cd2015-07-14 03:09:59 +000066
67 // Seen is a map from member files to boolean values. Initially
68 // all members are mapped to false, which indicates all these files
69 // are not read yet.
70 for (const Archive::Child &Child : File->children())
Rafael Espindola9f141ef2015-07-14 21:28:07 +000071 Seen[Child.getChildOffset()].clear();
Rui Ueyama411c63602015-05-28 19:09:30 +000072}
73
74// Returns a buffer pointing to a member file containing a given symbol.
Rui Ueyamaadcde532015-07-05 22:50:00 +000075// This function is thread-safe.
Rafael Espindolab835ae82015-08-06 14:58:50 +000076MemoryBufferRef ArchiveFile::getMember(const Archive::Symbol *Sym) {
Rui Ueyama411c63602015-05-28 19:09:30 +000077 auto ItOrErr = Sym->getMember();
Rafael Espindolab835ae82015-08-06 14:58:50 +000078 error(ItOrErr,
79 Twine("Could not get the member for symbol ") + Sym->getName());
Rui Ueyama04ec69aa2015-08-18 09:18:15 +000080 Archive::child_iterator It = *ItOrErr;
Rui Ueyama411c63602015-05-28 19:09:30 +000081
82 // Return an empty buffer if we have already returned the same buffer.
Rafael Espindola9f141ef2015-07-14 21:28:07 +000083 if (Seen[It->getChildOffset()].test_and_set())
Rui Ueyama411c63602015-05-28 19:09:30 +000084 return MemoryBufferRef();
Rafael Espindolab835ae82015-08-06 14:58:50 +000085 ErrorOr<MemoryBufferRef> Ret = It->getMemoryBufferRef();
86 error(Ret, Twine("Could not get the buffer for the member defining symbol ") +
87 Sym->getName());
88 return *Ret;
Rui Ueyama411c63602015-05-28 19:09:30 +000089}
90
Rafael Espindolab835ae82015-08-06 14:58:50 +000091void ObjectFile::parse() {
Rui Ueyama411c63602015-05-28 19:09:30 +000092 // Parse a memory buffer as a COFF file.
Rui Ueyamad7c2f582015-05-31 21:04:56 +000093 auto BinOrErr = createBinary(MB);
Rafael Espindolab835ae82015-08-06 14:58:50 +000094 error(BinOrErr, "Failed to parse object file");
Rui Ueyama04ec69aa2015-08-18 09:18:15 +000095 std::unique_ptr<Binary> Bin = std::move(*BinOrErr);
Rui Ueyama411c63602015-05-28 19:09:30 +000096
97 if (auto *Obj = dyn_cast<COFFObjectFile>(Bin.get())) {
98 Bin.release();
99 COFFObj.reset(Obj);
100 } else {
Rafael Espindolab835ae82015-08-06 14:58:50 +0000101 error(Twine(getName()) + " is not a COFF file.");
Rui Ueyama411c63602015-05-28 19:09:30 +0000102 }
103
104 // Read section and symbol tables.
Rafael Espindolab835ae82015-08-06 14:58:50 +0000105 initializeChunks();
106 initializeSymbols();
107 initializeSEH();
Rui Ueyama411c63602015-05-28 19:09:30 +0000108}
109
Rafael Espindolab835ae82015-08-06 14:58:50 +0000110void ObjectFile::initializeChunks() {
Rui Ueyama411c63602015-05-28 19:09:30 +0000111 uint32_t NumSections = COFFObj->getNumberOfSections();
112 Chunks.reserve(NumSections);
113 SparseChunks.resize(NumSections + 1);
114 for (uint32_t I = 1; I < NumSections + 1; ++I) {
115 const coff_section *Sec;
116 StringRef Name;
Rafael Espindolab835ae82015-08-06 14:58:50 +0000117 std::error_code EC = COFFObj->getSection(I, Sec);
118 error(EC, Twine("getSection failed: ") + Name);
119 EC = COFFObj->getSectionName(Sec, Name);
120 error(EC, Twine("getSectionName failed: ") + Name);
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000121 if (Name == ".sxdata") {
122 SXData = Sec;
123 continue;
124 }
Rui Ueyama411c63602015-05-28 19:09:30 +0000125 if (Name == ".drectve") {
126 ArrayRef<uint8_t> Data;
127 COFFObj->getSectionContents(Sec, Data);
Rui Ueyama0569ecf2015-07-04 03:27:46 +0000128 Directives = std::string((const char *)Data.data(), Data.size());
Rui Ueyama411c63602015-05-28 19:09:30 +0000129 continue;
130 }
Rui Ueyama2832ce92015-07-28 01:06:58 +0000131 // Skip non-DWARF debug info. MSVC linker converts the sections into
132 // a PDB file, but we don't support that.
133 if (Name == ".debug" || Name.startswith(".debug$"))
134 continue;
David Majnemer2c345a32015-07-08 16:37:50 +0000135 // We want to preserve DWARF debug sections only when /debug is on.
136 if (!Config->Debug && Name.startswith(".debug"))
Rui Ueyama411c63602015-05-28 19:09:30 +0000137 continue;
138 if (Sec->Characteristics & llvm::COFF::IMAGE_SCN_LNK_REMOVE)
139 continue;
Peter Collingbournebd3a29d2015-06-24 00:12:36 +0000140 auto *C = new (Alloc) SectionChunk(this, Sec);
Rui Ueyama411c63602015-05-28 19:09:30 +0000141 Chunks.push_back(C);
142 SparseChunks[I] = C;
143 }
Rui Ueyama411c63602015-05-28 19:09:30 +0000144}
145
Rafael Espindolab835ae82015-08-06 14:58:50 +0000146void ObjectFile::initializeSymbols() {
Rui Ueyama411c63602015-05-28 19:09:30 +0000147 uint32_t NumSymbols = COFFObj->getNumberOfSymbols();
148 SymbolBodies.reserve(NumSymbols);
149 SparseSymbolBodies.resize(NumSymbols);
Rui Ueyama7171c822015-08-17 23:35:43 +0000150 llvm::SmallVector<Undefined *, 8> WeakAliases;
Rui Ueyama411c63602015-05-28 19:09:30 +0000151 int32_t LastSectionNumber = 0;
152 for (uint32_t I = 0; I < NumSymbols; ++I) {
153 // Get a COFFSymbolRef object.
154 auto SymOrErr = COFFObj->getSymbol(I);
Rafael Espindolab835ae82015-08-06 14:58:50 +0000155 error(SymOrErr, Twine("broken object file: ") + getName());
156
Rui Ueyama04ec69aa2015-08-18 09:18:15 +0000157 COFFSymbolRef Sym = *SymOrErr;
Rui Ueyama411c63602015-05-28 19:09:30 +0000158
Rui Ueyama411c63602015-05-28 19:09:30 +0000159 const void *AuxP = nullptr;
160 if (Sym.getNumberOfAuxSymbols())
161 AuxP = COFFObj->getSymbol(I + 1)->getRawPtr();
162 bool IsFirst = (LastSectionNumber != Sym.getSectionNumber());
163
Rui Ueyamadae16612015-06-29 22:16:21 +0000164 SymbolBody *Body = nullptr;
165 if (Sym.isUndefined()) {
166 Body = createUndefined(Sym);
167 } else if (Sym.isWeakExternal()) {
168 Body = createWeakExternal(Sym, AuxP);
Rui Ueyama7171c822015-08-17 23:35:43 +0000169 WeakAliases.push_back((Undefined *)Body);
Rui Ueyamadae16612015-06-29 22:16:21 +0000170 } else {
171 Body = createDefined(Sym, AuxP, IsFirst);
172 }
Rui Ueyama411c63602015-05-28 19:09:30 +0000173 if (Body) {
174 SymbolBodies.push_back(Body);
175 SparseSymbolBodies[I] = Body;
176 }
177 I += Sym.getNumberOfAuxSymbols();
178 LastSectionNumber = Sym.getSectionNumber();
179 }
Rui Ueyama7171c822015-08-17 23:35:43 +0000180 for (Undefined *U : WeakAliases)
181 U->WeakAlias = SparseSymbolBodies[(uintptr_t)U->WeakAlias];
Rui Ueyama411c63602015-05-28 19:09:30 +0000182}
183
Rui Ueyamadae16612015-06-29 22:16:21 +0000184Undefined *ObjectFile::createUndefined(COFFSymbolRef Sym) {
Rui Ueyama57fe78d2015-06-08 19:43:59 +0000185 StringRef Name;
Rui Ueyamadae16612015-06-29 22:16:21 +0000186 COFFObj->getSymbolName(Sym, Name);
187 return new (Alloc) Undefined(Name);
188}
189
190Undefined *ObjectFile::createWeakExternal(COFFSymbolRef Sym, const void *AuxP) {
191 StringRef Name;
192 COFFObj->getSymbolName(Sym, Name);
Rui Ueyama48975962015-07-01 22:32:23 +0000193 auto *U = new (Alloc) Undefined(Name);
Rui Ueyamadae16612015-06-29 22:16:21 +0000194 auto *Aux = (const coff_aux_weak_external *)AuxP;
Rui Ueyama7171c822015-08-17 23:35:43 +0000195 U->WeakAlias = (Undefined *)(uintptr_t)Aux->TagIndex;
Rui Ueyama48975962015-07-01 22:32:23 +0000196 return U;
Rui Ueyamadae16612015-06-29 22:16:21 +0000197}
198
199Defined *ObjectFile::createDefined(COFFSymbolRef Sym, const void *AuxP,
200 bool IsFirst) {
201 StringRef Name;
Rui Ueyama411c63602015-05-28 19:09:30 +0000202 if (Sym.isCommon()) {
Rui Ueyamafc510f42015-06-25 19:10:58 +0000203 auto *C = new (Alloc) CommonChunk(Sym);
Rui Ueyama411c63602015-05-28 19:09:30 +0000204 Chunks.push_back(C);
Rui Ueyama68633f12015-06-25 23:22:00 +0000205 return new (Alloc) DefinedCommon(this, Sym, C);
Rui Ueyama411c63602015-05-28 19:09:30 +0000206 }
Rui Ueyama57fe78d2015-06-08 19:43:59 +0000207 if (Sym.isAbsolute()) {
208 COFFObj->getSymbolName(Sym, Name);
209 // Skip special symbols.
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000210 if (Name == "@comp.id")
Rui Ueyama57fe78d2015-06-08 19:43:59 +0000211 return nullptr;
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000212 // COFF spec 5.10.1. The .sxdata section.
213 if (Name == "@feat.00") {
214 if (Sym.getValue() & 1)
215 SEHCompat = true;
216 return nullptr;
217 }
Rui Ueyamaccde19d2015-06-26 03:09:23 +0000218 return new (Alloc) DefinedAbsolute(Name, Sym);
Rui Ueyama57fe78d2015-06-08 19:43:59 +0000219 }
Peter Collingbournec7b685d2015-06-24 00:05:50 +0000220 if (Sym.getSectionNumber() == llvm::COFF::IMAGE_SYM_DEBUG)
221 return nullptr;
Chandler Carruthee5bf522015-06-29 21:32:37 +0000222
223 // Nothing else to do without a section chunk.
224 auto *SC = cast_or_null<SectionChunk>(SparseChunks[Sym.getSectionNumber()]);
225 if (!SC)
226 return nullptr;
227
Rui Ueyama80141a42015-06-08 05:00:42 +0000228 // Handle associative sections
Rui Ueyama411c63602015-05-28 19:09:30 +0000229 if (IsFirst && AuxP) {
Chandler Carruthee5bf522015-06-29 21:32:37 +0000230 auto *Aux = reinterpret_cast<const coff_aux_section_definition *>(AuxP);
231 if (Aux->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE)
232 if (auto *ParentSC = cast_or_null<SectionChunk>(
233 SparseChunks[Aux->getNumber(Sym.isBigObj())]))
234 ParentSC->addAssociative(SC);
Rui Ueyama411c63602015-05-28 19:09:30 +0000235 }
Chandler Carruthee5bf522015-06-29 21:32:37 +0000236
237 auto *B = new (Alloc) DefinedRegular(this, Sym, SC);
238 if (SC->isCOMDAT() && Sym.getValue() == 0 && !AuxP)
239 SC->setSymbol(B);
240
241 return B;
Rui Ueyama411c63602015-05-28 19:09:30 +0000242}
243
Rafael Espindolab835ae82015-08-06 14:58:50 +0000244void ObjectFile::initializeSEH() {
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000245 if (!SEHCompat || !SXData)
Rafael Espindolab835ae82015-08-06 14:58:50 +0000246 return;
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000247 ArrayRef<uint8_t> A;
248 COFFObj->getSectionContents(SXData, A);
Rafael Espindolab835ae82015-08-06 14:58:50 +0000249 if (A.size() % 4 != 0)
250 error(".sxdata must be an array of symbol table indices");
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000251 auto *I = reinterpret_cast<const ulittle32_t *>(A.data());
252 auto *E = reinterpret_cast<const ulittle32_t *>(A.data() + A.size());
253 for (; I != E; ++I)
254 SEHandlers.insert(SparseSymbolBodies[*I]);
Rui Ueyamacd3f99b2015-07-24 23:51:14 +0000255}
256
Rui Ueyamaea533cd2015-07-09 19:54:13 +0000257MachineTypes ObjectFile::getMachineType() {
258 if (COFFObj)
259 return static_cast<MachineTypes>(COFFObj->getMachine());
260 return IMAGE_FILE_MACHINE_UNKNOWN;
261}
262
Rui Ueyamaa841bb02015-07-09 20:22:41 +0000263StringRef ltrim1(StringRef S, const char *Chars) {
264 if (!S.empty() && strchr(Chars, S[0]))
265 return S.substr(1);
266 return S;
267}
268
Rafael Espindolab835ae82015-08-06 14:58:50 +0000269void ImportFile::parse() {
Rui Ueyamad7c2f582015-05-31 21:04:56 +0000270 const char *Buf = MB.getBufferStart();
271 const char *End = MB.getBufferEnd();
Rui Ueyama411c63602015-05-28 19:09:30 +0000272 const auto *Hdr = reinterpret_cast<const coff_import_header *>(Buf);
273
274 // Check if the total size is valid.
Rafael Espindolab835ae82015-08-06 14:58:50 +0000275 if ((size_t)(End - Buf) != (sizeof(*Hdr) + Hdr->SizeOfData))
276 error("broken import library");
Rui Ueyama411c63602015-05-28 19:09:30 +0000277
278 // Read names and create an __imp_ symbol.
279 StringRef Name = StringAlloc.save(StringRef(Buf + sizeof(*Hdr)));
280 StringRef ImpName = StringAlloc.save(Twine("__imp_") + Name);
Rui Ueyamad1570882015-08-17 08:30:31 +0000281 const char *NameStart = Buf + sizeof(coff_import_header) + Name.size() + 1;
Rui Ueyamabfbd2772015-09-02 07:27:31 +0000282 DLLName = StringRef(NameStart);
Rui Ueyama1c79ce92015-07-08 20:22:50 +0000283 StringRef ExtName;
284 switch (Hdr->getNameType()) {
285 case IMPORT_ORDINAL:
286 ExtName = "";
287 break;
288 case IMPORT_NAME:
289 ExtName = Name;
290 break;
291 case IMPORT_NAME_NOPREFIX:
Rui Ueyamaa841bb02015-07-09 20:22:41 +0000292 ExtName = ltrim1(Name, "?@_");
Rui Ueyama1c79ce92015-07-08 20:22:50 +0000293 break;
294 case IMPORT_NAME_UNDECORATE:
Rui Ueyamaa841bb02015-07-09 20:22:41 +0000295 ExtName = ltrim1(Name, "?@_");
Rui Ueyama1c79ce92015-07-08 20:22:50 +0000296 ExtName = ExtName.substr(0, ExtName.find('@'));
297 break;
298 }
Rui Ueyamae73e4182015-08-17 07:27:45 +0000299 ImpSym = new (Alloc) DefinedImportData(DLLName, ImpName, ExtName, Hdr);
Rui Ueyama411c63602015-05-28 19:09:30 +0000300 SymbolBodies.push_back(ImpSym);
301
302 // If type is function, we need to create a thunk which jump to an
303 // address pointed by the __imp_ symbol. (This allows you to call
304 // DLL functions just like regular non-DLL functions.)
Rui Ueyamae73e4182015-08-17 07:27:45 +0000305 if (Hdr->getType() != llvm::COFF::IMPORT_CODE)
306 return;
307 ThunkSym = new (Alloc) DefinedImportThunk(Name, ImpSym, Hdr->Machine);
308 SymbolBodies.push_back(ThunkSym);
Rui Ueyama411c63602015-05-28 19:09:30 +0000309}
310
Rafael Espindolab835ae82015-08-06 14:58:50 +0000311void BitcodeFile::parse() {
Peter Collingbourne60c16162015-06-01 20:10:10 +0000312 std::string Err;
Rui Ueyama81b030c2015-06-01 21:19:43 +0000313 M.reset(LTOModule::createFromBuffer(MB.getBufferStart(),
314 MB.getBufferSize(),
315 llvm::TargetOptions(), Err));
Rafael Espindolab835ae82015-08-06 14:58:50 +0000316 if (!Err.empty())
317 error(Err);
Peter Collingbourne60c16162015-06-01 20:10:10 +0000318
Rafael Espindolaf0461ba2015-08-13 01:07:08 +0000319 llvm::StringSaver Saver(Alloc);
Peter Collingbourne60c16162015-06-01 20:10:10 +0000320 for (unsigned I = 0, E = M->getSymbolCount(); I != E; ++I) {
Peter Collingbournedf637ea2015-06-08 20:21:28 +0000321 lto_symbol_attributes Attrs = M->getSymbolAttributes(I);
322 if ((Attrs & LTO_SYMBOL_SCOPE_MASK) == LTO_SYMBOL_SCOPE_INTERNAL)
323 continue;
324
Rui Ueyama223fe1b2015-06-18 20:29:41 +0000325 StringRef SymName = Saver.save(M->getSymbolName(I));
Peter Collingbournedf637ea2015-06-08 20:21:28 +0000326 int SymbolDef = Attrs & LTO_SYMBOL_DEFINITION_MASK;
327 if (SymbolDef == LTO_SYMBOL_DEFINITION_UNDEFINED) {
Peter Collingbourne60c16162015-06-01 20:10:10 +0000328 SymbolBodies.push_back(new (Alloc) Undefined(SymName));
329 } else {
Peter Collingbourne2612a322015-07-04 05:28:41 +0000330 bool Replaceable =
331 (SymbolDef == LTO_SYMBOL_DEFINITION_TENTATIVE || // common
332 (Attrs & LTO_SYMBOL_COMDAT) || // comdat
333 (SymbolDef == LTO_SYMBOL_DEFINITION_WEAK && // weak external
334 (Attrs & LTO_SYMBOL_ALIAS)));
Peter Collingbournef7b27d12015-06-30 00:47:52 +0000335 SymbolBodies.push_back(new (Alloc) DefinedBitcode(this, SymName,
336 Replaceable));
Peter Collingbourne60c16162015-06-01 20:10:10 +0000337 }
338 }
Peter Collingbourneace2f092015-06-06 02:00:45 +0000339
Peter Collingbourne79cfd432015-06-29 23:26:28 +0000340 Directives = M->getLinkerOpts();
Peter Collingbourne60c16162015-06-01 20:10:10 +0000341}
Rui Ueyama81b030c2015-06-01 21:19:43 +0000342
Rui Ueyamaea533cd2015-07-09 19:54:13 +0000343MachineTypes BitcodeFile::getMachineType() {
344 if (!M)
345 return IMAGE_FILE_MACHINE_UNKNOWN;
346 switch (Triple(M->getTargetTriple()).getArch()) {
347 case Triple::x86_64:
Rui Ueyama5e706b32015-07-25 21:54:50 +0000348 return AMD64;
Rui Ueyamaea533cd2015-07-09 19:54:13 +0000349 case Triple::x86:
Rui Ueyama5e706b32015-07-25 21:54:50 +0000350 return I386;
Rui Ueyamaea533cd2015-07-09 19:54:13 +0000351 case Triple::arm:
Rui Ueyama5e706b32015-07-25 21:54:50 +0000352 return ARMNT;
Rui Ueyamaea533cd2015-07-09 19:54:13 +0000353 default:
354 return IMAGE_FILE_MACHINE_UNKNOWN;
355 }
356}
357
Rui Ueyama411c63602015-05-28 19:09:30 +0000358} // namespace coff
359} // namespace lld