<div dir="ltr"><div>Hello,</div><div>I want to find complexity of code in IR...Like if we have 2 nested loops</div><div><br></div><div>for(i=0;i<N1;i++)</div><div>for(j=0;j<N1;j++)</div><div>{</div><div>......</div><div><br></div><div>}</div><div><br></div><div>Here N1 is unknown at compile time.</div><div><br></div><div>So complexity will be N1^2...How can I find this by doing LLVM IR analysis?<br></div></div>