2011-01-20 06:38:47 +00:00
|
|
|
//===- ELFObjectFile.cpp - ELF object file implementation -------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2012-02-12 06:12:10 +00:00
|
|
|
// Part of the ELFObjectFile class implementation.
|
2011-01-20 06:38:47 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-08-08 22:27:13 +00:00
|
|
|
#include "llvm/Object/ELFObjectFile.h"
|
2013-01-04 20:36:28 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2011-01-20 06:38:47 +00:00
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
namespace llvm {
|
|
|
|
using namespace object;
|
2011-09-08 20:52:17 +00:00
|
|
|
|
2014-08-19 18:44:46 +00:00
|
|
|
ELFObjectFileBase::ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source)
|
|
|
|
: ObjectFile(Type, Source) {}
|
2014-08-17 17:52:10 +00:00
|
|
|
|
2014-07-31 03:12:45 +00:00
|
|
|
ErrorOr<std::unique_ptr<ObjectFile>>
|
2014-08-19 18:44:46 +00:00
|
|
|
ObjectFile::createELFObjectFile(MemoryBufferRef Obj) {
|
2014-07-05 11:38:52 +00:00
|
|
|
std::pair<unsigned char, unsigned char> Ident =
|
2014-08-19 18:44:46 +00:00
|
|
|
getElfArchType(Obj.getBuffer());
|
2013-01-04 20:36:28 +00:00
|
|
|
std::size_t MaxAlignment =
|
2014-08-19 18:44:46 +00:00
|
|
|
1ULL << countTrailingZeros(uintptr_t(Obj.getBufferStart()));
|
2013-01-04 20:36:28 +00:00
|
|
|
|
2014-06-13 02:24:39 +00:00
|
|
|
std::error_code EC;
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<ObjectFile> R;
|
2012-02-12 06:12:10 +00:00
|
|
|
if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
|
2013-02-03 10:48:31 +00:00
|
|
|
#if !LLVM_IS_UNALIGNED_ACCESS_FAST
|
2013-01-04 20:36:28 +00:00
|
|
|
if (MaxAlignment >= 4)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::little, 4, false>>(Obj, EC));
|
2013-02-03 10:48:31 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (MaxAlignment >= 2)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::little, 2, false>>(Obj, EC));
|
2013-01-04 20:36:28 +00:00
|
|
|
else
|
2014-06-16 16:41:00 +00:00
|
|
|
return object_error::parse_failed;
|
2012-02-12 06:12:10 +00:00
|
|
|
else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
|
2013-02-03 10:48:31 +00:00
|
|
|
#if !LLVM_IS_UNALIGNED_ACCESS_FAST
|
2013-01-04 20:36:28 +00:00
|
|
|
if (MaxAlignment >= 4)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::big, 4, false>>(Obj, EC));
|
2013-02-03 10:48:31 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (MaxAlignment >= 2)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::big, 2, false>>(Obj, EC));
|
2013-01-04 20:36:28 +00:00
|
|
|
else
|
2014-06-16 16:41:00 +00:00
|
|
|
return object_error::parse_failed;
|
2012-02-12 06:12:10 +00:00
|
|
|
else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
|
2013-02-03 10:48:31 +00:00
|
|
|
#if !LLVM_IS_UNALIGNED_ACCESS_FAST
|
2013-01-04 20:36:28 +00:00
|
|
|
if (MaxAlignment >= 8)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::big, 8, true>>(Obj, EC));
|
2013-02-03 10:48:31 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (MaxAlignment >= 2)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::big, 2, true>>(Obj, EC));
|
2013-01-04 20:36:28 +00:00
|
|
|
else
|
2014-06-16 16:41:00 +00:00
|
|
|
return object_error::parse_failed;
|
2012-02-12 06:12:10 +00:00
|
|
|
else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
|
2013-02-03 10:48:31 +00:00
|
|
|
#if !LLVM_IS_UNALIGNED_ACCESS_FAST
|
2013-01-04 20:36:28 +00:00
|
|
|
if (MaxAlignment >= 8)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::little, 8, true>>(Obj, EC));
|
2013-02-03 10:48:31 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (MaxAlignment >= 2)
|
2014-08-19 18:44:46 +00:00
|
|
|
R.reset(new ELFObjectFile<ELFType<support::little, 2, true>>(Obj, EC));
|
2013-01-04 20:36:28 +00:00
|
|
|
else
|
2014-06-16 16:41:00 +00:00
|
|
|
return object_error::parse_failed;
|
2011-10-11 03:18:58 +00:00
|
|
|
}
|
2014-01-21 23:06:54 +00:00
|
|
|
else
|
2014-06-16 16:41:00 +00:00
|
|
|
llvm_unreachable("Buffer is not an ELF object file!");
|
2011-10-07 19:25:32 +00:00
|
|
|
|
2014-01-21 23:06:54 +00:00
|
|
|
if (EC)
|
|
|
|
return EC;
|
2014-07-31 03:12:45 +00:00
|
|
|
return std::move(R);
|
2011-09-08 20:52:17 +00:00
|
|
|
}
|
|
|
|
|
2011-01-20 06:38:47 +00:00
|
|
|
} // end namespace llvm
|