mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	Instead, return a proper error code from factory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239116 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===- 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.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// Part of the ELFObjectFile class implementation.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "llvm/Object/ELFObjectFile.h"
 | 
						|
#include "llvm/Support/MathExtras.h"
 | 
						|
 | 
						|
namespace llvm {
 | 
						|
using namespace object;
 | 
						|
 | 
						|
ELFObjectFileBase::ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source)
 | 
						|
    : ObjectFile(Type, Source) {}
 | 
						|
 | 
						|
ErrorOr<std::unique_ptr<ObjectFile>>
 | 
						|
ObjectFile::createELFObjectFile(MemoryBufferRef Obj) {
 | 
						|
  std::pair<unsigned char, unsigned char> Ident =
 | 
						|
      getElfArchType(Obj.getBuffer());
 | 
						|
  std::size_t MaxAlignment =
 | 
						|
      1ULL << countTrailingZeros(uintptr_t(Obj.getBufferStart()));
 | 
						|
 | 
						|
  if (MaxAlignment < 2)
 | 
						|
    return object_error::parse_failed;
 | 
						|
 | 
						|
  std::error_code EC;
 | 
						|
  std::unique_ptr<ObjectFile> R;
 | 
						|
  if (Ident.first == ELF::ELFCLASS32) {
 | 
						|
    if (Ident.second == ELF::ELFDATA2LSB)
 | 
						|
      R.reset(new ELFObjectFile<ELFType<support::little, false>>(Obj, EC));
 | 
						|
    else if (Ident.second == ELF::ELFDATA2MSB)
 | 
						|
      R.reset(new ELFObjectFile<ELFType<support::big, false>>(Obj, EC));
 | 
						|
    else
 | 
						|
      return object_error::parse_failed;
 | 
						|
  } else if (Ident.first == ELF::ELFCLASS64) {
 | 
						|
    if (Ident.second == ELF::ELFDATA2LSB)
 | 
						|
      R.reset(new ELFObjectFile<ELFType<support::little, true>>(Obj, EC));
 | 
						|
    else if (Ident.second == ELF::ELFDATA2MSB)
 | 
						|
      R.reset(new ELFObjectFile<ELFType<support::big, true>>(Obj, EC));
 | 
						|
    else
 | 
						|
      return object_error::parse_failed;
 | 
						|
  } else {
 | 
						|
    return object_error::parse_failed;
 | 
						|
  }
 | 
						|
 | 
						|
  if (EC)
 | 
						|
    return EC;
 | 
						|
  return std::move(R);
 | 
						|
}
 | 
						|
 | 
						|
} // end namespace llvm
 |