summaryrefslogtreecommitdiff
path: root/lib/Target/PTX/AsmPrinter/PTXAsmPrinter.cpp
blob: 1a723a22e953d9487feec340b1e9f7c7d88ee6ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//===-- 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/CodeGen/AsmPrinter.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"; }
  };
} // namespace

// Force static initialization.
extern "C" void LLVMInitializePTXAsmPrinter()
{
  RegisterAsmPrinter<PTXAsmPrinter> X(ThePTXTarget);
}