mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
bde7942072
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73481 91177308-0d34-0410-b5e6-96231b3b80d8
72 lines
2.4 KiB
C++
72 lines
2.4 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 "PIC16DebugInfo.h"
|
|
#include "llvm/Analysis/DebugInfo.h"
|
|
#include "PIC16TargetAsmInfo.h"
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
#include <list>
|
|
#include <string>
|
|
|
|
namespace llvm {
|
|
struct VISIBILITY_HIDDEN PIC16AsmPrinter : public AsmPrinter {
|
|
explicit PIC16AsmPrinter(raw_ostream &O, PIC16TargetMachine &TM,
|
|
const TargetAsmInfo *T, CodeGenOpt::Level OL,
|
|
bool V)
|
|
: AsmPrinter(O, TM, T, OL, V), DbgInfo(O, T) {
|
|
PTLI = TM.getTargetLowering();
|
|
PTAI = static_cast<const PIC16TargetAsmInfo *> (T);
|
|
}
|
|
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 EmitFunctionDecls (Module &M);
|
|
void EmitUndefinedVars (Module &M);
|
|
void EmitDefinedVars (Module &M);
|
|
void EmitIData (Module &M);
|
|
void EmitUData (Module &M);
|
|
void EmitAutos (std::string FunctName);
|
|
void EmitRemainingAutos ();
|
|
void EmitRomData (Module &M);
|
|
void EmitFunctionFrame(MachineFunction &MF);
|
|
void printLibcallDecls(void);
|
|
protected:
|
|
bool doInitialization(Module &M);
|
|
bool doFinalization(Module &M);
|
|
|
|
private:
|
|
PIC16TargetLowering *PTLI;
|
|
PIC16DbgInfo DbgInfo;
|
|
const PIC16TargetAsmInfo *PTAI;
|
|
std::list<const char *> LibcallDecls; // List of extern decls.
|
|
};
|
|
} // end of namespace
|
|
|
|
#endif
|