Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Unified Diff: tests_lit/llvm2ice_tests/struct-arith.pnacl.ll

Issue 205613002: Initial skeleton of Subzero. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Use non-anonymous structs so that array_lengthof works Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests_lit/llvm2ice_tests/store.ll ('k') | tests_lit/llvm2ice_tests/switch-opt.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/struct-arith.pnacl.ll
diff --git a/tests_lit/llvm2ice_tests/struct-arith.pnacl.ll b/tests_lit/llvm2ice_tests/struct-arith.pnacl.ll
new file mode 100644
index 0000000000000000000000000000000000000000..de68416c61ccec35cf2b6a53edc91b009edae9fd
--- /dev/null
+++ b/tests_lit/llvm2ice_tests/struct-arith.pnacl.ll
@@ -0,0 +1,55 @@
+; RUIN: %llvm2ice -verbose inst %s | FileCheck %s
+; RUIN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s
+; RUN: %szdiff --llvm2ice=%llvm2ice %s | FileCheck --check-prefix=DUMP %s
+
+; This file is lowered from C code that does some simple aritmetic with
+; struct members. It's also built with the PNaCl toolchain so this is the
+; stable ABI subset of LLVM IR (structs are gone, pointers turned into i32,
+; geps gone, etc.)
+
+define internal i32 @compute_important_function(i32 %v1, i32 %v2) {
+entry:
+ %v1.asptr = inttoptr i32 %v1 to i32*
+ %_v0 = load i32* %v1.asptr, align 1
+
+; CHECK: entry:
+; CHECK-NEXT: %v1.asptr = i32 %v1
+; CHECK-NEXT: %_v0 = load i32* {{.*}}, align 1
+
+ %v2.asptr = inttoptr i32 %v2 to i32*
+ %_v1 = load i32* %v2.asptr, align 1
+ %gep = add i32 %v2, 12
+ %gep.asptr = inttoptr i32 %gep to i32*
+ %_v2 = load i32* %gep.asptr, align 1
+ %mul = mul i32 %_v2, %_v1
+ %gep6 = add i32 %v1, 4
+ %gep6.asptr = inttoptr i32 %gep6 to i32*
+ %_v3 = load i32* %gep6.asptr, align 1
+ %gep8 = add i32 %v2, 8
+ %gep8.asptr = inttoptr i32 %gep8 to i32*
+ %_v4 = load i32* %gep8.asptr, align 1
+ %gep10 = add i32 %v2, 4
+ %gep10.asptr = inttoptr i32 %gep10 to i32*
+ %_v5 = load i32* %gep10.asptr, align 1
+ %mul3 = mul i32 %_v5, %_v4
+ %gep12 = add i32 %v1, 8
+ %gep12.asptr = inttoptr i32 %gep12 to i32*
+ %_v6 = load i32* %gep12.asptr, align 1
+ %mul7 = mul i32 %_v6, %_v3
+ %mul9 = mul i32 %mul7, %_v6
+ %gep14 = add i32 %v1, 12
+ %gep14.asptr = inttoptr i32 %gep14 to i32*
+ %_v7 = load i32* %gep14.asptr, align 1
+ %mul11 = mul i32 %mul9, %_v7
+ %add4.neg = add i32 %mul, %_v0
+ %add = sub i32 %add4.neg, %_v3
+ %sub = sub i32 %add, %mul3
+ %sub12 = sub i32 %sub, %mul11
+ ret i32 %sub12
+
+; CHECK: %sub12 = sub i32 %sub, %mul11
+; CHECK-NEXT: ret i32 %sub12
+}
+
+; ERRORS-NOT: ICE translation error
+; DUMP-NOT: SZ
« no previous file with comments | « tests_lit/llvm2ice_tests/store.ll ('k') | tests_lit/llvm2ice_tests/switch-opt.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698