1 //===- NVPTXSubtarget.cpp - NVPTX Subtarget Information -------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the NVPTX specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #include "NVPTXSubtarget.h"
15 #include "NVPTXTargetMachine.h"
19 #define DEBUG_TYPE "nvptx-subtarget"
21 #define GET_SUBTARGETINFO_ENUM
22 #define GET_SUBTARGETINFO_TARGET_DESC
23 #define GET_SUBTARGETINFO_CTOR
24 #include "NVPTXGenSubtargetInfo.inc"
27 NoF16Math("nvptx-no-f16-math", cl::ZeroOrMore
, cl::Hidden
,
28 cl::desc("NVPTX Specific: Disable generation of f16 math ops."),
31 // Pin the vtable to this file.
32 void NVPTXSubtarget::anchor() {}
34 NVPTXSubtarget
&NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU
,
36 // Provide the default CPU if we don't have one.
37 TargetName
= CPU
.empty() ? "sm_20" : CPU
;
39 ParseSubtargetFeatures(TargetName
, FS
);
41 // Set default to PTX 3.2 (CUDA 5.5)
42 if (PTXVersion
== 0) {
49 NVPTXSubtarget::NVPTXSubtarget(const Triple
&TT
, const std::string
&CPU
,
50 const std::string
&FS
,
51 const NVPTXTargetMachine
&TM
)
52 : NVPTXGenSubtargetInfo(TT
, CPU
, FS
), PTXVersion(0), SmVersion(20), TM(TM
),
53 InstrInfo(), TLInfo(TM
, initializeSubtargetDependencies(CPU
, FS
)),
56 bool NVPTXSubtarget::hasImageHandles() const {
57 // Enable handles for Kepler+, where CUDA supports indirect surfaces and
59 if (TM
.getDrvInterface() == NVPTX::CUDA
)
60 return (SmVersion
>= 30);
62 // Disabled, otherwise
66 bool NVPTXSubtarget::allowFP16Math() const {
67 return hasFP16Math() && NoF16Math
== false;