- May 23, 2016
-
-
Johannes Doerfert authored
llvm-svn: 270421
-
Johannes Doerfert authored
llvm-svn: 270420
-
Johannes Doerfert authored
Before this patch we bailed if a required invariant load was potentially overwritten. However, now we will optimistically assume it is actually invariant and, to this end, restrict the valid parameter space as well as the execution context with regards to potential overwrites of the location. llvm-svn: 270416
-
Johannes Doerfert authored
Since the base pointer of a possibly aliasing pointer might not alias with any other pointer it (the base pointer) might not be tagged as "required invariant". However, we need it do be in order to compare the accessed addresses of the derived (possibly aliasing) pointer. This patch also tries to clean up the load hoisting a little bit. llvm-svn: 270412
-
Johannes Doerfert authored
llvm-svn: 270411
-
Johannes Doerfert authored
llvm-svn: 270410
-
Johannes Doerfert authored
We have to rethink the handling of escaping values in order to make this kind of "fixes" go away. llvm-svn: 270409
-
Johannes Doerfert authored
This patch simplifies the Sdiv/Srem/Udiv expansion and thereby prevents errors, e.g., regarding the insertion point. llvm-svn: 270408
-
- May 19, 2016
-
-
Johannes Doerfert authored
This reverts commit 787e642207ca978f2e800140529fc7049ea1f3de until the lnt failures are fixed. llvm-svn: 270061
-
Johannes Doerfert authored
So far we bailed if a required invariant load was potentially overwritten in the SCoP. From now on we will optimistically assume it is actually invariant and, to this end, restrict the valid parameter space. llvm-svn: 270060
-
Johannes Doerfert authored
llvm-svn: 270054
-
Johannes Doerfert authored
The SCoP now holds a reference to the ScopDetection::DetectionContext which allows to simplify the type of various methods and remove code. llvm-svn: 270053
-
Johannes Doerfert authored
llvm-svn: 270052
-
Johannes Doerfert authored
llvm-svn: 270051
-
Johannes Doerfert authored
llvm-svn: 270050
-
- May 17, 2016
-
-
Tobias Grosser authored
Since several releases we do not ship any more with PoCC. llvm-svn: 269809
-
Tobias Grosser authored
Since a long time Polly can automatically generate run-time alias checks. llvm-svn: 269806
-
Tobias Grosser authored
llvm-svn: 269763
-
- May 12, 2016
-
-
Johannes Doerfert authored
Before this patch we only expanded valid __and__ profitable region. Therefor we did not allow the expansion to create a profitable region from a non-profitable one. With this patch we will remember and expand all valid regions and check for profitability only at the end. This patch increases the number of valid SCoPs in the LLVM-TS and SPEC 2000/2006 by 28% (from 303 to 390), including the hot loop in hmmer. llvm-svn: 269343
-
Johannes Doerfert authored
This patch cleans up the rejection log handling during the ScopDetection. It consists of two interconnected parts: - We keep all detection contexts for a function in order to provide more information to the user, e.g., about the rejection of extended/intermediate regions. - We remove the mutable "RejectLogs" member as the information is available through the detection contexts. llvm-svn: 269323
-
Johannes Doerfert authored
llvm-svn: 269301
-
Johannes Doerfert authored
Truncate operations are basically modulo operations, thus we can model them that way. However, for large types we assume the operand to fit in the new type size instead of introducing a modulo with a very large constant. llvm-svn: 269300
-
Johannes Doerfert authored
We utilize assumptions on the input to model IR in polyhedral world. To verify these assumptions we version the code and guard it with a runtime-check (RTC). However, since the RTCs are themselves generated from the polyhedral representation we generate them under the same assumptions that they should verify. In other words, the guarantees that we try to provide with the RTCs do not hold for the RTCs themselves. To this end it is necessary to employ a different check for the RTCs that will verify the assumptions did hold for them too. Differential Revision: http://reviews.llvm.org/D20165 llvm-svn: 269299
-
- May 10, 2016
-
-
Johannes Doerfert authored
If a profitable run is performed we will check if the SCoP seems to be profitable after creation but before e.g., dependence are computed. This is needed as SCoP detection only approximates the actual SCoP representation. In the end this should allow us to be less conservative during the SCoP detection while keeping the compile time in check. llvm-svn: 269074
-
Johannes Doerfert authored
Regions with one affine loop can be profitable if the loop is distributable. To this end we will allow them to be treated as profitable if they contain at least two non-trivial basic blocks. llvm-svn: 269064
-
Johannes Doerfert authored
llvm-svn: 269061
-
Johannes Doerfert authored
The assumption attached to an llvm.assume in the SCoP needs to be combined with the domain of the surrounding statement but can nevertheless be used to refine the context. This fixes the problems mentioned in PR27067. llvm-svn: 269060
-
Johannes Doerfert authored
This patches makes the propagation of complexity problems during domain generation consistent. Additionally, it makes it less likely to encounter ill-formed domains later, e.g., during schedule generation. llvm-svn: 269055
-
Johannes Doerfert authored
Before this patch we generated error-restrictions only for error-blocks, thus blocks (or regions) containing a not represented function call. However, the same reasoning is needed if the invalid domain of a statement subsumes its actual domain. To this end we move the generation of error-restrictions after the propagation of the invalid domains. Consequently, error-statements are now defined more general as statements that are assumed to be not executed. Additionally, we do not record an empty domain for such statements but a nullptr instead. This allows to distinguish between error-statements and dead-statements. llvm-svn: 269053
-
Johannes Doerfert authored
Remove obsolete code and decrease the indention in the Scop::simplifySCoP() function. llvm-svn: 269049
-
Johannes Doerfert authored
We now use context information to simplify the domains and access functions of the SCoP instead of just aligning them with the parameter space. llvm-svn: 269048
-
Johannes Doerfert authored
llvm-svn: 269046
-
Johannes Doerfert authored
Previously we checked the number of pieces to decide whether or not a invariant load was to complex to be generated. However, there are cases when e.g., divisions cause the complexity to spike regardless of the number of pieces. To this end we now check the number of totally involved dimensions which will increase with the number of pieces but also the number of divisions. llvm-svn: 269045
-
Johannes Doerfert authored
This exposes the functionality to interpret a SCEV, or better the piece-wise function created from the SCEV, as an unsigned value instead of a signed one. llvm-svn: 269044
-
- May 07, 2016
-
-
Tobias Grosser authored
Min/max expressions are easier to read and can in some cases also result in more concise IR that is generated as the min/max --- when lowered to a cmp+select pattern -- commonly has a simpler condition then the ternary condition isl would normally generate. llvm-svn: 268855
-
Tobias Grosser authored
llvm-svn: 268854
-
Tobias Grosser authored
This update fixes an assertion in the isl scheduler. llvm-svn: 268853
-
- May 04, 2016
-
-
Michael Kruse authored
This release includes sevaral improvments compared to the previous version isl-0.16.1-145-g243bf7c (from the ISL 0.17 announcement): - optionally combine SCCs incrementally in scheduler - optionally maximize coincidence in scheduler - optionally avoid loop coalescing in scheduler - minor AST generator improvements - improve support for expansions in schedule trees llvm-svn: 268500
-
- May 02, 2016
-
-
Michael Kruse authored
llvm-svn: 268224
-
Michael Kruse authored
The check for complexity compares the number of polyhedra in a set, which are combined by disjunctions (union, "OR"), not conjunctions (intersection, "AND"). llvm-svn: 268223
-