mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 17:33:24 +00:00
50880d08ec
Patch by Che-Liang Chiou <clchiou@gmail.com>! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114294 91177308-0d34-0410-b5e6-96231b3b80d8
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
//===-- PTXAsmPrinter.cpp - PTX 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 PTX assembly language.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "PTX.h"
|
|
#include "PTXTargetMachine.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "llvm/ADT/SmallString.h"
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
#include "llvm/MC/MCStreamer.h"
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
class PTXAsmPrinter : public AsmPrinter {
|
|
public:
|
|
explicit PTXAsmPrinter(TargetMachine &TM, MCStreamer &Streamer) :
|
|
AsmPrinter(TM, Streamer) {}
|
|
const char *getPassName() const { return "PTX Assembly Printer"; }
|
|
|
|
virtual void EmitInstruction(const MachineInstr *MI);
|
|
|
|
// autogen'd.
|
|
void printInstruction(const MachineInstr *MI, raw_ostream &OS);
|
|
static const char *getRegisterName(unsigned RegNo);
|
|
};
|
|
} // namespace
|
|
|
|
void PTXAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
|
SmallString<128> str;
|
|
raw_svector_ostream os(str);
|
|
printInstruction(MI, os);
|
|
os << ';';
|
|
OutStreamer.EmitRawText(os.str());
|
|
}
|
|
|
|
#include "PTXGenAsmWriter.inc"
|
|
|
|
// Force static initialization.
|
|
extern "C" void LLVMInitializePTXAsmPrinter() {
|
|
RegisterAsmPrinter<PTXAsmPrinter> X(ThePTXTarget);
|
|
}
|