Compare / Diff between two version of Compilation #181
-
Hi, I want to compare asm of two compilations if I am missing any target-specific inlining since I am doing run-time detection of target cpu. At the moment, I compare individual functions, which becomes cumbersome as one function can make to another function, function list kind of becomes bigger. Do you have any suggestion to make such a comparison process more automated instead of checking each function indvidually? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Btw, I already use |
Beta Was this translation helpful? Give feedback.
-
Hmm... There's |
Beta Was this translation helpful? Give feedback.
-
I am wondering, are you thinking of doing some IDE extension/tool based on this project? |
Beta Was this translation helpful? Give feedback.
-
There's several problems - lots of different IDEs use all sorts of languages for their extension so supporting each separate IDE means doing more work. Next IDEs usually operate in terms of rust code directly, while In short while I would love to make it easier to see compiled code directly from my editor - it's way too much effort compared to typing a few commands in a console. |
Beta Was this translation helpful? Give feedback.
Hmm... There's
--everything
that dumps, well, everything. Also you can look at the name list itself - if function is inlined everywhere - it should not show up in the list.