2012-05-05 04:18:50 +08:00
|
|
|
//===- NVPTXSubtarget.cpp - NVPTX Subtarget Information -------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the NVPTX specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "NVPTXSubtarget.h"
|
2014-04-22 06:55:11 +08:00
|
|
|
|
2014-04-22 10:03:14 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "nvptx-subtarget"
|
|
|
|
|
2012-05-05 04:18:50 +08:00
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "NVPTXGenSubtargetInfo.inc"
|
|
|
|
|
2013-11-19 08:57:56 +08:00
|
|
|
// Pin the vtable to this file.
|
|
|
|
void NVPTXSubtarget::anchor() {}
|
|
|
|
|
2014-06-27 12:33:14 +08:00
|
|
|
NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU,
|
|
|
|
StringRef FS) {
|
|
|
|
// Provide the default CPU if we don't have one.
|
2014-06-27 10:05:19 +08:00
|
|
|
if (CPU.empty() && FS.size())
|
2012-05-05 04:18:50 +08:00
|
|
|
llvm_unreachable("we are not using FeatureStr");
|
2014-06-27 10:05:19 +08:00
|
|
|
TargetName = CPU.empty() ? "sm_20" : CPU;
|
|
|
|
|
|
|
|
ParseSubtargetFeatures(TargetName, FS);
|
2012-05-05 04:18:50 +08:00
|
|
|
|
2014-06-28 02:35:18 +08:00
|
|
|
// Set default to PTX 3.2 (CUDA 5.5)
|
|
|
|
if (PTXVersion == 0) {
|
|
|
|
PTXVersion = 32;
|
|
|
|
}
|
2014-06-27 12:33:14 +08:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
NVPTXSubtarget::NVPTXSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS, const TargetMachine &TM,
|
|
|
|
bool is64Bit)
|
|
|
|
: NVPTXGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit), PTXVersion(0),
|
2015-01-27 03:03:15 +08:00
|
|
|
SmVersion(20), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
|
2015-01-30 09:50:07 +08:00
|
|
|
TLInfo((const NVPTXTargetMachine &)TM, *this), TSInfo(TM.getDataLayout()),
|
2014-08-01 20:34:58 +08:00
|
|
|
FrameLowering(*this) {
|
2014-06-27 12:33:14 +08:00
|
|
|
|
|
|
|
Triple T(TT);
|
|
|
|
|
|
|
|
if (T.getOS() == Triple::NVCL)
|
|
|
|
drvInterface = NVPTX::NVCL;
|
|
|
|
else
|
|
|
|
drvInterface = NVPTX::CUDA;
|
2012-05-05 04:18:50 +08:00
|
|
|
}
|