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

Unified Diff: tests_lit/llvm2ice_tests/uncond_br.ll

Issue 1724643002: Subzero: Basic unconditional branch for Mips. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 10 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/IceInstMIPS32.cpp ('K') | « src/IceTargetLoweringMIPS32.cpp ('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/uncond_br.ll
diff --git a/tests_lit/llvm2ice_tests/uncond_br.ll b/tests_lit/llvm2ice_tests/uncond_br.ll
new file mode 100644
index 0000000000000000000000000000000000000000..c3c24831e54f93c0af8a024d32a4bf28e43b43a1
--- /dev/null
+++ b/tests_lit/llvm2ice_tests/uncond_br.ll
@@ -0,0 +1,41 @@
+; TODO(rkotler): Stop skipping unimplemented parts (via --skip-unimplemented)
+; once enough infrastructure is in. Also, switch to --filetype=obj
+; when possible.
+; RUN: %if --need=target_MIPS32 --need=allow_dump \
+; RUN: --command %p2i --filetype=asm --assemble \
+; RUN: --disassemble --target mips32 -i %s --args -O2 --skip-unimplemented \
+; RUN: -allow-externally-defined-symbols \
+; RUN: | %if --need=target_MIPS32 --need=allow_dump \
+; RUN: --command FileCheck --check-prefix MIPS32 %s
+
+define internal void @uncond1(i32 %i) {
+ %1 = alloca i8, i32 4, align 4
+ %.bc = bitcast i8* %1 to i32*
+ store i32 %i, i32* %.bc, align 1
+ br label %2
+; <label>:2 ; preds = %2, %0
Jim Stichnoth 2016/02/23 06:18:51 I know this was basically auto-generated, but it w
rkotlerimgtec 2016/02/23 23:17:20 Done.
+ %.bc1 = bitcast i8* %1 to i32*
+ %3 = load i32, i32* %.bc1, align 1
+ %4 = add i32 %3, 1
+ %.bc2 = bitcast i8* %1 to i32*
+ store i32 %4, i32* %.bc2, align 1
+ br label %2
+}
+
+; MIPS32-LABEL: uncond1
+; MIPS32: b 8 <.Luncond1$__1>
Jim Stichnoth 2016/02/23 06:18:51 Does the "8" refer to a byte offset within the fun
rkotlerimgtec 2016/02/23 23:17:20 i'm not exactly sure what the 8 means. it's someth
+; MIPS32: <.Luncond1$__1>:
+; MIPS32: li
+; MIPS32: addu
+; MIPS32: b 8 <.Luncond1$__1>
+
Jim Stichnoth 2016/02/23 06:18:51 Just remove the rest of this.
rkotlerimgtec 2016/02/23 23:17:20 Done.
+define internal i32 @nacl_tp_tdb_offset(i32) {
+entry:
+ ret i32 0
+}
+
+define internal i32 @nacl_tp_tls_offset(i32 %size) {
+entry:
+ %result = sub i32 0, %size
+ ret i32 %result
+}
« src/IceInstMIPS32.cpp ('K') | « src/IceTargetLoweringMIPS32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698