1 //===- VETargetTransformInfo.h - VE specific TTI ------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 /// This file a TargetTransformInfo::Concept conforming object specific to the
10 /// VE 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.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_LIB_TARGET_VE_VETARGETTRANSFORMINFO_H
17 #define LLVM_LIB_TARGET_VE_VETARGETTRANSFORMINFO_H
20 #include "VETargetMachine.h"
21 #include "llvm/Analysis/TargetTransformInfo.h"
22 #include "llvm/CodeGen/BasicTTIImpl.h"
26 class VETTIImpl
: public BasicTTIImplBase
<VETTIImpl
> {
27 using BaseT
= BasicTTIImplBase
<VETTIImpl
>;
30 const VESubtarget
*ST
;
31 const VETargetLowering
*TLI
;
33 const VESubtarget
*getST() const { return ST
; }
34 const VETargetLowering
*getTLI() const { return TLI
; }
36 bool enableVPU() const { return getST()->enableVPU(); }
39 explicit VETTIImpl(const VETargetMachine
*TM
, const Function
&F
)
40 : BaseT(TM
, F
.getParent()->getDataLayout()), ST(TM
->getSubtargetImpl(F
)),
41 TLI(ST
->getTargetLowering()) {}
43 unsigned getNumberOfRegisters(unsigned ClassID
) const {
44 bool VectorRegs
= (ClassID
== 1);
46 // TODO report vregs once vector isel is stable.
53 TypeSize
getRegisterBitWidth(TargetTransformInfo::RegisterKind K
) const {
55 case TargetTransformInfo::RGK_Scalar
:
56 return TypeSize::getFixed(64);
57 case TargetTransformInfo::RGK_FixedWidthVector
:
58 // TODO report vregs once vector isel is stable.
59 return TypeSize::getFixed(0);
60 case TargetTransformInfo::RGK_ScalableVector
:
61 return TypeSize::getScalable(0);
64 llvm_unreachable("Unsupported register kind");
67 /// \returns How the target needs this vector-predicated operation to be
69 TargetTransformInfo::VPLegalization
70 getVPLegalizationStrategy(const VPIntrinsic
&PI
) const {
71 using VPLegalization
= TargetTransformInfo::VPLegalization
;
72 return VPLegalization(VPLegalization::Legal
, VPLegalization::Legal
);
75 unsigned getMinVectorRegisterBitWidth() const {
76 // TODO report vregs once vector isel is stable.
80 bool shouldBuildRelLookupTables() const {
81 // NEC nld doesn't support relative lookup tables. It shows following
82 // errors. So, we disable it at the moment.
83 // /opt/nec/ve/bin/nld: src/CMakeFiles/cxxabi_shared.dir/cxa_demangle.cpp
84 // .o(.rodata+0x17b4): reloc against `.L.str.376': error 2
85 // /opt/nec/ve/bin/nld: final link failed: Nonrepresentable section on
93 #endif // LLVM_LIB_TARGET_VE_VETARGETTRANSFORMINFO_H