summaryrefslogtreecommitdiff
path: root/include/mcld/LD/ELFBinaryWriter.h
blob: 593b54be030192d0fd6a24b25764ca038071201c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//===- ELFBinaryWriter.h --------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_ELF_BINARY_WRITER_H
#define MCLD_ELF_BINARY_WRITER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <llvm/Support/system_error.h>
#include <mcld/LD/BinaryWriter.h>
#include <mcld/LD/ELFWriter.h>

namespace mcld {

class Module;
class LinkerConfig;
class MemoryArea;
class GNULDBackend;

/** \class ELFBinaryWriter
 *  \brief ELFBinaryWriter writes the target-independent parts of Binary files.
 *  ELFBinaryWriter reads a MCLDFile and writes into raw_ostream
 *
 */
class ELFBinaryWriter : public BinaryWriter, protected ELFWriter
{
public:
  ELFBinaryWriter(GNULDBackend& pBackend, const LinkerConfig& pConfig);

  ~ELFBinaryWriter();

  llvm::error_code writeBinary(Module& pModule, MemoryArea& pOutput);

private:
  const LinkerConfig& m_Config;
};

} // namespace of mcld

#endif