[PATCH] D100941: Implementation for `TargetTransformInfo::hasActiveVectorLength()`
Roger Ferrer Ibanez via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 26 14:20:38 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG84d16e205507: Implementation for TargetTransformInfo::hasActiveVectorLength() (authored by vkmr, committed by rogfer01).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100941/new/
https://reviews.llvm.org/D100941
Files:
llvm/lib/Analysis/TargetTransformInfo.cpp
Index: llvm/lib/Analysis/TargetTransformInfo.cpp
===================================================================
--- llvm/lib/Analysis/TargetTransformInfo.cpp
+++ llvm/lib/Analysis/TargetTransformInfo.cpp
@@ -1038,6 +1038,10 @@
return TTIImpl->supportsScalableVectors();
}
+bool TargetTransformInfo::hasActiveVectorLength() const {
+ return TTIImpl->hasActiveVectorLength();
+}
+
InstructionCost
TargetTransformInfo::getInstructionLatency(const Instruction *I) const {
return TTIImpl->getInstructionLatency(I);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100941.340648.patch
Type: text/x-patch
Size: 527 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210426/8d329a1a/attachment.bin>
More information about the llvm-commits
mailing list