mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
2edbc2aed2
This distinguishes input operands from output operands. This is something of a syntactic experiment to see whether the mild amount of clutter this adds is outweighed by the extra information it conveys to the reader. llvm-svn: 253922
29 lines
784 B
LLVM
29 lines
784 B
LLVM
; RUN: llc < %s -asm-verbose=false | FileCheck %s
|
|
|
|
; Test that basic memory operations assemble as expected with 64-bit addresses.
|
|
|
|
target datalayout = "e-p:64:64-i64:64-n32:64-S128"
|
|
target triple = "wasm64-unknown-unknown"
|
|
|
|
declare i64 @llvm.wasm.memory.size.i64() nounwind readonly
|
|
declare void @llvm.wasm.grow.memory.i64(i64) nounwind
|
|
|
|
; CHECK-LABEL: memory_size:
|
|
; CHECK-NEXT: .result i64{{$}}
|
|
; CHECK-NEXT: .local i64{{$}}
|
|
; CHECK-NEXT: memory_size $0={{$}}
|
|
; CHECK-NEXT: return $0{{$}}
|
|
define i64 @memory_size() {
|
|
%a = call i64 @llvm.wasm.memory.size.i64()
|
|
ret i64 %a
|
|
}
|
|
|
|
; CHECK-LABEL: grow_memory:
|
|
; CHECK-NEXT: .param i64
|
|
; CHECK: grow_memory $0{{$}}
|
|
; CHECK-NEXT: return{{$}}
|
|
define void @grow_memory(i64 %n) {
|
|
call void @llvm.wasm.grow.memory.i64(i64 %n)
|
|
ret void
|
|
}
|