mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +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
94 lines
3.0 KiB
LLVM
94 lines
3.0 KiB
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- -fp-contract=fast -mattr=-vsx -disable-ppc-vsx-fma-mutation=false | FileCheck %s
|
|
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -fp-contract=fast -mattr=+vsx -mcpu=pwr7 -disable-ppc-vsx-fma-mutation=false | FileCheck -check-prefix=CHECK-VSX %s
|
|
|
|
define double @test_FMADD_EXT1(float %A, float %B, double %C) {
|
|
%D = fmul float %A, %B ; <float> [#uses=1]
|
|
%E = fpext float %D to double ; <double> [#uses=1]
|
|
%F = fadd double %E, %C ; <double> [#uses=1]
|
|
ret double %F
|
|
; CHECK-LABEL: test_FMADD_EXT1:
|
|
; CHECK: fmadd
|
|
; CHECK-NEXT: blr
|
|
|
|
; CHECK-VSX-LABEL: test_FMADD_EXT1:
|
|
; CHECK-VSX: xsmaddmdp
|
|
; CHECK-VSX-NEXT: blr
|
|
}
|
|
|
|
define double @test_FMADD_EXT2(float %A, float %B, double %C) {
|
|
%D = fmul float %A, %B ; <float> [#uses=1]
|
|
%E = fpext float %D to double ; <double> [#uses=1]
|
|
%F = fadd double %C, %E ; <double> [#uses=1]
|
|
ret double %F
|
|
; CHECK-LABEL: test_FMADD_EXT2:
|
|
; CHECK: fmadd
|
|
; CHECK-NEXT: blr
|
|
|
|
; CHECK-VSX-LABEL: test_FMADD_EXT2:
|
|
; CHECK-VSX: xsmaddmdp
|
|
; CHECK-VSX-NEXT: blr
|
|
}
|
|
|
|
define double @test_FMSUB_EXT1(float %A, float %B, double %C) {
|
|
%D = fmul float %A, %B ; <float> [#uses=1]
|
|
%E = fpext float %D to double ; <double> [#uses=1]
|
|
%F = fsub double %E, %C ; <double> [#uses=1]
|
|
ret double %F
|
|
; CHECK-LABEL: test_FMSUB_EXT1:
|
|
; CHECK: fmsub
|
|
; CHECK-NEXT: blr
|
|
|
|
; CHECK-VSX-LABEL: test_FMSUB_EXT1:
|
|
; CHECK-VSX: xsmsubmdp
|
|
; CHECK-VSX-NEXT: blr
|
|
}
|
|
|
|
define double @test_FMSUB_EXT2(float %A, float %B, double %C) {
|
|
%D = fmul float %A, %B ; <float> [#uses=1]
|
|
%E = fpext float %D to double ; <double> [#uses=1]
|
|
%F = fsub double %C, %E ; <double> [#uses=1]
|
|
ret double %F
|
|
; CHECK-LABEL: test_FMSUB_EXT2:
|
|
; CHECK: fnmsub
|
|
; CHECK-NEXT: blr
|
|
|
|
; CHECK-VSX-LABEL: test_FMSUB_EXT2:
|
|
; CHECK-VSX: xsnmsubmdp
|
|
; CHECK-VSX-NEXT: fmr
|
|
; CHECK-VSX-NEXT: blr
|
|
}
|
|
|
|
define double @test_FMSUB_EXT3(float %A, float %B, double %C) {
|
|
%D = fmul float %A, %B ; <float> [#uses=1]
|
|
%E = fsub float -0.000000e+00, %D ; <float> [#uses=1]
|
|
%F = fpext float %E to double ; <double> [#uses=1]
|
|
%G = fsub double %F, %C ; <double> [#uses=1]
|
|
ret double %G
|
|
; CHECK-LABEL: test_FMSUB_EXT3:
|
|
; CHECK: fnmadd
|
|
|
|
; CHECK-NEXT: blr
|
|
|
|
; CHECK-VSX-LABEL: test_FMSUB_EXT3:
|
|
; CHECK-VSX: xsnmaddmdp
|
|
|
|
; CHECK-VSX-NEXT: blr
|
|
}
|
|
|
|
define double @test_FMSUB_EXT4(float %A, float %B, double %C) {
|
|
%D = fmul float %A, %B ; <float> [#uses=1]
|
|
%E = fpext float %D to double ; <double> [#uses=1]
|
|
%F = fsub double -0.000000e+00, %E ; <double> [#uses=1]
|
|
%G = fsub double %F, %C ; <double> [#uses=1]
|
|
ret double %G
|
|
; CHECK-LABEL: test_FMSUB_EXT4:
|
|
; CHECK: fnmadd
|
|
|
|
; CHECK-NEXT: blr
|
|
|
|
; CHECK-VSX-LABEL: test_FMSUB_EXT4:
|
|
; CHECK-VSX: xsnmaddmdp
|
|
|
|
; CHECK-VSX-NEXT: blr
|
|
}
|