<div dir="ltr"><div>Thank You.</div><div>I used following commands</div><div><br></div><div>Documents/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clang -O1 -Xclang -disable-O0-optnone  -emit-llvm -S vecsum.c -o vecsum-noopt.ll</div><div>Documents/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/opt  -loop-vectorize -slp-vectorizer -S vecsum-noopt.ll -o vecto.ll</div><div><br></div><div>It vectorized the code.<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 14, 2019 at 2:33 PM HAPPY Mahto <<a href="mailto:cs17btech11018@iith.ac.in">cs17btech11018@iith.ac.in</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 14, 2019 at 2:52 PM hameeza ahmed via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Hello,</div><div>I am trying to test individual optimizations of opt on unoptimized IR. But, the IR is not getting vectorized by using following commands.</div><div><br></div><div>Documents/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clang -O1 -Xclang -disable-llvm-passes -emit-llvm -S vecsum.c -o vecsum-noopt.ll</div><div><br></div></div></blockquote><div><br></div><div>Try this:</div><div>Documents/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clang -O1 -Xclang -disable-00-optnone -disable-llvm-passes -emit-llvm -S vecsum.c -o vecsum-noopt.ll</div><div>Same for other commands too.<br></div><div>You need to add '-disable-00-optnone' flag, or you can remove the optnone attribute from attributes #0 = { noinline , nounwind, <strike>optnone </strike>... <strike>}</strike></div><div>I hope this helps. <br></div><div><br></div><div>-Happy<br></div><div> <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div></div><div>Documents/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/opt  -loop-vectorize -slp-vectorizer -S vecsum-noopt.ll -o vecto.ll</div><div><br></div><div>Though IR gets vectorized with O3 flag. Even I tried to replicate O3 behavior via individual flags with opt. But It is not showing same IR.</div><div><br></div><div>Where am I doing mistake?</div><div><br></div><div>Please help</div><div><br></div><div>Thank You</div><div>Regards<br></div></div>_______________________________________________<br>LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div>
</blockquote></div>