1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/PowerPC/rlwimi2.ll
Matthias Braun b3a8585bc1 PowerPC: Do not use llc -march in tests.
`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
2017-08-01 22:20:41 +00:00

30 lines
1.3 KiB
LLVM

; All of these ands and shifts should be folded into rlwimi's
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- -o %t
; RUN: grep rlwimi %t | count 4
; RUN: not grep srwi %t
; RUN: not grep slwi %t
define i16 @test1(i32 %srcA, i32 %srcB, i32 %alpha) nounwind {
entry:
%tmp.1 = shl i32 %srcA, 15 ; <i32> [#uses=1]
%tmp.4 = and i32 %tmp.1, 32505856 ; <i32> [#uses=1]
%tmp.6 = and i32 %srcA, 31775 ; <i32> [#uses=1]
%tmp.7 = or i32 %tmp.4, %tmp.6 ; <i32> [#uses=1]
%tmp.9 = shl i32 %srcB, 15 ; <i32> [#uses=1]
%tmp.12 = and i32 %tmp.9, 32505856 ; <i32> [#uses=1]
%tmp.14 = and i32 %srcB, 31775 ; <i32> [#uses=1]
%tmp.15 = or i32 %tmp.12, %tmp.14 ; <i32> [#uses=1]
%tmp.18 = mul i32 %tmp.7, %alpha ; <i32> [#uses=1]
%tmp.20 = sub i32 32, %alpha ; <i32> [#uses=1]
%tmp.22 = mul i32 %tmp.15, %tmp.20 ; <i32> [#uses=1]
%tmp.23 = add i32 %tmp.22, %tmp.18 ; <i32> [#uses=2]
%tmp.27 = lshr i32 %tmp.23, 5 ; <i32> [#uses=1]
%tmp.28 = trunc i32 %tmp.27 to i16 ; <i16> [#uses=1]
%tmp.29 = and i16 %tmp.28, 31775 ; <i16> [#uses=1]
%tmp.33 = lshr i32 %tmp.23, 20 ; <i32> [#uses=1]
%tmp.34 = trunc i32 %tmp.33 to i16 ; <i16> [#uses=1]
%tmp.35 = and i16 %tmp.34, 992 ; <i16> [#uses=1]
%tmp.36 = or i16 %tmp.29, %tmp.35 ; <i16> [#uses=1]
ret i16 %tmp.36
}