search for: linearfunctiontestreplace

Displaying 3 results from an estimated 3 matches for "linearfunctiontestreplace".

2013 Jun 24
0
[LLVMdev] [llvm] r184698 - Add a flag to defer vectorization into a phase after the inliner and its
...most cases. I think the only flag that makes sense in SCEV is the no-wrap flag on a recurrence (that's independent of signed/unsigned overflow). As long as indvars does not rely on SCEVExpander it should be able to preserve the flags. Unfortunately, it still uses SCEVExpander in a few places. LinearFunctionTestReplace is one that should simply be moved into LSR instead. For the couple other cases, we'll just have to work on alternative implementations that don't drop flags, but I think it's worth doing. That said, we should try not to rely on NSW at all unless clearly necessary. It introduces nasty...
2013 Jun 24
2
[LLVMdev] [llvm] r184698 - Add a flag to defer vectorization into a phase after the inliner and its
...ns and their original flags (and perhaps cached deduced flags)? It seems like this problem is solvable within SCEV. -Hal > > > As long as indvars does not rely on SCEVExpander it should be able to > preserve the flags. Unfortunately, it still uses SCEVExpander in a > few places. LinearFunctionTestReplace is one that should simply be > moved into LSR instead. For the couple other cases, we'll just have > to work on alternative implementations that don't drop flags, but I > think it's worth doing. > > > That said, we should try not to rely on NSW at all unless clearly...
2013 Jun 24
8
[LLVMdev] [llvm] r184698 - Add a flag to defer vectorization into a phase after the inliner and its
Hi, I wanted to start a discussion about the following issue since I am not sure about what to do about it: The loop-vectorizer has the potential to make code a quite a bit bigger (esp. in cases where we don’t know the loop count or whether pointers alias). Chandler has observed this in snappy where we have a simple memory copying loop (that may overlap). We vectorize this loop and then this