2012-05-04 22:18:50 +02:00
|
|
|
//===- NVPTXSubtarget.cpp - NVPTX Subtarget Information -------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-05-04 22:18:50 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the NVPTX specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "NVPTXSubtarget.h"
|
2015-02-19 01:08:14 +01:00
|
|
|
#include "NVPTXTargetMachine.h"
|
2014-04-22 00:55:11 +02:00
|
|
|
|
2014-04-22 04:03:14 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 00:55:11 +02:00
|
|
|
#define DEBUG_TYPE "nvptx-subtarget"
|
|
|
|
|
2012-05-04 22:18:50 +02:00
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "NVPTXGenSubtargetInfo.inc"
|
|
|
|
|
2017-01-13 21:56:17 +01:00
|
|
|
static cl::opt<bool>
|
|
|
|
NoF16Math("nvptx-no-f16-math", cl::ZeroOrMore, cl::Hidden,
|
|
|
|
cl::desc("NVPTX Specific: Disable generation of f16 math ops."),
|
|
|
|
cl::init(false));
|
|
|
|
|
2013-11-19 01:57:56 +01:00
|
|
|
// Pin the vtable to this file.
|
|
|
|
void NVPTXSubtarget::anchor() {}
|
|
|
|
|
2014-06-27 06:33:14 +02:00
|
|
|
NVPTXSubtarget &NVPTXSubtarget::initializeSubtargetDependencies(StringRef CPU,
|
|
|
|
StringRef FS) {
|
|
|
|
// Provide the default CPU if we don't have one.
|
2020-01-28 20:23:46 +01:00
|
|
|
TargetName = std::string(CPU.empty() ? "sm_20" : CPU);
|
2014-06-27 04:05:19 +02:00
|
|
|
|
2020-08-14 23:56:54 +02:00
|
|
|
ParseSubtargetFeatures(TargetName, /*TuneCPU*/ TargetName, FS);
|
2012-05-04 22:18:50 +02:00
|
|
|
|
2020-01-28 20:23:46 +01:00
|
|
|
// Set default to PTX 3.2 (CUDA 5.5)
|
|
|
|
if (PTXVersion == 0) {
|
|
|
|
PTXVersion = 32;
|
2014-06-27 20:35:18 +02:00
|
|
|
}
|
2014-06-27 06:33:14 +02:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-06-10 14:11:26 +02:00
|
|
|
NVPTXSubtarget::NVPTXSubtarget(const Triple &TT, const std::string &CPU,
|
2015-02-19 01:08:14 +01:00
|
|
|
const std::string &FS,
|
2015-02-19 01:08:27 +01:00
|
|
|
const NVPTXTargetMachine &TM)
|
2020-08-14 23:56:54 +02:00
|
|
|
: NVPTXGenSubtargetInfo(TT, CPU, /*TuneCPU*/ CPU, FS), PTXVersion(0),
|
|
|
|
SmVersion(20), TM(TM), InstrInfo(),
|
|
|
|
TLInfo(TM, initializeSubtargetDependencies(CPU, FS)), FrameLowering() {}
|
2014-06-27 06:33:14 +02:00
|
|
|
|
2015-02-19 01:08:23 +01:00
|
|
|
bool NVPTXSubtarget::hasImageHandles() const {
|
|
|
|
// Enable handles for Kepler+, where CUDA supports indirect surfaces and
|
|
|
|
// textures
|
|
|
|
if (TM.getDrvInterface() == NVPTX::CUDA)
|
|
|
|
return (SmVersion >= 30);
|
|
|
|
|
|
|
|
// Disabled, otherwise
|
|
|
|
return false;
|
2012-05-04 22:18:50 +02:00
|
|
|
}
|
2017-01-13 21:56:17 +01:00
|
|
|
|
|
|
|
bool NVPTXSubtarget::allowFP16Math() const {
|
|
|
|
return hasFP16Math() && NoF16Math == false;
|
|
|
|
}
|