<div dir="ltr"><div dir="ltr"><div>Hello!</div><div><br></div><div>TL;DR: I have made a Clang/LLVM code change that adds "-ftime-trace" option, that produces Chrome Tracing format output. Would like comments on whether that is a good idea or not, or perhaps someone else is already doing this. My current (WIP) patch in github PR format is here <a href="https://github.com/aras-p/llvm-project-20170507/pull/2">https://github.com/aras-p/llvm-project-20170507/pull/2</a> -- with images and trace output files attached.</div><div><br></div><div>Longer version:</div><div><br></div><div>Current implementation of "-ftime-report" has several issues, particularly when I'm just a "user" of the compiler:</div><div><br></div><div>- it outputs a lot of information (almost half of it is duplicated since clang 7.0),</div><div>- a lot of that information is things that only compiler developers would know about,</div><div>- has quite large overhead, I've seen it make compile times take 1.5x longer,</div><div>- has very little information about "frontend" part (preprocessing, parsing, instantiation, C++ modules),</div><div>- the things it reports are only "summaries", i.e. "how much time it took to do work X in total". e.g. it can tell that "inlining all functions took X seconds", but in case there was just one super slow function to inline among</div><div>thousands, it will not tell which one was the slow one.</div><div><br></div><div>I have written a blog post about this (as well as lack of "good" time reporting tools in Visual Studio and gcc) recently, <a href="http://aras-p.info/blog/2019/01/12/Investigating-compile-times-and-Clang-ftime-report/">http://aras-p.info/blog/2019/01/12/Investigating-compile-times-and-Clang-ftime-report/</a></div><div><br></div><div>At work (Unity game engine), with codebase of similar size to whole of Clang/LLVM (2-3 million lines of code), we had really good experience in adding timeline/flamegraph visualizations to various parts of our "build system". This can tell us which .cpp files were slowest to compile in the whole build, but I also wanted similar tooling for things "inside" single .cpp file compilation.</div><div><br></div><div>Thus this attempt at adding a new time trace profiling mode.</div><div><br></div><div>I have current changes on github here, <a href="https://github.com/aras-p/llvm-project-20170507/pull/2">https://github.com/aras-p/llvm-project-20170507/pull/2</a> -- can do a proper "patch" thing via Phabricator if needed.</div><div><br></div><div>My current code change does not quite match Clang/LLVM code standards and probably needs some work, but the general approach seems to work. Already found one case of Clang being very slow at parsing some weird recursive macro thingamabob that we had; was causing about 5-8 seconds just to include one header file. I probably would have never found it without this type of visualization. Here it is very clear that among all the things, parsing just that one header file takes almost all the time: <a href="https://user-images.githubusercontent.com/348087/51038295-76efb780-15bb-11e9-926f-a6be1ffd03f1.png">https://user-images.githubusercontent.com/348087/51038295-76efb780-15bb-11e9-926f-a6be1ffd03f1.png</a></div><div><br></div><div><br></div><div>Regards,</div><div><br></div>-- <br><div dir="ltr" class="gmail_signature">Aras Pranckevičius<br>work: <a href="http://unity3d.com" target="_blank">http://unity3d.com</a><br>home: <a href="http://aras-p.info" target="_blank">http://aras-p.info</a></div></div></div>