2011-12-24 02:14:02 +00:00
|
|
|
//===-- llvm/MC/MCWinCOFFObjectWriter.h - Win COFF Object Writer *- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCWINCOFFOBJECTWRITER_H
|
|
|
|
#define LLVM_MC_MCWINCOFFOBJECTWRITER_H
|
|
|
|
|
|
|
|
namespace llvm {
|
2013-04-10 23:28:17 +00:00
|
|
|
class MCFixup;
|
2012-12-03 16:50:05 +00:00
|
|
|
class MCObjectWriter;
|
2013-04-10 23:28:17 +00:00
|
|
|
class MCValue;
|
2012-12-03 16:50:05 +00:00
|
|
|
class raw_ostream;
|
|
|
|
|
2011-12-24 02:14:02 +00:00
|
|
|
class MCWinCOFFObjectTargetWriter {
|
2013-11-19 00:57:56 +00:00
|
|
|
virtual void anchor();
|
2011-12-24 02:14:02 +00:00
|
|
|
const unsigned Machine;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MCWinCOFFObjectTargetWriter(unsigned Machine_);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~MCWinCOFFObjectTargetWriter() {}
|
|
|
|
|
|
|
|
unsigned getMachine() const { return Machine; }
|
2013-04-10 23:28:17 +00:00
|
|
|
virtual unsigned getRelocType(const MCValue &Target,
|
|
|
|
const MCFixup &Fixup,
|
|
|
|
bool IsCrossSection) const = 0;
|
2014-05-21 23:17:50 +00:00
|
|
|
virtual bool recordRelocation(const MCFixup &) const { return true; }
|
2011-12-24 02:14:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// \brief Construct a new Win COFF writer instance.
|
|
|
|
///
|
|
|
|
/// \param MOTW - The target specific WinCOFF writer subclass.
|
|
|
|
/// \param OS - The stream to write to.
|
|
|
|
/// \returns The constructed object writer.
|
|
|
|
MCObjectWriter *createWinCOFFObjectWriter(MCWinCOFFObjectTargetWriter *MOTW,
|
|
|
|
raw_ostream &OS);
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|