2012-05-04 20:18:50 +00:00
|
|
|
//===- NVPTX.td - Describe the NVPTX Target Machine -----------*- tblgen -*-==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// This is the top level entry point for the NVPTX target.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
|
|
|
|
include "NVPTXRegisterInfo.td"
|
|
|
|
include "NVPTXInstrInfo.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Subtarget Features.
|
|
|
|
// - We use the SM version number instead of explicit feature table.
|
|
|
|
// - Need at least one feature to avoid generating zero sized array by
|
|
|
|
// TableGen in NVPTXGenSubtarget.inc.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2012-11-12 03:16:43 +00:00
|
|
|
|
|
|
|
// SM Versions
|
|
|
|
def SM20 : SubtargetFeature<"sm_20", "SmVersion", "20",
|
|
|
|
"Target SM 2.0">;
|
|
|
|
def SM21 : SubtargetFeature<"sm_21", "SmVersion", "21",
|
|
|
|
"Target SM 2.1">;
|
|
|
|
def SM30 : SubtargetFeature<"sm_30", "SmVersion", "30",
|
|
|
|
"Target SM 3.0">;
|
2015-03-30 18:12:50 +00:00
|
|
|
def SM32 : SubtargetFeature<"sm_32", "SmVersion", "32",
|
|
|
|
"Target SM 3.2">;
|
2012-11-12 03:16:43 +00:00
|
|
|
def SM35 : SubtargetFeature<"sm_35", "SmVersion", "35",
|
|
|
|
"Target SM 3.5">;
|
2015-03-30 18:12:50 +00:00
|
|
|
def SM37 : SubtargetFeature<"sm_37", "SmVersion", "37",
|
|
|
|
"Target SM 3.7">;
|
2014-06-27 18:35:18 +00:00
|
|
|
def SM50 : SubtargetFeature<"sm_50", "SmVersion", "50",
|
|
|
|
"Target SM 5.0">;
|
2015-03-30 18:12:50 +00:00
|
|
|
def SM52 : SubtargetFeature<"sm_52", "SmVersion", "52",
|
|
|
|
"Target SM 5.2">;
|
|
|
|
def SM53 : SubtargetFeature<"sm_53", "SmVersion", "53",
|
|
|
|
"Target SM 5.3">;
|
2012-11-12 03:16:43 +00:00
|
|
|
|
|
|
|
// PTX Versions
|
2014-06-27 18:35:18 +00:00
|
|
|
def PTX32 : SubtargetFeature<"ptx32", "PTXVersion", "32",
|
|
|
|
"Use PTX version 3.2">;
|
|
|
|
def PTX40 : SubtargetFeature<"ptx40", "PTXVersion", "40",
|
|
|
|
"Use PTX version 4.0">;
|
2015-03-30 18:12:50 +00:00
|
|
|
def PTX41 : SubtargetFeature<"ptx41", "PTXVersion", "41",
|
|
|
|
"Use PTX version 4.1">;
|
|
|
|
def PTX42 : SubtargetFeature<"ptx42", "PTXVersion", "42",
|
|
|
|
"Use PTX version 4.2">;
|
2012-05-04 20:18:50 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// NVPTX supported processors.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
|
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
|
2012-11-12 03:16:43 +00:00
|
|
|
def : Proc<"sm_20", [SM20]>;
|
|
|
|
def : Proc<"sm_21", [SM21]>;
|
|
|
|
def : Proc<"sm_30", [SM30]>;
|
2015-03-30 19:30:55 +00:00
|
|
|
def : Proc<"sm_32", [SM32, PTX40]>;
|
2012-11-12 03:16:43 +00:00
|
|
|
def : Proc<"sm_35", [SM35]>;
|
2015-03-30 19:30:55 +00:00
|
|
|
def : Proc<"sm_37", [SM37, PTX41]>;
|
|
|
|
def : Proc<"sm_50", [SM50, PTX40]>;
|
|
|
|
def : Proc<"sm_52", [SM52, PTX41]>;
|
|
|
|
def : Proc<"sm_53", [SM53, PTX42]>;
|
2012-05-04 20:18:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
def NVPTXInstrInfo : InstrInfo {
|
|
|
|
}
|
|
|
|
|
|
|
|
def NVPTX : Target {
|
|
|
|
let InstructionSet = NVPTXInstrInfo;
|
|
|
|
}
|