mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
20fb81927b
In this diff the elf-specific code is moved into the subfolder ELF (and factored out from llvm-objcopy.cpp). Test plan: make check-all Differential revision: https://reviews.llvm.org/D53790 llvm-svn: 345544
35 lines
968 B
C++
35 lines
968 B
C++
//===- ELFObjcopy.h ---------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TOOLS_OBJCOPY_ELFOBJCOPY_H
|
|
#define LLVM_TOOLS_OBJCOPY_ELFOBJCOPY_H
|
|
|
|
namespace llvm {
|
|
class MemoryBuffer;
|
|
|
|
namespace object {
|
|
class ELFObjectFileBase;
|
|
} // end namespace object
|
|
|
|
namespace objcopy {
|
|
struct CopyConfig;
|
|
class Buffer;
|
|
|
|
namespace elf {
|
|
void executeObjcopyOnRawBinary(const CopyConfig &Config, MemoryBuffer &In,
|
|
Buffer &Out);
|
|
void executeObjcopyOnBinary(const CopyConfig &Config,
|
|
object::ELFObjectFileBase &In, Buffer &Out);
|
|
|
|
} // end namespace elf
|
|
} // end namespace objcopy
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_TOOLS_OBJCOPY_ELFOBJCOPY_H
|