How to find starting and ending values of loop induction variable in LLVM IR?
for(int i = start; i < end; i++) {
A[i] = 0;
}
Want to replace with a call to "zero(A,start,end)"
Or is it better done with clang AST? Are there facilities in clang to do this kind of changes?
LoopSimplify,LoopUnrolland the others which depend onLoopInfoanalysis pass. The latter should provide enough information for your transform. Although, for the more complicated array index dependency analysis, you'd need something likePollyin addition to the existing LLVM features. – SK-logic Nov 12 '12 at 9:20