mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	This has a few advantages: * Only targets that use a MCTargetStreamer have to worry about it. * There is never a MCTargetStreamer without a MCStreamer, so we can use a reference. * A MCTargetStreamer can talk to the MCStreamer in its constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200129 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.4 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:
 | 
						|
  SparcTargetStreamer(MCStreamer &S);
 | 
						|
  /// 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(MCStreamer &S, 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:
 | 
						|
  SparcTargetELFStreamer(MCStreamer &S);
 | 
						|
  MCELFStreamer &getStreamer();
 | 
						|
  virtual void emitSparcRegisterIgnore(unsigned reg) {}
 | 
						|
  virtual void emitSparcRegisterScratch(unsigned reg) {}
 | 
						|
};
 | 
						|
} // end namespace llvm
 | 
						|
 | 
						|
#endif
 |