blob: e45030f302ff735b358c8cd337425c81acdcc6ec [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===-- llvm/MC/MCWasmObjectWriter.h - Wasm 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_MCWASMOBJECTWRITER_H
11#define LLVM_MC_MCWASMOBJECTWRITER_H
12
Andrew Scullcdfcccc2018-10-05 20:58:37 +010013#include "llvm/MC/MCObjectWriter.h"
14#include <memory>
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010015
16namespace llvm {
17
18class MCFixup;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010019class MCValue;
20class raw_pwrite_stream;
21
Andrew Scullcdfcccc2018-10-05 20:58:37 +010022class MCWasmObjectTargetWriter : public MCObjectTargetWriter {
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010023 const unsigned Is64Bit : 1;
24
25protected:
26 explicit MCWasmObjectTargetWriter(bool Is64Bit_);
27
28public:
29 virtual ~MCWasmObjectTargetWriter();
30
Andrew Scullcdfcccc2018-10-05 20:58:37 +010031 virtual Triple::ObjectFormatType getFormat() const { return Triple::Wasm; }
32 static bool classof(const MCObjectTargetWriter *W) {
33 return W->getFormat() == Triple::Wasm;
34 }
35
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010036 virtual unsigned getRelocType(const MCValue &Target,
37 const MCFixup &Fixup) const = 0;
38
39 /// \name Accessors
40 /// @{
41 bool is64Bit() const { return Is64Bit; }
42 /// @}
43};
44
Andrew Scullcdfcccc2018-10-05 20:58:37 +010045/// Construct a new Wasm writer instance.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010046///
47/// \param MOTW - The target specific Wasm writer subclass.
48/// \param OS - The stream to write to.
49/// \returns The constructed object writer.
50std::unique_ptr<MCObjectWriter>
51createWasmObjectWriter(std::unique_ptr<MCWasmObjectTargetWriter> MOTW,
52 raw_pwrite_stream &OS);
53
54} // End llvm namespace
55
56#endif