mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b3a8585bc1
`llc -march` is problematic because it only switches the target architecture, but leaves the operating system unchanged. This occasionally leads to indeterministic tests because the OS from LLVM_DEFAULT_TARGET_TRIPLE is used. However we can simply always use `llc -mtriple` instead. This changes all the tests to do this to avoid people using -march when they copy and paste parts of tests. This patch: - Removes -march if the .ll file already has a matching `target triple` directive or -mtriple argument. - In all other cases changes -march=ppc32/-march=ppc64 to -mtriple=ppc32--/-mtriple=ppc64-- See also the discussion in https://reviews.llvm.org/D35287 llvm-svn: 309754
55 lines
1.6 KiB
LLVM
55 lines
1.6 KiB
LLVM
; RUN: llc -mtriple=ppc64-- -ppc-always-use-base-pointer < %s | FileCheck %s --check-prefix CHECK --check-prefix PPC64
|
|
; RUN: llc -ppc-always-use-base-pointer < %s | FileCheck %s --check-prefix CHECK --check-prefix PPC32
|
|
; RUN: llc -ppc-always-use-base-pointer -relocation-model pic < %s | FileCheck %s --check-prefix CHECK --check-prefix PPC32PIC
|
|
|
|
; CHECK-LABEL: fred:
|
|
|
|
; Check for saving/restoring frame pointer (X31) and base pointer (X30)
|
|
; on ppc64:
|
|
; PPC64: std 31, -8(1)
|
|
; PPC64: std 30, -16(1)
|
|
; PPC64: ld 31, -8(1)
|
|
; PPC64: ld 30, -16(1)
|
|
|
|
; Check for saving/restoring frame pointer (R31) and base pointer (R30)
|
|
; on ppc32:
|
|
; PPC32: stwux 1, 1, 0
|
|
; PPC32; addic 0, 0, -4
|
|
; PPC32: stwx 31, 0, 0
|
|
; PPC32: addic 0, 0, -4
|
|
; PPC32: stwx 30, 0, 0
|
|
; The restore sequence:
|
|
; PPC32: lwz 31, 0(1)
|
|
; PPC32: addic 30, 0, 8
|
|
; PPC32: lwz 0, -4(31)
|
|
; PPC32: lwz 30, -8(31)
|
|
; PPC32: mr 1, 31
|
|
; PPC32: mr 31, 0
|
|
|
|
; Check for saving/restoring frame pointer (R31) and base pointer (R29)
|
|
; on ppc32/pic. This is mostly the same as without pic, except that base
|
|
; pointer is in R29.
|
|
; PPC32PIC: stwux 1, 1, 0
|
|
; PPC32PIC; addic 0, 0, -4
|
|
; PPC32PIC: stwx 31, 0, 0
|
|
; PPC32PIC: addic 0, 0, -8
|
|
; PPC32PIC: stwx 29, 0, 0
|
|
; The restore sequence:
|
|
; PPC32PIC: lwz 31, 0(1)
|
|
; PPC32PIC: addic 29, 0, 12
|
|
; PPC32PIC: lwz 0, -4(31)
|
|
; PPC32PIC: lwz 29, -12(31)
|
|
; PPC32PIC: mr 1, 31
|
|
; PPC32PIC: mr 31, 0
|
|
|
|
|
|
target datalayout = "E-m:e-p:32:32-i64:64-n32"
|
|
target triple = "powerpc-unknown-freebsd"
|
|
|
|
define i64 @fred() local_unnamed_addr #0 {
|
|
entry:
|
|
ret i64 0
|
|
}
|
|
|
|
attributes #0 = { norecurse readnone nounwind sspstrong "no-frame-pointer-elim"="true" "target-cpu"="ppc" }
|