Use the verbose asm flag instead of a new flag for decoding the LSDA.
[oota-llvm.git] / lib / Target / PTX / PTXTargetMachine.cpp
1 //===-- PTXTargetMachine.cpp - Define TargetMachine for PTX ---------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Top-level implementation for the PTX target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PTX.h"
15 #include "PTXMCAsmInfo.h"
16 #include "PTXTargetMachine.h"
17 #include "llvm/PassManager.h"
18 #include "llvm/Target/TargetRegistry.h"
19 #include "llvm/Support/raw_ostream.h"
20
21 using namespace llvm;
22
23 namespace llvm {
24   MCStreamer *createPTXAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
25                                    bool isVerboseAsm, bool useLoc,
26                                    bool useCFI,
27                                    MCInstPrinter *InstPrint,
28                                    MCCodeEmitter *CE,
29                                    TargetAsmBackend *TAB,
30                                    bool ShowInst);
31 }
32
33 extern "C" void LLVMInitializePTXTarget() {
34
35   RegisterTargetMachine<PTX32TargetMachine> X(ThePTX32Target);
36   RegisterTargetMachine<PTX64TargetMachine> Y(ThePTX64Target);
37
38   RegisterAsmInfo<PTXMCAsmInfo> Z(ThePTX32Target);
39   RegisterAsmInfo<PTXMCAsmInfo> W(ThePTX64Target);
40
41   TargetRegistry::RegisterAsmStreamer(ThePTX32Target, createPTXAsmStreamer);
42   TargetRegistry::RegisterAsmStreamer(ThePTX64Target, createPTXAsmStreamer);
43 }
44
45 namespace {
46   const char* DataLayout32 =
47     "e-p:32:32-i64:32:32-f64:32:32-v128:32:128-v64:32:64-n32:64";
48   const char* DataLayout64 =
49     "e-p:64:64-i64:32:32-f64:32:32-v128:32:128-v64:32:64-n32:64";
50 }
51
52 // DataLayout and FrameLowering are filled with dummy data
53 PTXTargetMachine::PTXTargetMachine(const Target &T,
54                                    const std::string &TT,
55                                    const std::string &FS,
56                                    bool is64Bit)
57   : LLVMTargetMachine(T, TT),
58     DataLayout(is64Bit ? DataLayout64 : DataLayout32),
59     Subtarget(TT, FS, is64Bit),
60     FrameLowering(Subtarget),
61     InstrInfo(*this),
62     TLInfo(*this) {
63 }
64
65 PTX32TargetMachine::PTX32TargetMachine(const Target &T,
66                                        const std::string& TT,
67                                        const std::string& FS)
68   : PTXTargetMachine(T, TT, FS, false) {
69 }
70
71 PTX64TargetMachine::PTX64TargetMachine(const Target &T,
72                                        const std::string& TT,
73                                        const std::string& FS)
74   : PTXTargetMachine(T, TT, FS, true) {
75 }
76
77 bool PTXTargetMachine::addInstSelector(PassManagerBase &PM,
78                                        CodeGenOpt::Level OptLevel) {
79   PM.add(createPTXISelDag(*this, OptLevel));
80   return false;
81 }
82
83 bool PTXTargetMachine::addPostRegAlloc(PassManagerBase &PM,
84                                        CodeGenOpt::Level OptLevel) {
85   // PTXMFInfoExtract must after register allocation!
86   PM.add(createPTXMFInfoExtract(*this, OptLevel));
87   return false;
88 }