llvm-capstone/polly
Simon Pilgrim 3cc2c7deed [polly] Remove 'using namespace llvm/polly' from ScopGraphPrinter.h header.
As mentioned on D123678 this appears to be causing namespace resolution issues on some versions of gcc.
2022-05-16 16:19:03 +01:00
..
cmake
docs Bump the trunk major version to 15 2022-02-01 23:54:52 -08:00
include/polly [polly] Remove 'using namespace llvm/polly' from ScopGraphPrinter.h header. 2022-05-16 16:19:03 +01:00
lib [polly] Fix type in function name. NFC. 2022-05-09 18:19:38 -05:00
test [polly] Load NPM pass plugin for NPM test. 2022-05-09 16:10:01 -05:00
tools
unittests
utils
www
.arclint
.gitattributes
.gitignore
CMakeLists.txt
CREDITS.txt
LICENSE.TXT
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.