mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
31d157ae1a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150878 91177308-0d34-0410-b5e6-96231b3b80d8
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
//===-- PTXAsmPrinter.h - Print machine code to a PTX file ------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// PTX Assembly printer class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef PTXASMPRINTER_H
|
|
#define PTXASMPRINTER_H
|
|
|
|
#include "PTX.h"
|
|
#include "PTXTargetMachine.h"
|
|
#include "llvm/ADT/StringMap.h"
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
namespace llvm {
|
|
|
|
class MCOperand;
|
|
|
|
class LLVM_LIBRARY_VISIBILITY PTXAsmPrinter : public AsmPrinter {
|
|
public:
|
|
explicit PTXAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
|
|
: AsmPrinter(TM, Streamer) {}
|
|
|
|
const char *getPassName() const { return "PTX Assembly Printer"; }
|
|
|
|
bool doFinalization(Module &M);
|
|
|
|
virtual void EmitStartOfAsmFile(Module &M);
|
|
virtual void EmitFunctionBodyStart();
|
|
virtual void EmitFunctionBodyEnd();
|
|
virtual void EmitFunctionEntryLabel();
|
|
virtual void EmitInstruction(const MachineInstr *MI);
|
|
|
|
unsigned GetOrCreateSourceID(StringRef FileName,
|
|
StringRef DirName);
|
|
|
|
MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol);
|
|
MCOperand lowerOperand(const MachineOperand &MO);
|
|
|
|
private:
|
|
void EmitVariableDeclaration(const GlobalVariable *gv);
|
|
void EmitFunctionDeclaration(const Function* func);
|
|
|
|
StringMap<unsigned> SourceIdMap;
|
|
}; // class PTXAsmPrinter
|
|
} // namespace llvm
|
|
|
|
#endif
|
|
|