skylla
skylla

Reputation: 464

How to look at compiled Delphi Code?

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

Answers (3)

Glen Morse
Glen Morse

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

Arioch 'The
Arioch 'The

Reputation: 16045

during debugging session go MainMenu -> view -> debug windows -> CPU -> Full CPU Panel

Upvotes: 6

Jan Doggen
Jan Doggen

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

Related Questions