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

Unified Diff: tests_lit/llvm2ice_tests/alloc.ll

Issue 2148593003: [Subzero][MIPS32] Implement post lower legalizer for MIPS32 (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addressed review comments Created 4 years, 5 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/IceTargetLoweringMIPS32.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/alloc.ll
diff --git a/tests_lit/llvm2ice_tests/alloc.ll b/tests_lit/llvm2ice_tests/alloc.ll
index 37f553333ecb7c8c4664586a283f69e1c475d52d..7c748f8416725abc670b7e35055dbc2ae8637d90 100644
--- a/tests_lit/llvm2ice_tests/alloc.ll
+++ b/tests_lit/llvm2ice_tests/alloc.ll
@@ -66,7 +66,12 @@ entry:
; MIPS32-LABEL: fixed_416_align_16
; MIPS32-OPT2: addiu sp,sp,-440
+; MIPS32-OPT2: addiu a0,sp,16
; MIPS32-OPTM1: addiu sp,sp,-448
+; MIPS32-OPTM1: addiu [[REG:.*]],sp,16
+; MIPS32-OPTM1: sw [[REG]],{{.*}}
+; MIPS32-OPTM1: lw a0,{{.*}}
+; MIPS32: jal {{.*}} R_{{.*}} f1
define internal void @fixed_416_align_32(i32 %n) {
entry:
@@ -92,7 +97,12 @@ entry:
; MIPS32-LABEL: fixed_416_align_32
; MIPS32-OPT2: addiu sp,sp,-440
+; MIPS32-OPT2: addiu a0,sp,16
; MIPS32-OPTM1: addiu sp,sp,-448
+; MIPS32-OPTM1: addiu [[REG:.*]],sp,16
+; MIPS32-OPTM1: sw [[REG]],{{.*}}
+; MIPS32-OPTM1: lw a0,{{.*}}
+; MIPS32: jal {{.*}} R_{{.*}} f1
; Show that the amount to allocate will be rounded up.
define internal void @fixed_351_align_16(i32 %n) {
@@ -121,7 +131,12 @@ entry:
; MIPS32-LABEL: fixed_351_align_16
; MIPS32-OPT2: addiu sp,sp,-376
+; MIPS32-OPT2: addiu a0,sp,16
; MIPS32-OPTM1: addiu sp,sp,-384
+; MIPS32-OPTM1: addiu [[REG:.*]],sp,16
+; MIPS32-OPTM1: sw [[REG]],{{.*}}
+; MIPS32-OPTM1: lw a0,{{.*}}
+; MIPS32: jal {{.*}} R_{{.*}} f1
define internal void @fixed_351_align_32(i32 %n) {
entry:
@@ -147,7 +162,12 @@ entry:
; MIPS32-LABEL: fixed_351_align_32
; MIPS32-OPT2: addiu sp,sp,-376
+; MIPS32-OPT2: addiu a0,sp,16
; MIPS32-OPTM1: addiu sp,sp,-384
+; MIPS32-OPTM1: addiu [[REG:.*]],sp,16
+; MIPS32-OPTM1: sw [[REG]],{{.*}}
+; MIPS32-OPTM1: lw a0,{{.*}}
+; MIPS32: jal {{.*}} R_{{.*}} f1
declare void @f1(i32 %ignored)
« src/IceTargetLoweringMIPS32.cpp ('K') | « src/IceTargetLoweringMIPS32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698