hanchenye-llvm-project/polly
Tobias Grosser ab23c9e724 Delete some unnecessary code
Originally we have needed this code to map the isl_id of an array to its base
pointer. However, as now the isl_id contains a reference to the array itself we
obtain the base pointer from this isl_id and we do not need to add this
information to the IDToValue map.

llvm-svn: 220876
2014-10-29 22:09:54 +00:00
..
autoconf
cmake
docs
include Change the RegionSet type to a SetVector 2014-10-22 20:39:07 +00:00
lib Delete some unnecessary code 2014-10-29 22:09:54 +00:00
test Change the RegionSet type to a SetVector 2014-10-22 20:39:07 +00:00
tools
utils Change the output of arc unit 2014-10-01 21:26:24 +00:00
www [www] Update formatting of news feed 2014-09-22 07:37:12 +00:00
.arcconfig Added arcanist (arc) unit test support 2014-09-08 19:30:09 +00:00
.arclint
.gitattributes
.gitignore Add test/lit.site.cfg to .gitignore 2014-09-07 15:03:30 +00:00
CMakeLists.txt
CREDITS.txt
LICENSE.txt
Makefile
Makefile.common.in
Makefile.config.in
README
configure

README

Polly - Polyhedral optimizations for LLVM
-----------------------------------------
http://polly.llvm.org/

Polly uses a mathematical representation, the polyhedral model, to represent and
transform loops and other control flow structures. Using an abstract
representation it is possible to reason about transformations in a more general
way and to use highly optimized linear programming libraries to figure out the
optimal loop structure. These transformations can be used to do constant
propagation through arrays, remove dead loop iterations, optimize loops for
cache locality, optimize arrays, apply advanced automatic parallelization, drive
vectorization, or they can be used to do software pipelining.