search for: normalized_loop

Displaying 1 result from an estimated 1 matches for "normalized_loop".

2015 Jan 30
1
[LLVMdev] Question on Loop Normalization in LLVM
Hi All, I was going through http://en.wikipedia.org/wiki/Normalized_loop and some other documents on Normalized Loops. LLVM currently doesn't seem to normalize the loop as mentioned in the link (i.e. to start with 0 and have a unit step). I wrote a pass to convert a loop into normalized form as in the link (i.e. to have start value of 0 and step of 1 whenever poss...