mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
44 lines
1.4 KiB
C
44 lines
1.4 KiB
C
|
//===-------- MipsELFStreamer.h - ELF Object Output -----------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This is a custom MCELFStreamer which allows us to insert some hooks before
|
||
|
// emitting data into an actual object file.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef MIPSELFSTREAMER_H
|
||
|
#define MIPSELFSTREAMER_H
|
||
|
|
||
|
#include "llvm/MC/MCELFStreamer.h"
|
||
|
#include "llvm/Support/raw_ostream.h"
|
||
|
|
||
|
namespace llvm {
|
||
|
class MCAsmBackend;
|
||
|
class MCCodeEmitter;
|
||
|
class MCContext;
|
||
|
class MCSubtargetInfo;
|
||
|
|
||
|
class MipsELFStreamer : public MCELFStreamer {
|
||
|
const MCSubtargetInfo &STI;
|
||
|
|
||
|
public:
|
||
|
MipsELFStreamer(MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS,
|
||
|
MCCodeEmitter *Emitter, const MCSubtargetInfo &STI)
|
||
|
: MCELFStreamer(Context, MAB, OS, Emitter), STI(STI) {}
|
||
|
|
||
|
virtual ~MipsELFStreamer() {}
|
||
|
};
|
||
|
|
||
|
MCELFStreamer *createMipsELFStreamer(MCContext &Context, MCAsmBackend &MAB,
|
||
|
raw_ostream &OS, MCCodeEmitter *Emitter,
|
||
|
const MCSubtargetInfo &STI, bool RelaxAll,
|
||
|
bool NoExecStack);
|
||
|
} // namespace llvm.
|
||
|
#endif
|