mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
5d3a0ce4e5
another mechanical change accomplished though the power of terrible Perl scripts. I have manually switched some "s to 's to make escaping simpler. While I started this to fix tests that aren't run in all configurations, the massive number of tests is due to a really frustrating fragility of our testing infrastructure: things like 'grep -v', 'not grep', and 'expected failures' can mask broken tests all too easily. Essentially, I'm deeply disturbed that I can change the testsuite so radically without causing any change in results for most platforms. =/ llvm-svn: 159547
51 lines
1.2 KiB
LLVM
51 lines
1.2 KiB
LLVM
; If we have an 'and' of the result of an 'or', and one of the 'or' operands
|
|
; cannot have contributed any of the resultant bits, delete the or. This
|
|
; occurs for very common C/C++ code like this:
|
|
;
|
|
; struct foo { int A : 16; int B : 16; };
|
|
; void test(struct foo *F, int X, int Y) {
|
|
; F->A = X; F->B = Y;
|
|
; }
|
|
;
|
|
; Which corresponds to test1.
|
|
;
|
|
; This tests arbitrary precision integers.
|
|
|
|
; RUN: opt < %s -instcombine -S | not grep "or "
|
|
; END.
|
|
|
|
define i17 @test1(i17 %X, i17 %Y) {
|
|
%A = and i17 %X, 7
|
|
%B = and i17 %Y, 8
|
|
%C = or i17 %A, %B
|
|
%D = and i17 %C, 7 ;; This cannot include any bits from %Y!
|
|
ret i17 %D
|
|
}
|
|
|
|
define i49 @test3(i49 %X, i49 %Y) {
|
|
%B = shl i49 %Y, 1
|
|
%C = or i49 %X, %B
|
|
%D = and i49 %C, 1 ;; This cannot include any bits from %Y!
|
|
ret i49 %D
|
|
}
|
|
|
|
define i67 @test4(i67 %X, i67 %Y) {
|
|
%B = lshr i67 %Y, 66
|
|
%C = or i67 %X, %B
|
|
%D = and i67 %C, 2 ;; This cannot include any bits from %Y!
|
|
ret i67 %D
|
|
}
|
|
|
|
define i231 @or_test1(i231 %X, i231 %Y) {
|
|
%A = and i231 %X, 1
|
|
%B = or i231 %A, 1 ;; This cannot include any bits from X!
|
|
ret i231 %B
|
|
}
|
|
|
|
define i7 @or_test2(i7 %X, i7 %Y) {
|
|
%A = shl i7 %X, 6
|
|
%B = or i7 %A, 64 ;; This cannot include any bits from X!
|
|
ret i7 %B
|
|
}
|
|
|