llvm-6502/lib
Richard Sandiford 0416e3c599 [SystemZ] Move compare-and-branch generation even later
r187116 moved compare-and-branch generation from the instruction-selection
pass to the peephole optimizer (via optimizeCompare).  It turns out that even
this is a bit too early.  Fused compare-and-branch instructions don't
interact well with predication, where a CC result is needed.  They also
make it harder to reuse the CC side-effects of earlier instructions
(not yet implemented, but the subject of a later patch).

Another problem was that the AnalyzeBranch family of routines weren't
handling compares and branches, so we weren't able to reverse the fused
form in cases where we would reverse a separate branch.  This could have
been fixed by extending AnalyzeBranch, but given the other problems,
I've instead moved the fusing to the long-branch pass, which is also
responsible for the opposite transformation: splitting out-of-range
compares and branches into separate compares and long branches.

I've added a test for the AnalyzeBranch problem.  A test for the
predication problem is included in the next patch, which fixes a bug
in the choice of CC mask.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187494 91177308-0d34-0410-b5e6-96231b3b80d8
2013-07-31 12:11:07 +00:00
..
Analysis Fix a severe compile time problem when forming large SCEV expressions. 2013-07-31 02:43:40 +00:00
AsmParser
Bitcode
CodeGen Fix crashing on invalid inline asm with matching constraints. 2013-07-31 01:26:24 +00:00
DebugInfo
ExecutionEngine
IR Add parentheses to silence gcc warning. 2013-07-31 04:07:28 +00:00
IRReader
Linker
MC MC: Support larger COFF string tables 2013-07-29 12:30:12 +00:00
Object Add support for the 's' operation to llvm-ar. 2013-07-29 12:40:31 +00:00
Option
Support Fix windows' implementation of status when a file doesn't exist. 2013-07-31 00:10:25 +00:00
TableGen
Target [SystemZ] Move compare-and-branch generation even later 2013-07-31 12:11:07 +00:00
Transforms Preserve fast-math flags when folding (fsub x, (fneg y)) to (fadd x, y). 2013-07-30 23:53:17 +00:00
CMakeLists.txt
LLVMBuild.txt
Makefile