blob: a80518807ebb74a254891af3ecbba69db6731cab [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- AMDGPUSubtarget.cpp - AMDGPU Subtarget Information ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10/// \file
11/// \brief Implements the AMDGPU specific subclass of TargetSubtarget.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AMDGPUSubtarget.h"
Eric Christopherac4b69e2014-07-25 22:22:39 +000016#include "R600ISelLowering.h"
Tom Stellard2e59a452014-06-13 01:32:00 +000017#include "R600InstrInfo.h"
Eric Christopherac4b69e2014-07-25 22:22:39 +000018#include "R600MachineScheduler.h"
Tom Stellard2e59a452014-06-13 01:32:00 +000019#include "SIInstrInfo.h"
Eric Christopherac4b69e2014-07-25 22:22:39 +000020#include "SIISelLowering.h"
Matt Arsenaultf171cf22014-07-14 23:40:49 +000021#include "llvm/ADT/SmallString.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000022
Matt Arsenaultd9a23ab2014-07-13 02:08:26 +000023#include "llvm/ADT/SmallString.h"
24
Tom Stellard75aadc22012-12-11 21:25:42 +000025using namespace llvm;
26
Chandler Carruthe96dd892014-04-21 22:55:11 +000027#define DEBUG_TYPE "amdgpu-subtarget"
28
Tom Stellard75aadc22012-12-11 21:25:42 +000029#define GET_SUBTARGETINFO_ENUM
30#define GET_SUBTARGETINFO_TARGET_DESC
31#define GET_SUBTARGETINFO_CTOR
32#include "AMDGPUGenSubtargetInfo.inc"
33
Eric Christopherac4b69e2014-07-25 22:22:39 +000034static std::string computeDataLayout(const AMDGPUSubtarget &ST) {
35 std::string Ret = "e-p:32:32";
36
37 if (ST.is64bit()) {
Matt Arsenault515c24b2014-08-06 00:44:25 +000038 // 32-bit private, local, and region pointers. 64-bit global and constant.
Eric Christopherac4b69e2014-07-25 22:22:39 +000039 Ret += "-p1:64:64-p2:64:64-p3:32:32-p4:64:64-p5:32:32-p24:64:64";
40 }
41
42 Ret += "-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256"
43 "-v512:512-v1024:1024-v2048:2048-n32:64";
44
45 return Ret;
46}
47
48AMDGPUSubtarget &
49AMDGPUSubtarget::initializeSubtargetDependencies(StringRef GPU, StringRef FS) {
50 // Determine default and user-specified characteristics
Matt Arsenaultf171cf22014-07-14 23:40:49 +000051 // On SI+, we want FP64 denormals to be on by default. FP32 denormals can be
52 // enabled, but some instructions do not respect them and they run at the
53 // double precision rate, so don't enable by default.
54 //
55 // We want to be able to turn these off, but making this a subtarget feature
56 // for SI has the unhelpful behavior that it unsets everything else if you
57 // disable it.
Matt Arsenaultd9a23ab2014-07-13 02:08:26 +000058
Matt Arsenaultf171cf22014-07-14 23:40:49 +000059 SmallString<256> FullFS("+promote-alloca,+fp64-denormals,");
Matt Arsenaultd9a23ab2014-07-13 02:08:26 +000060 FullFS += FS;
61
62 ParseSubtargetFeatures(GPU, FullFS);
Tom Stellard2e59a452014-06-13 01:32:00 +000063
Eric Christopherac4b69e2014-07-25 22:22:39 +000064 // FIXME: I don't think think Evergreen has any useful support for
65 // denormals, but should be checked. Should we issue a warning somewhere
66 // if someone tries to enable these?
Tom Stellard2e59a452014-06-13 01:32:00 +000067 if (getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
Matt Arsenaultf171cf22014-07-14 23:40:49 +000068 FP32Denormals = false;
69 FP64Denormals = false;
Eric Christopherac4b69e2014-07-25 22:22:39 +000070 }
71 return *this;
72}
73
74AMDGPUSubtarget::AMDGPUSubtarget(StringRef TT, StringRef GPU, StringRef FS,
75 TargetMachine &TM)
76 : AMDGPUGenSubtargetInfo(TT, GPU, FS), DevName(GPU), Is64bit(false),
77 DumpCode(false), R600ALUInst(false), HasVertexCache(false),
78 TexVTXClauseSize(0), Gen(AMDGPUSubtarget::R600), FP64(false),
79 FP64Denormals(false), FP32Denormals(false), CaymanISA(false),
Matt Arsenault3f981402014-09-15 15:41:53 +000080 FlatAddressSpace(false), EnableIRStructurizer(true),
81 EnablePromoteAlloca(false), EnableIfCvt(true),
Matt Arsenault41033282014-10-10 22:01:59 +000082 EnableLoadStoreOpt(false), WavefrontSize(0), CFALUBug(false), LocalMemorySize(0),
Eric Christopherac4b69e2014-07-25 22:22:39 +000083 DL(computeDataLayout(initializeSubtargetDependencies(GPU, FS))),
84 FrameLowering(TargetFrameLowering::StackGrowsUp,
85 64 * 16, // Maximum stack alignment (long16)
86 0),
Tom Stellard794c8c02014-12-02 17:05:41 +000087 InstrItins(getInstrItineraryForCPU(GPU)),
88 TargetTriple(TT) {
Eric Christopherac4b69e2014-07-25 22:22:39 +000089 if (getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
90 InstrInfo.reset(new R600InstrInfo(*this));
91 TLInfo.reset(new R600TargetLowering(TM));
Tom Stellard2e59a452014-06-13 01:32:00 +000092 } else {
93 InstrInfo.reset(new SIInstrInfo(*this));
Eric Christopherac4b69e2014-07-25 22:22:39 +000094 TLInfo.reset(new SITargetLowering(TM));
Tom Stellard2e59a452014-06-13 01:32:00 +000095 }
Tom Stellard75aadc22012-12-11 21:25:42 +000096}
97
Matt Arsenaultd782d052014-06-27 17:57:00 +000098unsigned AMDGPUSubtarget::getStackEntrySize() const {
Tom Stellarda40f9712014-01-22 21:55:43 +000099 assert(getGeneration() <= NORTHERN_ISLANDS);
100 switch(getWavefrontSize()) {
101 case 16:
102 return 8;
103 case 32:
Matt Arsenaultd782d052014-06-27 17:57:00 +0000104 return hasCaymanISA() ? 4 : 8;
Tom Stellarda40f9712014-01-22 21:55:43 +0000105 case 64:
106 return 4;
107 default:
108 llvm_unreachable("Illegal wavefront size.");
109 }
110}
Tom Stellardb8fd6ef2014-12-02 22:00:07 +0000111
112unsigned AMDGPUSubtarget::getAmdKernelCodeChipID() const {
113 switch(getGeneration()) {
114 default: llvm_unreachable("ChipID unknown");
115 case SEA_ISLANDS: return 12;
116 }
117}