mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 01:10:48 +00:00
76a1dca38d
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198030 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
//===-- SparcTargetStreamer.h - Sparc Target Streamer ----------*- C++ -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SPARCTARGETSTREAMER_H
|
|
#define SPARCTARGETSTREAMER_H
|
|
|
|
#include "llvm/MC/MCELFStreamer.h"
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
namespace llvm {
|
|
class SparcTargetStreamer : public MCTargetStreamer {
|
|
virtual void anchor();
|
|
|
|
public:
|
|
/// Emit ".register <reg>, #ignore".
|
|
virtual void emitSparcRegisterIgnore(unsigned reg) = 0;
|
|
/// Emit ".register <reg>, #scratch".
|
|
virtual void emitSparcRegisterScratch(unsigned reg) = 0;
|
|
};
|
|
|
|
// This part is for ascii assembly output
|
|
class SparcTargetAsmStreamer : public SparcTargetStreamer {
|
|
formatted_raw_ostream &OS;
|
|
|
|
public:
|
|
SparcTargetAsmStreamer(formatted_raw_ostream &OS);
|
|
virtual void emitSparcRegisterIgnore(unsigned reg);
|
|
virtual void emitSparcRegisterScratch(unsigned reg);
|
|
|
|
};
|
|
|
|
// This part is for ELF object output
|
|
class SparcTargetELFStreamer : public SparcTargetStreamer {
|
|
public:
|
|
MCELFStreamer &getStreamer();
|
|
virtual void emitSparcRegisterIgnore(unsigned reg) {}
|
|
virtual void emitSparcRegisterScratch(unsigned reg) {}
|
|
};
|
|
} // end namespace llvm
|
|
|
|
#endif
|