mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
33b1222ec6
And a small utilities -- extract-section.py -- that helps extracting specific object file section and printing in textual format. This utility is just a workaround for tests inside `Encoding`. Hopefully in the future we can replace dependencies in those tests with existing tools (e.g. llvm-readobj). Please refer to this bug for more context: https://bugs.llvm.org/show_bug.cgi?id=49245 Note that since we don't have AsmParser for now, we are testing the MC part using MIR as input and put those tests under the `Encoding` folder. In the future when AsmParser (and disassembler) is finished, those tests will be moved to `test/MC/M68k`. Authors: myhsu, m4yers, glaubitz Differential Revision: https://reviews.llvm.org/D88392
42 lines
1.2 KiB
LLVM
42 lines
1.2 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=m68k-linux -verify-machineinstrs | FileCheck %s
|
|
|
|
%struct.va_list = type { i8* }
|
|
|
|
; CHECK-LABEL test:
|
|
define i32 @test(i32 %X, ...) {
|
|
; Initialize variable argument processing
|
|
; CHECK-LABEL: test:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK-NEXT: ; %bb.0:
|
|
; CHECK-NEXT: sub.l #8, %sp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset -12
|
|
; CHECK-NEXT: lea (16,%sp), %a0
|
|
; CHECK-NEXT: add.l #4, %a0
|
|
; CHECK-NEXT: move.l %a0, (4,%sp)
|
|
; CHECK-NEXT: move.l %a0, (0,%sp)
|
|
; CHECK-NEXT: move.l (16,%sp), %d0
|
|
; CHECK-NEXT: add.l #8, %sp
|
|
; CHECK-NEXT: rts
|
|
%ap = alloca %struct.va_list
|
|
%ap2 = bitcast %struct.va_list* %ap to i8*
|
|
call void @llvm.va_start(i8* %ap2)
|
|
|
|
; Read a single integer argument
|
|
%tmp = va_arg i8* %ap2, i32
|
|
|
|
; Demonstrate usage of llvm.va_copy and llvm.va_end
|
|
%aq = alloca i8*
|
|
%aq2 = bitcast i8** %aq to i8*
|
|
call void @llvm.va_copy(i8* %aq2, i8* %ap2)
|
|
call void @llvm.va_end(i8* %aq2)
|
|
|
|
; Stop processing of arguments.
|
|
call void @llvm.va_end(i8* %ap2)
|
|
ret i32 %tmp
|
|
}
|
|
|
|
declare void @llvm.va_start(i8*)
|
|
declare void @llvm.va_copy(i8*, i8*)
|
|
declare void @llvm.va_end(i8*)
|