mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-24 13:18:17 +00:00
don't turn (A & (C0?-1:0)) | (B & ~(C0?-1:0)) -> C0 ? A : B
for vectors. Codegen is generating awful code or segfaulting in various cases (e.g. PR6204). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95058 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1591,15 +1591,19 @@ Instruction *InstCombiner::visitOr(BinaryOperator &I) {
|
||||
}
|
||||
}
|
||||
|
||||
// (A & (C0?-1:0)) | (B & ~(C0?-1:0)) -> C0 ? A : B, and commuted variants
|
||||
if (Instruction *Match = MatchSelectFromAndOr(A, B, C, D))
|
||||
return Match;
|
||||
if (Instruction *Match = MatchSelectFromAndOr(B, A, D, C))
|
||||
return Match;
|
||||
if (Instruction *Match = MatchSelectFromAndOr(C, B, A, D))
|
||||
return Match;
|
||||
if (Instruction *Match = MatchSelectFromAndOr(D, A, B, C))
|
||||
return Match;
|
||||
// (A & (C0?-1:0)) | (B & ~(C0?-1:0)) -> C0 ? A : B, and commuted variants.
|
||||
// Don't do this for vector select idioms, the code generator doesn't handle
|
||||
// them well yet.
|
||||
if (!isa<VectorType>(I.getType())) {
|
||||
if (Instruction *Match = MatchSelectFromAndOr(A, B, C, D))
|
||||
return Match;
|
||||
if (Instruction *Match = MatchSelectFromAndOr(B, A, D, C))
|
||||
return Match;
|
||||
if (Instruction *Match = MatchSelectFromAndOr(C, B, A, D))
|
||||
return Match;
|
||||
if (Instruction *Match = MatchSelectFromAndOr(D, A, B, C))
|
||||
return Match;
|
||||
}
|
||||
|
||||
// ((A&~B)|(~A&B)) -> A^B
|
||||
if ((match(C, m_Not(m_Specific(D))) &&
|
||||
|
||||
Reference in New Issue
Block a user