[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / MC / MCWinCOFFObjectWriter.h
blob3fe124fd7f1c4657b21898a6c20ea1ad17e1ca7a
1 //===- llvm/MC/MCWinCOFFObjectWriter.h - Win COFF Object Writer -*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_MC_MCWINCOFFOBJECTWRITER_H
10 #define LLVM_MC_MCWINCOFFOBJECTWRITER_H
12 #include "llvm/MC/MCObjectWriter.h"
13 #include <memory>
15 namespace llvm {
17 class MCAsmBackend;
18 class MCContext;
19 class MCFixup;
20 class MCValue;
21 class raw_pwrite_stream;
23 class MCWinCOFFObjectTargetWriter : public MCObjectTargetWriter {
24 virtual void anchor();
26 const unsigned Machine;
28 protected:
29 MCWinCOFFObjectTargetWriter(unsigned Machine_);
31 public:
32 virtual ~MCWinCOFFObjectTargetWriter() = default;
34 virtual Triple::ObjectFormatType getFormat() const { return Triple::COFF; }
35 static bool classof(const MCObjectTargetWriter *W) {
36 return W->getFormat() == Triple::COFF;
39 unsigned getMachine() const { return Machine; }
40 virtual unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
41 const MCFixup &Fixup, bool IsCrossSection,
42 const MCAsmBackend &MAB) const = 0;
43 virtual bool recordRelocation(const MCFixup &) const { return true; }
46 /// Construct a new Win COFF writer instance.
47 ///
48 /// \param MOTW - The target specific WinCOFF writer subclass.
49 /// \param OS - The stream to write to.
50 /// \returns The constructed object writer.
51 std::unique_ptr<MCObjectWriter>
52 createWinCOFFObjectWriter(std::unique_ptr<MCWinCOFFObjectTargetWriter> MOTW,
53 raw_pwrite_stream &OS);
54 } // end namespace llvm
56 #endif // LLVM_MC_MCWINCOFFOBJECTWRITER_H