Reputation: 464
I'm wondering how can I look at the compiler-generated code in Embarcadero RAD Studio XE, like someone answers in this post:
What is the better way to check for an empty string in Delphi?
Upvotes: 3
Views: 826
Reputation: 2593
There is also something called codesite, it will let you trace , time , and a ton of other things http://www.raize.com/DevTools/codesite/
Upvotes: -3
Reputation: 16045
during debugging session go MainMenu -> view -> debug windows -> CPU -> Full CPU Panel
Upvotes: 6
Reputation: 9096
That's what the CPU window is for. Set a breakpoint at the beginning of the source code that you want to investigate, then when the program is halted press Ctrl-Alt-C
to open the main CPU window (or any of the other shortcuts mentioned under the IDE menu View / Debug Windows / CPU Windows).
See also How to use the CPU window for debugging in D7
Upvotes: 11