mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62174 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- PIC16AsmPrinter.h - PIC16 LLVM assembly writer ------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file contains a printer that converts from our internal representation
 | 
						|
// of machine-dependent LLVM code to PIC16 assembly language.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#ifndef PIC16ASMPRINTER_H
 | 
						|
#define PIC16ASMPRINTER_H
 | 
						|
 | 
						|
#include "PIC16.h"
 | 
						|
#include "PIC16TargetMachine.h"
 | 
						|
#include "llvm/CodeGen/AsmPrinter.h"
 | 
						|
#include "llvm/Support/CommandLine.h"
 | 
						|
#include "llvm/Target/TargetAsmInfo.h"
 | 
						|
#include "llvm/Target/TargetMachine.h"
 | 
						|
 | 
						|
namespace llvm {
 | 
						|
  struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter {
 | 
						|
    PIC16AsmPrinter(raw_ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
 | 
						|
      : AsmPrinter(O, TM, T) {
 | 
						|
      CurrentBankselLabelInBasicBlock = "";
 | 
						|
      IsRomData = false;
 | 
						|
    }
 | 
						|
    private :
 | 
						|
    virtual const char *getPassName() const {
 | 
						|
      return "PIC16 Assembly Printer";
 | 
						|
    }
 | 
						|
 | 
						|
    bool runOnMachineFunction(MachineFunction &F);
 | 
						|
    void printOperand(const MachineInstr *MI, int opNum);
 | 
						|
    void printCCOperand(const MachineInstr *MI, int opNum);
 | 
						|
    bool printInstruction(const MachineInstr *MI); // definition autogenerated.
 | 
						|
    bool printMachineInstruction(const MachineInstr *MI);
 | 
						|
    void EmitExternsAndGlobals (Module &M);
 | 
						|
    void EmitInitData (Module &M);
 | 
						|
    void EmitUnInitData (Module &M);
 | 
						|
    void EmitRomData (Module &M);
 | 
						|
    virtual void EmitConstantValueOnly(const Constant *CV);
 | 
						|
    void emitFunctionData(MachineFunction &MF);
 | 
						|
    void emitFunctionTempData(MachineFunction &MF, unsigned &FrameSize);
 | 
						|
 | 
						|
    protected:
 | 
						|
    bool doInitialization(Module &M);
 | 
						|
    bool doFinalization(Module &M);
 | 
						|
    bool inSameBank(char *s1, char *s2);
 | 
						|
 | 
						|
    private:
 | 
						|
    std::string CurrentBankselLabelInBasicBlock;
 | 
						|
    bool IsRomData;
 | 
						|
  };
 | 
						|
} // end of namespace
 | 
						|
 | 
						|
#endif
 |