mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
e2177a8321
Summary: This makes it easier/cleaner to generate a single signature from this directive. Also: - Adds the symbol name, such that we don't depend on the location of this directive anymore. - Actually constructs the signature in the assembler, and make the assembler own it. - Refactor the use of MVT vs ValType in the streamer and assembler to require less conversions overall. - Changed 700 or so tests to use it. Reviewers: sbc100, dschuff Subscribers: jgravelle-google, eraman, aheejin, sunfish, jfb, llvm-commits Differential Revision: https://reviews.llvm.org/D54652 llvm-svn: 347228
63 lines
1.4 KiB
LLVM
63 lines
1.4 KiB
LLVM
; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -wasm-disable-explicit-locals -wasm-keep-registers | FileCheck %s
|
|
|
|
; Test that basic functions assemble as expected.
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
; CHECK-LABEL: f0:
|
|
; CHECK: return{{$}}
|
|
; CHECK: end_function{{$}}
|
|
; CHECK: .size f0,
|
|
define void @f0() {
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: f1:
|
|
; CHECK-NEXT: .functype f1 () -> (i32){{$}}
|
|
; CHECK-NEXT: i32.const $push[[NUM:[0-9]+]]=, 0{{$}}
|
|
; CHECK-NEXT: return $pop[[NUM]]{{$}}
|
|
; CHECK: .size f1,
|
|
define i32 @f1() {
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-LABEL: f2:
|
|
; CHECK-NEXT: .functype f2 (i32, f32) -> (i32){{$}}
|
|
; CHECK-NEXT: i32.const $push[[NUM:[0-9]+]]=, 0{{$}}
|
|
; CHECK-NEXT: return $pop[[NUM]]{{$}}
|
|
; CHECK: .size f2,
|
|
define i32 @f2(i32 %p1, float %p2) {
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-LABEL: f3:
|
|
; CHECK-NEXT: .functype f3 (i32, f32) -> (){{$}}
|
|
; CHECK-NOT: local
|
|
; CHECK-NEXT: return{{$}}
|
|
; CHECK: .size f3,
|
|
define void @f3(i32 %p1, float %p2) {
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: f4:
|
|
; CHECK-NEXT: .functype f4 (i32) -> (i32){{$}}
|
|
; CHECK-NOT: local
|
|
; CHECK: .size f4,
|
|
define i32 @f4(i32 %x) {
|
|
entry:
|
|
%c = trunc i32 %x to i1
|
|
br i1 %c, label %true, label %false
|
|
true:
|
|
ret i32 0
|
|
false:
|
|
ret i32 1
|
|
}
|
|
|
|
; CHECK-LABEL: f5:
|
|
; CHECK-NEXT: .functype f5 () -> (f32){{$}}
|
|
; CHECK-NEXT: unreachable
|
|
define float @f5() {
|
|
unreachable
|
|
}
|