[llvm] b76bbcc - Verifier: Check bswap is supported size
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 22 09:15:34 PDT 2020
Author: Matt Arsenault
Date: 2020-03-22T12:15:25-04:00
New Revision: b76bbcc60db6cd7d42bf46f2fcdc6784250554d7
URL: https://github.com/llvm/llvm-project/commit/b76bbcc60db6cd7d42bf46f2fcdc6784250554d7
DIFF: https://github.com/llvm/llvm-project/commit/b76bbcc60db6cd7d42bf46f2fcdc6784250554d7.diff
LOG: Verifier: Check bswap is supported size
Make sure it is a multiple of 2 bytes as specified in the LangRef.
Added:
llvm/test/Verifier/bswap.ll
Modified:
llvm/lib/IR/Verifier.cpp
Removed:
################################################################################
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp
index 68c920d4e54f..c8871a1f3e64 100644
--- a/llvm/lib/IR/Verifier.cpp
+++ b/llvm/lib/IR/Verifier.cpp
@@ -4783,6 +4783,12 @@ void Verifier::visitIntrinsicCall(Intrinsic::ID ID, CallBase &Call) {
"Intrinsic does not support vectors", &Call);
break;
}
+ case Intrinsic::bswap: {
+ Type *Ty = Call.getType();
+ unsigned Size = Ty->getScalarSizeInBits();
+ Assert(Size % 16 == 0, "bswap must be an even number of bytes", &Call);
+ break;
+ }
};
}
diff --git a/llvm/test/Verifier/bswap.ll b/llvm/test/Verifier/bswap.ll
new file mode 100644
index 000000000000..ad37e79061d5
--- /dev/null
+++ b/llvm/test/Verifier/bswap.ll
@@ -0,0 +1,53 @@
+; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
+; Check handling of bswap with unsupported sizes.
+
+declare i8 @llvm.bswap.i8(i8)
+declare <2 x i8> @llvm.bswap.v2i8(<2 x i8>)
+
+declare i12 @llvm.bswap.i12(i12)
+declare <2 x i12> @llvm.bswap.v2i12(<2 x i12>)
+
+declare i18 @llvm.bswap.i18(i18)
+declare <2 x i18> @llvm.bswap.v2i18(<2 x i18>)
+
+define i8 @bswap_i8(i8 %arg) {
+; CHECK: bswap must be an even number of bytes
+; CHECK-NEXT: %res = call i8 @llvm.bswap.i8(i8 %arg)
+ %res = call i8 @llvm.bswap.i8(i8 %arg)
+ ret i8 %res
+}
+
+define <2 x i8> @bswap_v2i8(<2 x i8> %arg) {
+; CHECK: bswap must be an even number of bytes
+; CHECK-NEXT: %res = call <2 x i8> @llvm.bswap.v2i8(<2 x i8> %arg)
+ %res = call <2 x i8> @llvm.bswap.v2i8(<2 x i8> %arg)
+ ret <2 x i8> %res
+}
+
+define i12 @bswap_i12(i12 %arg) {
+; CHECK: bswap must be an even number of bytes
+; CHECK-NEXT: %res = call i12 @llvm.bswap.i12(i12 %arg)
+ %res = call i12 @llvm.bswap.i12(i12 %arg)
+ ret i12 %res
+}
+
+define <2 x i12> @bswap_v2i12(<2 x i12> %arg) {
+; CHECK: bswap must be an even number of bytes
+; CHECK-NEXT: %res = call <2 x i12> @llvm.bswap.v2i12(<2 x i12> %arg)
+ %res = call <2 x i12> @llvm.bswap.v2i12(<2 x i12> %arg)
+ ret <2 x i12> %res
+}
+
+define i18 @bswap_i18(i18 %arg) {
+; CHECK: bswap must be an even number of bytes
+; CHECK-NEXT: %res = call i18 @llvm.bswap.i18(i18 %arg)
+ %res = call i18 @llvm.bswap.i18(i18 %arg)
+ ret i18 %res
+}
+
+define <2 x i18> @bswap_v2i18(<2 x i18> %arg) {
+; CHECK: bswap must be an even number of bytes
+; CHECK-NEXT: %res = call <2 x i18> @llvm.bswap.v2i18(<2 x i18> %arg)
+ %res = call <2 x i18> @llvm.bswap.v2i18(<2 x i18> %arg)
+ ret <2 x i18> %res
+}
More information about the llvm-commits
mailing list