LLVM 22.0.0git
SPIRVTargetTransformInfo.h
Go to the documentation of this file.
1//===- SPIRVTargetTransformInfo.h - SPIR-V specific TTI ---------*- 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// \file
9// This file contains a TargetTransformInfoImplBase conforming object specific
10// to the SPIRV target machine. It uses the target's detailed information to
11// provide more precise answers to certain TTI queries, while letting the
12// target independent and default TTI implementations handle the rest.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_LIB_TARGET_SPIRV_SPIRVTARGETTRANSFORMINFO_H
17#define LLVM_LIB_TARGET_SPIRV_SPIRVTARGETTRANSFORMINFO_H
18
19#include "SPIRV.h"
20#include "SPIRVTargetMachine.h"
23
24namespace llvm {
25class SPIRVTTIImpl final : public BasicTTIImplBase<SPIRVTTIImpl> {
27 using TTI = TargetTransformInfo;
28
29 friend BaseT;
30
31 const SPIRVSubtarget *ST;
32 const SPIRVTargetLowering *TLI;
33
34 const TargetSubtargetInfo *getST() const { return ST; }
35 const SPIRVTargetLowering *getTLI() const { return TLI; }
36
37public:
38 explicit SPIRVTTIImpl(const SPIRVTargetMachine *TM, const Function &F)
39 : BaseT(TM, F.getDataLayout()), ST(TM->getSubtargetImpl(F)),
40 TLI(ST->getTargetLowering()) {}
41
42 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth) const override {
43 // SPIR-V natively supports OpBitcount, per 3.53.14 in the spec, as such it
44 // is reasonable to assume the Op is fast / preferable to the expanded loop.
45 // Furthermore, this prevents information being lost if transforms are
46 // applied to SPIR-V before lowering to a concrete target.
47 if (!isPowerOf2_32(TyWidth) || TyWidth > 64)
48 return TTI::PSK_Software; // Arbitrary bit-width INT is not core SPIR-V.
50 }
51
52 unsigned getFlatAddressSpace() const override {
53 // Clang has 2 distinct address space maps. One where
54 // default=4=Generic, and one with default=0=Function. This depends on the
55 // environment.
56 return ST->isShader() ? 0 : 4;
57 }
59 Intrinsic::ID IID) const override;
61 Value *NewV) const override;
62
63 bool allowVectorElementIndexingUsingGEP() const override { return false; }
64};
65
66} // namespace llvm
67
68#endif // LLVM_LIB_TARGET_SPIRV_SPIRVTARGETTRANSFORMINFO_H
This file provides a helper that implements much of the TTI interface in terms of the target-independ...
#define F(x, y, z)
Definition MD5.cpp:55
uint64_t IntrinsicInst * II
This pass exposes codegen information to IR-level passes.
BasicTTIImplBase(const TargetMachine *TM, const DataLayout &DL)
A wrapper class for inspecting calls to intrinsic functions.
Value * rewriteIntrinsicWithAddressSpace(IntrinsicInst *II, Value *OldV, Value *NewV) const override
TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth) const override
bool collectFlatAddressOperands(SmallVectorImpl< int > &OpIndexes, Intrinsic::ID IID) const override
SPIRVTTIImpl(const SPIRVTargetMachine *TM, const Function &F)
unsigned getFlatAddressSpace() const override
bool allowVectorElementIndexingUsingGEP() const override
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
TargetSubtargetInfo - Generic base class for all target subtargets.
virtual const DataLayout & getDataLayout() const
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
PopcntSupportKind
Flags indicating the kind of support for population count.
LLVM Value Representation.
Definition Value.h:75
This is an optimization pass for GlobalISel generic memory operations.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition MathExtras.h:288