|
|
|
|
|
by optforfon
3483 days ago
|
|
The problem is immature tooling. There is no feedback loop from the compiler's generated assembly back to the IDE. We finally have libclang which sorta does some stuff (I'm not entirely sure how far it can go) - but I'm honestly not seeing any work being done in this direction on the IDE level. After all these years of C++ development, why doesn't the IDE do something as simple as tell me if a function is being inline or not is beyond me (that's the tip of the iceberg in terms of what I want to know). When I asked people at CppCon about it I just got some shrugs and was told "just go look at the assembly". Another solution is profiling - but that's got a slow turn around, and it can be hard to narrow down problem areas. |
|