[PATCH] D137266: [RISCV] Move RVVBitsPerBlock to TargetParser.h so we can use it in clang. NFC
Craig Topper via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 2 13:09:33 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6254495c6b4f: [RISCV] Move RVVBitsPerBlock to TargetParser.h so we can use it in clang. NFC (authored by craig.topper).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137266/new/
https://reviews.llvm.org/D137266
Files:
clang/lib/Basic/Targets/RISCV.cpp
llvm/include/llvm/Support/TargetParser.h
llvm/lib/Target/RISCV/RISCVISelLowering.h
Index: llvm/lib/Target/RISCV/RISCVISelLowering.h
===================================================================
--- llvm/lib/Target/RISCV/RISCVISelLowering.h
+++ llvm/lib/Target/RISCV/RISCVISelLowering.h
@@ -18,6 +18,7 @@
#include "llvm/CodeGen/CallingConvLower.h"
#include "llvm/CodeGen/SelectionDAG.h"
#include "llvm/CodeGen/TargetLowering.h"
+#include "llvm/Support/TargetParser.h"
namespace llvm {
class RISCVSubtarget;
@@ -325,11 +326,6 @@
};
} // namespace RISCVISD
-namespace RISCV {
-// We use 64 bits as the known part in the scalable vector types.
-static constexpr unsigned RVVBitsPerBlock = 64;
-} // namespace RISCV
-
class RISCVTargetLowering : public TargetLowering {
const RISCVSubtarget &Subtarget;
Index: llvm/include/llvm/Support/TargetParser.h
===================================================================
--- llvm/include/llvm/Support/TargetParser.h
+++ llvm/include/llvm/Support/TargetParser.h
@@ -157,6 +157,9 @@
namespace RISCV {
+// We use 64 bits as the known part in the scalable vector types.
+static constexpr unsigned RVVBitsPerBlock = 64;
+
enum CPUKind : unsigned {
#define PROC(ENUM, NAME, FEATURES, DEFAULT_MARCH) CK_##ENUM,
#define TUNE_PROC(ENUM, NAME) CK_##ENUM,
Index: clang/lib/Basic/Targets/RISCV.cpp
===================================================================
--- clang/lib/Basic/Targets/RISCV.cpp
+++ clang/lib/Basic/Targets/RISCV.cpp
@@ -255,7 +255,8 @@
if (unsigned MinVLen = ISAInfo->getMinVLen()) {
unsigned MaxVLen = ISAInfo->getMaxVLen();
// RISCV::RVVBitsPerBlock is 64.
- return std::pair<unsigned, unsigned>(MinVLen/64, MaxVLen/64);
+ return std::make_pair(MinVLen / llvm::RISCV::RVVBitsPerBlock,
+ MaxVLen / llvm::RISCV::RVVBitsPerBlock);
}
return None;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D137266.472735.patch
Type: text/x-patch
Size: 1802 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221102/e5d05710/attachment.bin>
More information about the cfe-commits
mailing list