LLVM 19.0.0git
R600Subtarget.cpp
Go to the documentation of this file.
1//===-- R600Subtarget.cpp - R600 Subtarget Information --------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10/// Implements the R600 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "R600Subtarget.h"
16
17using namespace llvm;
18
19#define DEBUG_TYPE "r600-subtarget"
20
21#define GET_SUBTARGETINFO_TARGET_DESC
22#define GET_SUBTARGETINFO_CTOR
23#include "R600GenSubtargetInfo.inc"
24
26 const TargetMachine &TM)
27 : R600GenSubtargetInfo(TT, GPU, /*TuneCPU*/ GPU, FS), AMDGPUSubtarget(TT),
28 InstrInfo(*this),
29 FrameLowering(TargetFrameLowering::StackGrowsUp, getStackAlignment(), 0),
30 TLInfo(TM, initializeSubtargetDependencies(TT, GPU, FS)),
31 InstrItins(getInstrItineraryForCPU(GPU)) {
33}
34
36 StringRef GPU,
37 StringRef FS) {
38 SmallString<256> FullFS("+promote-alloca,");
39 FullFS += FS;
40 ParseSubtargetFeatures(GPU, /*TuneCPU*/ GPU, FullFS);
41
44
45 return *this;
46}
const char LLVMTargetMachineRef TM
Provides R600 specific target descriptions.
AMDGPU R600 specific subclass of TargetSubtarget.
unsigned AddressableLocalMemorySize
R600Subtarget(const Triple &TT, StringRef CPU, StringRef FS, const TargetMachine &TM)
bool hasCaymanISA() const
R600Subtarget & initializeSubtargetDependencies(const Triple &TT, StringRef GPU, StringRef FS)
Generation getGeneration() const
Definition: R600Subtarget.h:75
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition: SmallString.h:26
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Information about stack frame layout on the target.
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:76
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18