1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/CodeGen/M68k/CodeModel/medium-pie.ll
Min-Yih Hsu 33b1222ec6 [M68k][test](6/8) Add all of the tests
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
2021-03-08 12:30:57 -08:00

67 lines
1.5 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -O0 -mtriple=m68k-linux-gnu -verify-machineinstrs \
; RUN: -code-model=medium -relocation-model=pic \
; RUN: | FileCheck %s
define weak void @weak_foo() {
; CHECK-LABEL: weak_foo:
; CHECK: .cfi_startproc
; CHECK-NEXT: ; %bb.0:
; CHECK-NEXT: rts
ret void
}
define weak_odr void @weak_odr_foo() {
; CHECK-LABEL: weak_odr_foo:
; CHECK: .cfi_startproc
; CHECK-NEXT: ; %bb.0:
; CHECK-NEXT: rts
ret void
}
define internal void @internal_foo() {
; CHECK-LABEL: internal_foo:
; CHECK: .cfi_startproc
; CHECK-NEXT: ; %bb.0:
; CHECK-NEXT: rts
ret void
}
declare i32 @ext_baz()
define void @foo() {
; CHECK-LABEL: foo:
; CHECK: .cfi_startproc
; CHECK-NEXT: ; %bb.0:
; CHECK-NEXT: rts
ret void
}
define void @bar() {
; CHECK-LABEL: bar:
; CHECK: .cfi_startproc
; CHECK-NEXT: ; %bb.0: ; %entry
; CHECK-NEXT: sub.l #4, %sp
; CHECK-NEXT: .cfi_def_cfa_offset -8
; CHECK-NEXT: jsr (foo@PLT,%pc)
; CHECK-NEXT: jsr (weak_odr_foo@PLT,%pc)
; CHECK-NEXT: jsr (weak_foo@PLT,%pc)
; CHECK-NEXT: jsr (internal_foo,%pc)
; CHECK-NEXT: jsr (ext_baz@PLT,%pc)
; CHECK-NEXT: add.l #4, %sp
; CHECK-NEXT: rts
entry:
call void @foo()
call void @weak_odr_foo()
call void @weak_foo()
call void @internal_foo()
call i32 @ext_baz()
ret void
}
; -fpie for local global data tests should be added here
!llvm.module.flags = !{!0, !1}
!0 = !{i32 1, !"PIC Level", i32 1}
!1 = !{i32 1, !"PIE Level", i32 1}