blob: f456891fb14a1f9a1e18b4a47aa57190fcf71db0 [file] [log] [blame]
Justin Holewinskiae556d32012-05-04 20:18:50 +00001//===- 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"
Chandler Carruthe96dd892014-04-21 22:55:11 +000015
Chandler Carruthd174b722014-04-22 02:03:14 +000016using namespace llvm;
17
Chandler Carruthe96dd892014-04-21 22:55:11 +000018#define DEBUG_TYPE "nvptx-subtarget"
19
Justin Holewinskiae556d32012-05-04 20:18:50 +000020#define GET_SUBTARGETINFO_ENUM
21#define GET_SUBTARGETINFO_TARGET_DESC
22#define GET_SUBTARGETINFO_CTOR
23#include "NVPTXGenSubtargetInfo.inc"
24
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000025// Pin the vtable to this file.
26void NVPTXSubtarget::anchor() {}
27
Eric Christopher493f91b2014-06-27 04:33:14 +000028NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU,
29 StringRef FS) {
30 // Provide the default CPU if we don't have one.
Eric Christopherd8132862014-06-27 02:05:19 +000031 if (CPU.empty() && FS.size())
Justin Holewinskiae556d32012-05-04 20:18:50 +000032 llvm_unreachable("we are not using FeatureStr");
Eric Christopherd8132862014-06-27 02:05:19 +000033 TargetName = CPU.empty() ? "sm_20" : CPU;
34
35 ParseSubtargetFeatures(TargetName, FS);
Justin Holewinskiae556d32012-05-04 20:18:50 +000036
Justin Holewinski602fa5b2014-06-27 18:35:18 +000037 // Set default to PTX 3.2 (CUDA 5.5)
38 if (PTXVersion == 0) {
39 PTXVersion = 32;
40 }
Eric Christopher493f91b2014-06-27 04:33:14 +000041
42 return *this;
43}
44
45NVPTXSubtarget::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),
Eric Christopher8b770652015-01-26 19:03:15 +000049 SmVersion(20), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
Eric Christopherbef0a372015-01-30 01:50:07 +000050 TLInfo((const NVPTXTargetMachine &)TM, *this), TSInfo(TM.getDataLayout()),
Aaron Ballman08c0b5a2014-08-01 12:34:58 +000051 FrameLowering(*this) {
Eric Christopher493f91b2014-06-27 04:33:14 +000052
53 Triple T(TT);
54
55 if (T.getOS() == Triple::NVCL)
56 drvInterface = NVPTX::NVCL;
57 else
58 drvInterface = NVPTX::CUDA;
Justin Holewinskiae556d32012-05-04 20:18:50 +000059}