<div dir="ltr"><div><div>Hello,<br></div>I need to perform the analysis of loop induction variables. However, as I understood, directly it is possible to extract only a canonical induction variable which is only one. If I have multiple induction variables with the step not one, are there any methods to extract their phi node?<br><br>        int a[10];<br>        int b[10];<br>        for (int i = 0, j = 1; i < 10, j < 10; i++, j+=2) {<br>                a[i] = i+1;<br>                b[j] = j+1;<br>        }<br>        printf("%d",(b[1] + a[1]));<br>        return (b[1] + a[1]);<br><br></div>this is a brief example, I want to track i and j (smth is not initialized in this code, but it doesn't matter)<br></div>