Ulad
Ulad
You can profile compilation time with latest clang built from master. Recently they added new option`-ftime-trace` which generates tracing profile for compiler execution. More details can be found in this...
What about saving all objects in other database? Actually it can be a little bit optimized by using std::vector instead of std::list in Map::listAllLoadedBlocks and Map::listAllLoadableBlock.
What should it print in the following case: ``` c++ void step() { ScopeProfilerTree("Step"); for(int i = 0; i < 2; ++i) { ScopeProfilerTree("Loop"); } } ``` ``` / Step...