From 961bb6f43026964004c0b811bd19fdf1735db5bc Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 16 Jul 2009 13:45:00 +0000 Subject: Add stores and truncstores git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75931 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/SystemZ/05-MemRegStores.ll | 67 +++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 test/CodeGen/SystemZ/05-MemRegStores.ll (limited to 'test') diff --git a/test/CodeGen/SystemZ/05-MemRegStores.ll b/test/CodeGen/SystemZ/05-MemRegStores.ll new file mode 100644 index 0000000000..1d86df80ca --- /dev/null +++ b/test/CodeGen/SystemZ/05-MemRegStores.ll @@ -0,0 +1,67 @@ +; RUN: llvm-as < %s | llc | not grep aghi +; RUN: llvm-as < %s | llc | grep stg | count 1 +; RUN: llvm-as < %s | llc | grep sty | count 2 +; RUN: llvm-as < %s | llc | grep sthy | count 2 +; RUN: llvm-as < %s | llc | grep stcy | count 2 + +target datalayout = "E-p:64:64:64-i1:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128" +target triple = "s390x-unknown-linux-gnu" + +define void @foo1(i64* nocapture %a, i64 %idx, i64 %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i64* %a, i64 %add.ptr.sum ; [#uses=1] + store i64 %val, i64* %add.ptr2 + ret void +} + +define void @foo2(i32* nocapture %a, i64 %idx, i32 %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i32* %a, i64 %add.ptr.sum ; [#uses=1] + store i32 %val, i32* %add.ptr2 + ret void +} + +define void @foo3(i16* nocapture %a, i64 %idx, i16 zeroext %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i16* %a, i64 %add.ptr.sum ; [#uses=1] + store i16 %val, i16* %add.ptr2 + ret void +} + +define void @foo4(i8* nocapture %a, i64 %idx, i8 zeroext %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i8* %a, i64 %add.ptr.sum ; [#uses=1] + store i8 %val, i8* %add.ptr2 + ret void +} + +define void @foo5(i8* nocapture %a, i64 %idx, i64 %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i8* %a, i64 %add.ptr.sum ; [#uses=1] + %conv = trunc i64 %val to i8 ; [#uses=1] + store i8 %conv, i8* %add.ptr2 + ret void +} + +define void @foo6(i16* nocapture %a, i64 %idx, i64 %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i16* %a, i64 %add.ptr.sum ; [#uses=1] + %conv = trunc i64 %val to i16 ; [#uses=1] + store i16 %conv, i16* %add.ptr2 + ret void +} + +define void @foo7(i32* nocapture %a, i64 %idx, i64 %val) nounwind { +entry: + %add.ptr.sum = add i64 %idx, 1 ; [#uses=1] + %add.ptr2 = getelementptr i32* %a, i64 %add.ptr.sum ; [#uses=1] + %conv = trunc i64 %val to i32 ; [#uses=1] + store i32 %conv, i32* %add.ptr2 + ret void +} -- cgit v1.2.3