mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
1.2 KiB
LLVM
31 lines
1.2 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7
|
|
|
|
; Verify that DAGCombiner does not crash when checking if it is
|
|
; safe to fold the shuffles in function @sample_test according to rule
|
|
; (shuffle (shuffle A, Undef, M0), Undef, M1) -> (shuffle A, Undef, M2)
|
|
;
|
|
; The DAGCombiner avoids folding shuffles if
|
|
; the resulting shuffle dag node is not legal for the target.
|
|
; That means, the shuffle must have legal type and legal mask.
|
|
;
|
|
; Before, the DAGCombiner forgot to check if the resulting shuffle
|
|
; was legal. It instead just called method
|
|
; 'X86TargetLowering::isShuffleMaskLegal'; however, that was not enough since
|
|
; that method always expect to have a valid vector type in input.
|
|
; As a consequence, compiling the function below would have caused a crash.
|
|
|
|
define void @sample_test() {
|
|
br i1 undef, label %5, label %1
|
|
|
|
; <label>:1 ; preds = %0
|
|
%2 = load <4 x i8>, <4 x i8>* undef
|
|
%3 = shufflevector <4 x i8> %2, <4 x i8> undef, <4 x i32> <i32 2, i32 2, i32 0, i32 0>
|
|
%4 = shufflevector <4 x i8> %3, <4 x i8> undef, <4 x i32> <i32 2, i32 3, i32 0, i32 1>
|
|
store <4 x i8> %4, <4 x i8>* undef
|
|
br label %5
|
|
|
|
; <label>:5 ; preds = %1, %0
|
|
ret void
|
|
}
|
|
|