llvm-6502/lib
Juergen Ributzka 8ebaf63750 [Constant Hoisting] Change the algorithm to only track constants for instructions.
Originally the algorithm would search for expensive constants and track their
users, which could be instructions and constant expressions. This change only
tracks the constants for instructions, but constant expressions are indirectly
covered too. If an operand is an constant expression, then we look through the
expression to find anny expensive constants.

The algorithm keep now track of the instruction and the operand index where the
constant is used. This allows more precise hoisting of constant materialization
code for PHI instructions, because we only hoist to the basic block of the
incoming operand. Before we had to find the idom of all PHI operands and hoist
the materialization code there.

This also makes updating of instructions easier. Before we had to keep track of
the original constant, find it in the instructions, and then replace it. Now we
can just simply update the operand.

Related to <rdar://problem/16381500>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204433 91177308-0d34-0410-b5e6-96231b3b80d8
2014-03-21 06:04:36 +00:00
..
Analysis Revert "[Constant Hoisting] Extend coverage of the constant hoisting pass." 2014-03-20 20:17:13 +00:00
AsmParser
Bitcode
CodeGen Fix an assertion caused by using inline asm with indirect register inputs. 2014-03-21 02:14:50 +00:00
DebugInfo
ExecutionEngine Add an option to MCJIT to have it forward all sections to the 2014-03-20 21:06:46 +00:00
IR Fix comment (PR19188) 2014-03-19 18:41:38 +00:00
IRReader
LineEditor
Linker
LTO
MC MCParser: add an assertion 2014-03-21 05:13:23 +00:00
Object Object/COFF: Support large relocation table. 2014-03-21 00:44:19 +00:00
Option
Support [Support] Make sure LockFileManager works correctly with relative paths. 2014-03-21 02:31:56 +00:00
TableGen
Target This reverts commit r203762, "ARM: support emission of complex SO expressions". 2014-03-21 02:51:01 +00:00
Transforms [Constant Hoisting] Change the algorithm to only track constants for instructions. 2014-03-21 06:04:36 +00:00
CMakeLists.txt
LLVMBuild.txt
Makefile