mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
6024c97ffa
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122067 91177308-0d34-0410-b5e6-96231b3b80d8
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
//===-- llvm/MC/MCELFObjectWriter.h - ELF 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_MCELFOBJECTWRITER_H
|
|
#define LLVM_MC_MCELFOBJECTWRITER_H
|
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
|
#include "llvm/Support/DataTypes.h"
|
|
|
|
namespace llvm {
|
|
class MCELFObjectTargetWriter {
|
|
protected:
|
|
MCELFObjectTargetWriter();
|
|
|
|
public:
|
|
virtual ~MCELFObjectTargetWriter();
|
|
};
|
|
|
|
/// \brief Construct a new ELF writer instance.
|
|
///
|
|
/// \param MOTW - The target specific ELF writer subclass.
|
|
/// \param OS - The stream to write to.
|
|
/// \returns The constructed object writer.
|
|
MCObjectWriter *createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
|
|
raw_ostream &OS, bool is64Bit,
|
|
Triple::OSType OSType, uint16_t EMachine,
|
|
bool IsLittleEndian,
|
|
bool HasRelocationAddend);
|
|
} // End llvm namespace
|
|
|
|
#endif
|