blob: c1d35ea1f6baaad1413290ceb70be19484d0004f [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- llvm/MC/MCWinCOFFObjectWriter.h - Win COFF Object Writer -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_MC_MCWINCOFFOBJECTWRITER_H
11#define LLVM_MC_MCWINCOFFOBJECTWRITER_H
12
Andrew Scullcdfcccc2018-10-05 20:58:37 +010013#include "llvm/MC/MCObjectWriter.h"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010014#include <memory>
15
16namespace llvm {
17
18class MCAsmBackend;
19class MCContext;
20class MCFixup;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010021class MCValue;
22class raw_pwrite_stream;
23
Andrew Scullcdfcccc2018-10-05 20:58:37 +010024 class MCWinCOFFObjectTargetWriter : public MCObjectTargetWriter {
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010025 virtual void anchor();
26
27 const unsigned Machine;
28
29 protected:
30 MCWinCOFFObjectTargetWriter(unsigned Machine_);
31
32 public:
33 virtual ~MCWinCOFFObjectTargetWriter() = default;
34
Andrew Scullcdfcccc2018-10-05 20:58:37 +010035 virtual Triple::ObjectFormatType getFormat() const { return Triple::COFF; }
36 static bool classof(const MCObjectTargetWriter *W) {
37 return W->getFormat() == Triple::COFF;
38 }
39
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010040 unsigned getMachine() const { return Machine; }
41 virtual unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
42 const MCFixup &Fixup, bool IsCrossSection,
43 const MCAsmBackend &MAB) const = 0;
44 virtual bool recordRelocation(const MCFixup &) const { return true; }
45 };
46
Andrew Scullcdfcccc2018-10-05 20:58:37 +010047 /// Construct a new Win COFF writer instance.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010048 ///
49 /// \param MOTW - The target specific WinCOFF writer subclass.
50 /// \param OS - The stream to write to.
51 /// \returns The constructed object writer.
52 std::unique_ptr<MCObjectWriter>
53 createWinCOFFObjectWriter(std::unique_ptr<MCWinCOFFObjectTargetWriter> MOTW,
54 raw_pwrite_stream &OS);
55} // end namespace llvm
56
57#endif // LLVM_MC_MCWINCOFFOBJECTWRITER_H