From 1b592f0bdf57ca1d1ed0e4a0c9291372fc75f964 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 May 2005 06:09:55 +0000 Subject: edits to the simplify-libcalls element, move it higher in the list. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22052 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ReleaseNotes.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs') diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 936e479809..1c4a7ebc9c 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -222,6 +222,12 @@ multiple of 8 bytes in size.
  • The -globalopt pass now promotes non-address-taken static globals that are only accessed in main to SSA registers.
  • +
  • The new -simplify-libcalls pass improves code generated for well-known +library calls. The pass optimizes calls to many of the string, memory, and +standard I/O functions (e.g. replace the calls with simpler/faster calls) when +possible, given information known statically about the arguments to the call. +
  • +
  • Loops with trip counts based on array pointer comparisons (e.g. "for (i = 0; &A[i] != &A[100]; ++i) ...") are optimized better than before, which primarily helps iterator-intensive C++ codes.
  • @@ -229,12 +235,6 @@ which primarily helps iterator-intensive C++ codes.
  • The code generator now uses information about takes advantage of commutative two-address instructions when performing register allocation.
  • -
  • A new pass has been added to gccas to simplify well-known library calls. The -pass will short circuit calls to many of the string, memory, and printf type -functions or replace the calls with simpler/faster calls, where possible given -information known statically about the arguments to the call. To use the -pass, specify -simplify-libcalls to the opt tool.
  • - -- cgit v1.2.3-18-g5258