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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
#include "llvm/Object/ELF.h"
|
2011-01-20 06:38:47 +00:00
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
namespace llvm {
|
2011-09-08 20:52:17 +00:00
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
using namespace object;
|
2011-09-08 20:52:17 +00:00
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
// Creates an in-memory object-file by default: createELFObjectFile(Buffer)
|
|
|
|
ObjectFile *ObjectFile::createELFObjectFile(MemoryBuffer *Object) {
|
|
|
|
std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object);
|
|
|
|
error_code ec;
|
2011-10-11 03:18:58 +00:00
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
|
|
|
|
return new ELFObjectFile<support::little, false>(Object, ec);
|
|
|
|
else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
|
|
|
|
return new ELFObjectFile<support::big, false>(Object, ec);
|
|
|
|
else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
|
|
|
|
return new ELFObjectFile<support::big, true>(Object, ec);
|
|
|
|
else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
|
|
|
|
ELFObjectFile<support::little, true> *result =
|
|
|
|
new ELFObjectFile<support::little, true>(Object, ec);
|
|
|
|
return result;
|
2011-10-11 03:18:58 +00:00
|
|
|
}
|
2011-10-07 19:25:32 +00:00
|
|
|
|
2012-02-12 06:12:10 +00:00
|
|
|
report_fatal_error("Buffer is not an ELF object file!");
|
2011-09-08 20:52:17 +00:00
|
|
|
}
|
|
|
|
|
2011-01-20 06:38:47 +00:00
|
|
|
} // end namespace llvm
|