Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 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" |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 15 | |
Chandler Carruth | d174b72 | 2014-04-22 02:03:14 +0000 | [diff] [blame] | 16 | using namespace llvm; |
| 17 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "nvptx-subtarget" |
| 19 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 20 | #define GET_SUBTARGETINFO_ENUM |
| 21 | #define GET_SUBTARGETINFO_TARGET_DESC |
| 22 | #define GET_SUBTARGETINFO_CTOR |
| 23 | #include "NVPTXGenSubtargetInfo.inc" |
| 24 | |
Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 25 | // Pin the vtable to this file. |
| 26 | void NVPTXSubtarget::anchor() {} |
| 27 | |
Eric Christopher | 493f91b | 2014-06-27 04:33:14 +0000 | [diff] [blame] | 28 | static std::string computeDataLayout(bool is64Bit) { |
| 29 | std::string Ret = "e"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 30 | |
Eric Christopher | 493f91b | 2014-06-27 04:33:14 +0000 | [diff] [blame] | 31 | if (!is64Bit) |
| 32 | Ret += "-p:32:32"; |
Justin Holewinski | b6e6cd3 | 2013-06-21 18:51:49 +0000 | [diff] [blame] | 33 | |
Eric Christopher | 493f91b | 2014-06-27 04:33:14 +0000 | [diff] [blame] | 34 | Ret += "-i64:64-v16:16-v32:32-n16:32:64"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 35 | |
Eric Christopher | 493f91b | 2014-06-27 04:33:14 +0000 | [diff] [blame] | 36 | return Ret; |
| 37 | } |
| 38 | |
| 39 | NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU, |
| 40 | StringRef FS) { |
| 41 | // Provide the default CPU if we don't have one. |
Eric Christopher | d813286 | 2014-06-27 02:05:19 +0000 | [diff] [blame] | 42 | if (CPU.empty() && FS.size()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 43 | llvm_unreachable("we are not using FeatureStr"); |
Eric Christopher | d813286 | 2014-06-27 02:05:19 +0000 | [diff] [blame] | 44 | TargetName = CPU.empty() ? "sm_20" : CPU; |
| 45 | |
| 46 | ParseSubtargetFeatures(TargetName, FS); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 47 | |
Justin Holewinski | 602fa5b | 2014-06-27 18:35:18 +0000 | [diff] [blame] | 48 | // Set default to PTX 3.2 (CUDA 5.5) |
| 49 | if (PTXVersion == 0) { |
| 50 | PTXVersion = 32; |
| 51 | } |
Eric Christopher | 493f91b | 2014-06-27 04:33:14 +0000 | [diff] [blame] | 52 | |
| 53 | return *this; |
| 54 | } |
| 55 | |
| 56 | NVPTXSubtarget::NVPTXSubtarget(const std::string &TT, const std::string &CPU, |
| 57 | const std::string &FS, const TargetMachine &TM, |
| 58 | bool is64Bit) |
| 59 | : NVPTXGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit), PTXVersion(0), |
| 60 | SmVersion(20), DL(computeDataLayout(is64Bit)), |
| 61 | InstrInfo(initializeSubtargetDependencies(CPU, FS)), |
Aaron Ballman | 08c0b5a | 2014-08-01 12:34:58 +0000 | [diff] [blame] | 62 | TLInfo((const NVPTXTargetMachine &)TM), TSInfo(&DL), |
| 63 | FrameLowering(*this) { |
Eric Christopher | 493f91b | 2014-06-27 04:33:14 +0000 | [diff] [blame] | 64 | |
| 65 | Triple T(TT); |
| 66 | |
| 67 | if (T.getOS() == Triple::NVCL) |
| 68 | drvInterface = NVPTX::NVCL; |
| 69 | else |
| 70 | drvInterface = NVPTX::CUDA; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 71 | } |