LLVM 19.0.0git
R600TargetMachine.h
Go to the documentation of this file.
1//===-- R600TargetMachine.h - AMDGPU TargetMachine Interface ----*- C++ -*-===//
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/// The AMDGPU TargetMachine interface definition for hw codegen targets.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_AMDGPU_R600TARGETMACHINE_H
15#define LLVM_LIB_TARGET_AMDGPU_R600TARGETMACHINE_H
16
17#include "AMDGPUTargetMachine.h"
18#include "R600Subtarget.h"
20#include <optional>
21
22namespace llvm {
23
24//===----------------------------------------------------------------------===//
25// R600 Target Machine (R600 -> Cayman)
26//===----------------------------------------------------------------------===//
27
29private:
30 mutable StringMap<std::unique_ptr<R600Subtarget>> SubtargetMap;
31
32public:
33 R600TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
35 std::optional<Reloc::Model> RM,
36 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
37 bool JIT);
38
40
41 const TargetSubtargetInfo *getSubtargetImpl(const Function &) const override;
42
44
45 bool isMachineVerifierClean() const override { return false; }
46
49 const TargetSubtargetInfo *STI) const override;
50};
51
52} // end namespace llvm
53
54#endif // LLVM_LIB_TARGET_AMDGPU_R600TARGETMACHINE_H
The AMDGPU TargetMachine interface definition for hw codegen targets.
#define F(x, y, z)
Definition: MD5.cpp:55
AMDGPU R600 specific subclass of TargetSubtarget.
Basic Register Allocator
const TargetSubtargetInfo * getSubtargetImpl() const
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
bool isMachineVerifierClean() const override
Returns true if the target is expected to pass all machine verifier checks.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:127
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
Target-Independent Code Generator Pass Configuration Options.
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...