- Nov 22, 2011
-
-
Tobias Grosser authored
llvm-svn: 145072
-
Tobias Grosser authored
This replaces the old option -polly-use-pocc. Also call the passes uniformly -polly-opt-pocc and -polly-opt-isl. llvm-svn: 145071
-
- Nov 17, 2011
-
-
Tobias Grosser authored
We disable Polly by default and add a new option '-polly' that enables Polly. This allows us to create an the alias $ alias clang clang -Xclang -load -Xclang LLVMPolly.so which loads Polly always into clang. It can now be enabled by running: $ clang -O3 -mllvm -polly file.c To enable it by default an alias pollycc can be create $ alias pollycc clang -O3 -mllvm -polly llvm-svn: 144917
-
Tobias Grosser authored
Instead we switch to the recommended getName(). This fixes compilation with recent versions of LLVM. llvm-svn: 144909
-
Tobias Grosser authored
llvm-svn: 144908
-
Tobias Grosser authored
llvm-svn: 144907
-
Tobias Grosser authored
llvm-svn: 144906
-
Tobias Grosser authored
Suggested by Sebastian Pop. llvm-svn: 144905
-
Tobias Grosser authored
Suggested by Sebastian Pop. llvm-svn: 144904
-
Tobias Grosser authored
llvm-svn: 144903
-
Tobias Grosser authored
Suggested by Sebastian Pop. llvm-svn: 144902
-
Tobias Grosser authored
Fix suggested by Sebastian Pop. llvm-svn: 144901
-
Tobias Grosser authored
llvm-svn: 144900
-
Tobias Grosser authored
- Use uppercase letters according to the LLVM coding style - Rename functions to not include 'tiledSchedule', but just Schedule. This is more correct as tiling might be disabled. llvm-svn: 144899
-
Tobias Grosser authored
Style fix, noted by Sebastian Pop. llvm-svn: 144898
-
- Nov 15, 2011
-
-
Tobias Grosser authored
llvm-svn: 144643
-
Tobias Grosser authored
The new isl_id support for parmeters created problems when importing new access functions. Even though the parameters had the same names, they were mapped to different ids and where therefore incompatible. We copy the ids now from the old parameter dimensions. This fixes the problem. llvm-svn: 144642
-
Tobias Grosser authored
Parameters can be complex SCEV expressions, but they can also be single scalar values. If a parameters is such a simple scalar value and the value is named, use this name to name the isl parameter dimensions. llvm-svn: 144641
-
Tobias Grosser authored
llvm-svn: 144640
-
Tobias Grosser authored
llvm-svn: 144639
-
Tobias Grosser authored
llvm-svn: 144638
-
- Nov 10, 2011
-
-
Tobias Grosser authored
llvm-svn: 144289
-
Tobias Grosser authored
llvm-svn: 144288
-
Tobias Grosser authored
llvm-svn: 144287
-
Tobias Grosser authored
This does not work reliable and is probably not needed. I accidentally changed this in this recent commit: commit a0bcd63c6ffa81616cf8c6663a87588803f7d91c Author: grosser <grosser@91177308-0d34-0410-b5e6-96231b3b80d8> Date: Thu Nov 10 12:47:21 2011 +0000 ScopDetect: Use INVALID macro to fail in case of aliasing This simplifies the code and also makes the error message available to the graphviz scop viewer. git-svn-id: https://llvm.org/svn/llvm-project/polly/trunk@144284 llvm-svn: 144286
-
Tobias Grosser authored
llvm-svn: 144285
-
Tobias Grosser authored
This simplifies the code and also makes the error message available to the graphviz scop viewer. llvm-svn: 144284
-
Tobias Grosser authored
llvm-svn: 144283
-
Tobias Grosser authored
llvm-svn: 144282
-
Tobias Grosser authored
llvm-svn: 144281
-
Tobias Grosser authored
address is part of the access function. Also remove unused special cases that were necessery when the base address was still contained in the access function llvm-svn: 144280
-
Tobias Grosser authored
llvm-svn: 144279
-
Tobias Grosser authored
Previously we allowed in access functions only a single SCEVUnknown, which later became the base address. We now use getPointerBase() to derive the base address and all remaining unknowns are handled as parameters. This allows us to handle cases like A[b+c]; llvm-svn: 144278
-
- Nov 09, 2011
-
-
Tobias Grosser authored
llvm-svn: 144233
-
Tobias Grosser authored
llvm-svn: 144232
-
Tobias Grosser authored
The SCEVAffFunc is now only used to express memory accesses. Give it a proper name and rework the class such that this is obvious. llvm-svn: 144231
-
Tobias Grosser authored
This also removes the construction of MayAliasSets that became invalid when removing the use of SCEVAffFunc. llvm-svn: 144230
-
Tobias Grosser authored
We do not use it anymore. It was replaced by SCEVVisitors like the SCEVValidator. llvm-svn: 144229
-
Tobias Grosser authored
This check was necessary because of the use AffineSCEVIterator in TempScopInfo. As we removed this use recently it is not necessary any more. llvm-svn: 144228
-
Tobias Grosser authored
llvm-svn: 144227
-