llvm-6502/lib/CodeGen/SelectionDAG
Chris Lattner f4ea68fa5a fix PR10605 / rdar://9930964 by adding a pretty scary missed check.
It's somewhat surprising anything works without this.  Before we would
compile the testcase into:

test:                                   # @test
	movl	$4, 8(%rdi)
	movl	8(%rdi), %eax
	orl	%esi, %eax
	cmpl	$32, %edx
	movl	%eax, -4(%rsp)          # 4-byte Spill
	je	.LBB0_2

now we produce:

test:                                   # @test
	movl	8(%rdi), %eax
	movl	$4, 8(%rdi)
	orl	%esi, %eax
	cmpl	$32, %edx
	movl	%eax, -4(%rsp)          # 4-byte Spill
	je	.LBB0_2



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137303 91177308-0d34-0410-b5e6-96231b3b80d8
2011-08-11 06:26:54 +00:00
..
CMakeLists.txt Rewrite the CMake build to use explicit dependencies between libraries, 2011-07-29 00:14:25 +00:00
DAGCombiner.cpp Make sure this DAGCombine actually returns an UNDEF of the correct type; PR10476. 2011-07-25 22:25:42 +00:00
FastISel.cpp Revert r135423. 2011-07-19 00:28:24 +00:00
FunctionLoweringInfo.cpp Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338, 2011-07-30 05:42:50 +00:00
InstrEmitter.cpp
InstrEmitter.h
LegalizeDAG.cpp Code generation for 'fence' instruction. 2011-07-27 22:21:52 +00:00
LegalizeFloatTypes.cpp Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future ambiguity 2011-07-18 21:45:40 +00:00
LegalizeIntegerTypes.cpp Misc optimizer+codegen work for 'cmpxchg' and 'atomicrmw'. They appear to be 2011-07-29 03:05:32 +00:00
LegalizeTypes.cpp
LegalizeTypes.h
LegalizeTypesGeneric.cpp
LegalizeVectorOps.cpp
LegalizeVectorTypes.cpp Add obvious missing case to switch. PR10497. 2011-07-26 20:38:49 +00:00
Makefile
ScheduleDAGFast.cpp
ScheduleDAGList.cpp
ScheduleDAGRRList.cpp
ScheduleDAGSDNodes.cpp
ScheduleDAGSDNodes.h
SDNodeDbgValue.h
SDNodeOrdering.h
SelectionDAG.cpp Don't create a ridiculous EXTRACT_ELEMENT. PR10563. 2011-08-02 18:38:35 +00:00
SelectionDAGBuilder.cpp Do not drop undef debug values. These are used as range termination marker by live debug variable pass. 2011-08-03 23:13:55 +00:00
SelectionDAGBuilder.h Add the 'resume' instruction for the new EH rewrite. 2011-07-31 06:30:59 +00:00
SelectionDAGISel.cpp fix PR10605 / rdar://9930964 by adding a pretty scary missed check. 2011-08-11 06:26:54 +00:00
SelectionDAGPrinter.cpp
TargetLowering.cpp New approach to r136737: insert the necessary fences for atomic ops in platform-independent code, since a bunch of platforms (ARM, Mips, PPC, Alpha are the relevant targets here) need to do essentially the same thing. 2011-08-03 21:06:02 +00:00
TargetSelectionDAGInfo.cpp