Summary: Made it convert from register to stack based instructions, and removed the registers. Fixes to related code that was expecting register based instructions. Added the correct testing flag to all tests, depending on what the format they were expecting so far. Translated one test to stack format as example: reg-stackify-stack.ll tested: llvm-lit -v `find test -name WebAssembly` unittests/MC/* Reviewers: dschuff, sunfish Subscribers: sbc100, jgravelle-google, eraman, aheejin, llvm-commits, jfb Differential Revision: https://reviews.llvm.org/D51241 llvm-svn: 340750
34 lines
797 B
LLVM
34 lines
797 B
LLVM
; RUN: llc < %s -O0 -wasm-keep-registers
|
|
; PR36564
|
|
; PR37546
|
|
|
|
; Test that fast-isel properly copes with i256 arguments and return types.
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
; CHECK-LABEL: add:
|
|
; CHECK-NEXT: .param i32, i64, i64, i64, i64, i64, i64, i64, i64{{$}}
|
|
; CHECK-NOT: .result
|
|
; CHECK: end_function
|
|
define i256 @add(i256 %x, i256 %y) {
|
|
%z = add i256 %x, %y
|
|
ret i256 %z
|
|
}
|
|
|
|
; CHECK-LABEL: return_zero:
|
|
; CHECK-NEXT: .param i32{{$}}
|
|
; CHECK-NOT: .result
|
|
; CHECK: end_function
|
|
define i256 @return_zero() {
|
|
ret i256 0
|
|
}
|
|
|
|
; CHECK-LABEL: return_zero_with_params:
|
|
; CHECK-NEXT: .param i32, f32{{$}}
|
|
; CHECK-NOT: .result
|
|
; CHECK: end_function
|
|
define i256 @return_zero_with_params(float %x) {
|
|
ret i256 0
|
|
}
|