Home
last modified time | relevance | path

Searched refs:SmVersion (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/NVPTX/
DNVPTXSubtarget.h40 unsigned int SmVersion; variable
72 bool hasBrkPt() const { return SmVersion >= 11; } in hasBrkPt()
73 bool hasAtomRedG32() const { return SmVersion >= 11; } in hasAtomRedG32()
74 bool hasAtomRedS32() const { return SmVersion >= 12; } in hasAtomRedS32()
75 bool hasAtomRedG64() const { return SmVersion >= 12; } in hasAtomRedG64()
76 bool hasAtomRedS64() const { return SmVersion >= 20; } in hasAtomRedS64()
77 bool hasAtomRedGen32() const { return SmVersion >= 20; } in hasAtomRedGen32()
78 bool hasAtomRedGen64() const { return SmVersion >= 20; } in hasAtomRedGen64()
79 bool hasAtomAddF32() const { return SmVersion >= 20; } in hasAtomAddF32()
80 bool hasVote() const { return SmVersion >= 12; } in hasVote()
[all …]
DNVPTX.td29 def SM20 : SubtargetFeature<"sm_20", "SmVersion", "20",
31 def SM21 : SubtargetFeature<"sm_21", "SmVersion", "21",
33 def SM30 : SubtargetFeature<"sm_30", "SmVersion", "30",
35 def SM32 : SubtargetFeature<"sm_32", "SmVersion", "32",
37 def SM35 : SubtargetFeature<"sm_35", "SmVersion", "35",
39 def SM37 : SubtargetFeature<"sm_37", "SmVersion", "37",
41 def SM50 : SubtargetFeature<"sm_50", "SmVersion", "50",
43 def SM52 : SubtargetFeature<"sm_52", "SmVersion", "52",
45 def SM53 : SubtargetFeature<"sm_53", "SmVersion", "53",
DNVPTXSubtarget.cpp49 : NVPTXGenSubtargetInfo(TT, CPU, FS), PTXVersion(0), SmVersion(20), TM(TM), in NVPTXSubtarget()
57 return (SmVersion >= 30); in hasImageHandles()