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

Unified Diff: tests_lit/llvm2ice_tests/short-circuit.ll

Issue 2069923004: Short Circuit Evaluation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address style issues. Created 4 years, 6 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
« src/IceTargetLoweringX86BaseImpl.h ('K') | « src/IceTimerTree.def ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/short-circuit.ll
diff --git a/tests_lit/llvm2ice_tests/short-circuit.ll b/tests_lit/llvm2ice_tests/short-circuit.ll
new file mode 100644
index 0000000000000000000000000000000000000000..4c572098fae01df2bd30158e044099ee47b6b93a
--- /dev/null
+++ b/tests_lit/llvm2ice_tests/short-circuit.ll
@@ -0,0 +1,42 @@
+; Test on -enable-sc if basic blocks are split when short circuit evaluation
Jim Stichnoth 2016/06/27 22:41:59 remove trailing whitespace character
manasijm 2016/06/27 22:56:32 Done.
+; is possible for boolean expressions
+
+; REQUIRES: allow_dump
+
+; RUN: %p2i -i %s --filetype=asm --target x8632 --args \
+; RUN: -O2 -enable-sc | FileCheck %s --check-prefix=ENABLE \
+; RUN: --check-prefix=CHECK
+
+; RUN: %p2i -i %s --filetype=asm --target x8632 --args \
+; RUN: -O2 | FileCheck %s --check-prefix=NOENABLE \
+; RUN: --check-prefix=CHECK
+
+define internal i32 @short_circuit(i32 %arg1, i32 %arg2, i32 %arg3, i32 %arg4,
Jim Stichnoth 2016/06/27 22:41:59 remove trailing whitespace character
manasijm 2016/06/27 22:56:32 Done.
+ i32 %arg5) {
+ %t0 = trunc i32 %arg1 to i1
+ %t1 = trunc i32 %arg2 to i1
+ %t2 = trunc i32 %arg3 to i1
+ %t3 = trunc i32 %arg4 to i1
+ %t4 = trunc i32 %arg5 to i1
+
+ %t5 = or i1 %t0, %t1
+ %t6 = and i1 %t5, %t2
+ %t7 = and i1 %t3, %t4
+ %t8 = or i1 %t6, %t7
+
+ br i1 %t8, label %target_true, label %target_false
+
+target_true:
+ ret i32 1
+
+target_false:
+ ret i32 0
+}
+
+; CHECK-LABEL: short_circuit
+; NOENABLE: .Lshort_circuit$__0:
+; ENABLE: .Lshort_circuit$__0_1_1:
+; ENABLE: .Lshort_circuit$__0_1_2:
+; ENABLE: .Lshort_circuit$__0_2:
+; CHECK: .Lshort_circuit$target_true:
+; CHECK: .Lshort_circuit$target_false:
Jim Stichnoth 2016/06/27 22:41:59 make sure the last line ends with a newline charac
manasijm 2016/06/27 22:56:32 Done.
« src/IceTargetLoweringX86BaseImpl.h ('K') | « src/IceTimerTree.def ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698