diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-14 13:41:02 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-14 13:41:02 +0000 |
commit | e6b63c11886a3a61bba2056b269276884abc1e46 (patch) | |
tree | 2a312aacee94842e66d6a766fe806b8ffd84ca05 /docs | |
parent | 7629285b3be72b9f9dbc1da885568921d90a36ed (diff) |
Remove several entries from the 3.2 release notes that were in the 3.1
release notes already. =]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes.rst | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index 9ddbbb765b..ee8c99c3c6 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -392,14 +392,6 @@ make it run faster: #. ... -We added new TableGen infrastructure to support bundling for Very Long -Instruction Word (VLIW) architectures. TableGen can now automatically generate -a deterministic finite automaton from a VLIW target's schedule description -which can be queried to determine legal groupings of instructions in a bundle. - -We have added a new target independent VLIW packetizer based on the DFA -infrastructure to group machine instructions into bundles. - Stack Coloring - We have implemented a new optimization pass to merge stack objects which are used in disjoin areas of the code. This optimization reduces the required stack space significantly, in cases where it is clear to the @@ -408,14 +400,6 @@ tell the codegen that a certain alloca is used within a region. We now merge consecutive loads and stores. -Basic Block Placement -^^^^^^^^^^^^^^^^^^^^^ - -A probability based block placement and code layout algorithm was added to -LLVM's code generator. This layout pass supports probabilities derived from -static heuristics as well as source code annotations such as -``__builtin_expect``. - X86-32 and X86-64 Target Improvements ------------------------------------- |