1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 05:53:07 +01:00
llvm-mirror/lib/CodeGen/SelectionDAG
Dan Gohman 8981962672 Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk
replacement of multiple values. This is slightly more efficient
than doing multiple ReplaceAllUsesOfValueWith calls, and theoretically
could be optimized even further. However, an important property of this
new function is that it handles the case where the source value set and
destination value set overlap. This makes it feasible for isel to use
SelectNodeTo in many very common cases, which is advantageous because
SelectNodeTo avoids a temporary node and it doesn't require CSEMap
updates for users of values that don't change position.

Revamp MorphNodeTo, which is what does all the work of SelectNodeTo, to
handle operand lists more efficiently, and to correctly handle a number
of corner cases to which its new wider use exposes it.

This commit also includes a change to the encoding of post-isel opcodes
in SDNodes; now instead of being sandwiched between the target-independent
pre-isel opcodes and the target-dependent pre-isel opcodes, post-isel
opcodes are now represented as negative values. This makes it possible
to test if an opcode is pre-isel or post-isel without having to know
the size of the current target's post-isel instruction set.

These changes speed up llc overall by 3% and reduce memory usage by 10%
on the InstructionCombining.cpp testcase with -fast and -regalloc=local.

llvm-svn: 53728
2008-07-17 19:10:17 +00:00
..
CallingConvLower.cpp Trim unnecessary #includes. 2008-07-11 20:38:31 +00:00
DAGCombiner.cpp Fix the result type of a VECTOR_SHUFFLE+BIT_CONVERT dagcombine. This 2008-07-16 16:13:58 +00:00
LegalizeDAG.cpp Factorize some code for determining which libcall to use. 2008-07-17 02:36:29 +00:00
LegalizeFloatTypes.cpp LegalizeTypes support for what seems to be the 2008-07-17 17:35:14 +00:00
LegalizeIntegerTypes.cpp Factorize some code for determining which libcall to use. 2008-07-17 02:36:29 +00:00
LegalizeTypes.cpp Ignore TargetConstant with an illegal type. These 2008-07-14 17:15:45 +00:00
LegalizeTypes.h LegalizeTypes support for what seems to be the 2008-07-17 17:35:14 +00:00
LegalizeTypesGeneric.cpp Remove PromoteIntRes_FP_ROUND - not sure what it 2008-07-10 15:29:55 +00:00
LegalizeVectorTypes.cpp Reorder methods alphabetically. No functionality change. 2008-07-16 11:41:33 +00:00
Makefile remove attribution from lib Makefiles. 2007-12-29 20:09:26 +00:00
ScheduleDAG.cpp Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk 2008-07-17 19:10:17 +00:00
ScheduleDAGList.cpp Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk 2008-07-17 19:10:17 +00:00
ScheduleDAGRRList.cpp Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk 2008-07-17 19:10:17 +00:00
SelectionDAG.cpp Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk 2008-07-17 19:10:17 +00:00
SelectionDAGISel.cpp Turn LegalizeTypes back off again for the moment: 2008-07-17 17:06:03 +00:00
SelectionDAGPrinter.cpp Improve debug output for MemOperandSDNode. PseudoSourceValue nodes 2008-07-14 17:51:24 +00:00
TargetLowering.cpp Factorize some code for determining which libcall to use. 2008-07-17 02:36:29 +00:00