mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-14 23:10:54 +00:00
76 lines
3.9 KiB
LLVM
76 lines
3.9 KiB
LLVM
; RUN: not opt -passes=verify < %s 2>&1 | FileCheck %s
|
|
|
|
define void @test_memcpy(ptr %P, ptr %Q, i32 %A, i32 %E) {
|
|
; CHECK: immarg operand has non-immediate parameter
|
|
; CHECK: i32 %E
|
|
; CHECK-NEXT: call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 1, i32 %E)
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 1, i32 %E)
|
|
|
|
; CHECK: element size of the element-wise atomic memory intrinsic must be a power of 2
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 1, i32 3)
|
|
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 7, i32 4)
|
|
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr %P, ptr align 4 %Q, i32 1, i32 1)
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 1 %P, ptr align 4 %Q, i32 4, i32 4)
|
|
|
|
; CHECK: incorrect alignment of the source argument
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr %Q, i32 1, i32 1)
|
|
; CHECK: incorrect alignment of the source argument
|
|
call void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 1 %Q, i32 4, i32 4)
|
|
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.memcpy.element.unordered.atomic.p0.p0.i32(ptr nocapture, ptr nocapture, i32, i32) nounwind
|
|
|
|
define void @test_memmove(ptr %P, ptr %Q, i32 %A, i32 %E) {
|
|
; CHECK: immarg operand has non-immediate parameter
|
|
; CHECK-NEXT: i32 %E
|
|
; CHECK-NEXT: call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 1, i32 %E)
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 1, i32 %E)
|
|
|
|
; CHECK: element size of the element-wise atomic memory intrinsic must be a power of 2
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 1, i32 3)
|
|
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 4 %Q, i32 7, i32 4)
|
|
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr %P, ptr align 4 %Q, i32 1, i32 1)
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 1 %P, ptr align 4 %Q, i32 4, i32 4)
|
|
|
|
; CHECK: incorrect alignment of the source argument
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr %Q, i32 1, i32 1)
|
|
; CHECK: incorrect alignment of the source argument
|
|
call void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr align 4 %P, ptr align 1 %Q, i32 4, i32 4)
|
|
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.memmove.element.unordered.atomic.p0.p0.i32(ptr nocapture, ptr nocapture, i32, i32) nounwind
|
|
|
|
define void @test_memset(ptr %P, i8 %V, i32 %A, i32 %E) {
|
|
; CHECK: immarg operand has non-immediate parameter
|
|
; CHECK: i32 %E
|
|
; CHECK: call void @llvm.memset.element.unordered.atomic.p0.i32(ptr align 4 %P, i8 %V, i32 1, i32 %E)
|
|
call void @llvm.memset.element.unordered.atomic.p0.i32(ptr align 4 %P, i8 %V, i32 1, i32 %E)
|
|
|
|
; CHECK: element size of the element-wise atomic memory intrinsic must be a power of 2
|
|
call void @llvm.memset.element.unordered.atomic.p0.i32(ptr align 4 %P, i8 %V, i32 1, i32 3)
|
|
|
|
call void @llvm.memset.element.unordered.atomic.p0.i32(ptr align 4 %P, i8 %V, i32 7, i32 4)
|
|
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memset.element.unordered.atomic.p0.i32(ptr %P, i8 %V, i32 1, i32 1)
|
|
; CHECK: incorrect alignment of the destination argument
|
|
call void @llvm.memset.element.unordered.atomic.p0.i32(ptr align 1 %P, i8 %V, i32 4, i32 4)
|
|
|
|
ret void
|
|
}
|
|
declare void @llvm.memset.element.unordered.atomic.p0.i32(ptr nocapture, i8, i32, i32) nounwind
|
|
|
|
; CHECK: input module is broken!
|