Migrate NVPTXISelLowering to take the subtarget that it's dependent
[oota-llvm.git] / lib / Target / NVPTX / NVPTXSubtarget.cpp
1 //===- NVPTXSubtarget.cpp - NVPTX Subtarget Information -------------------===//
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 // This file implements the NVPTX specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "NVPTXSubtarget.h"
15
16 using namespace llvm;
17
18 #define DEBUG_TYPE "nvptx-subtarget"
19
20 #define GET_SUBTARGETINFO_ENUM
21 #define GET_SUBTARGETINFO_TARGET_DESC
22 #define GET_SUBTARGETINFO_CTOR
23 #include "NVPTXGenSubtargetInfo.inc"
24
25 // Pin the vtable to this file.
26 void NVPTXSubtarget::anchor() {}
27
28 NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU,
29                                                                 StringRef FS) {
30     // Provide the default CPU if we don't have one.
31   if (CPU.empty() && FS.size())
32     llvm_unreachable("we are not using FeatureStr");
33   TargetName = CPU.empty() ? "sm_20" : CPU;
34
35   ParseSubtargetFeatures(TargetName, FS);
36
37   // Set default to PTX 3.2 (CUDA 5.5)
38   if (PTXVersion == 0) {
39     PTXVersion = 32;
40   }
41
42   return *this;
43 }
44
45 NVPTXSubtarget::NVPTXSubtarget(const std::string &TT, const std::string &CPU,
46                                const std::string &FS, const TargetMachine &TM,
47                                bool is64Bit)
48     : NVPTXGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit), PTXVersion(0),
49       SmVersion(20), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
50       TLInfo((const NVPTXTargetMachine &)TM, *this), TSInfo(TM.getDataLayout()),
51       FrameLowering(*this) {
52
53   Triple T(TT);
54
55   if (T.getOS() == Triple::NVCL)
56     drvInterface = NVPTX::NVCL;
57   else
58     drvInterface = NVPTX::CUDA;
59 }