25

I'm having trouble finding much in the way of information about the new XCode layout. How can I view the disassembly of my source file, rather than just the C++ code?

Paul Beusterien
  • 27,542
  • 6
  • 83
  • 139
Promit
  • 3,497
  • 1
  • 20
  • 29
  • 4
    In newer versions the assistant editor contains the corresponding views: Preprocess, Assembly and Disassembly. http://stackoverflow.com/questions/5937031/xcode-4-preprocessor-output – jmihalicza Oct 19 '11 at 16:21

5 Answers5

54

In Xcode 4.2 (and Xcode 5), you can see the assembly or disassembly for a file by:

  1. Showing the assistant editor (command+option+Enter is the default shortcut).
  2. In the JumpBar, select the tuxedo icon and select "Assembly" or "Disassembly" from the drop-down list.

You can view the Assembly for a file whether or not you're running the application. Disassembly is only available when the application is running and being debugged.

john.k.doe
  • 7,533
  • 2
  • 37
  • 64
OldPeculier
  • 11,049
  • 13
  • 50
  • 76
  • 2
    ... with the observation that in 6 the tuxedo icon is now four squares linked by bridges. It's the topmost and leftmost thing. It'll be above the line numbers column if you have that enabled. – Tommy May 27 '15 at 20:08
21

Follow these simple steps inside of Xcode:

enter image description here

enter image description here

enter image description here

enter image description here

Jose Llausas
  • 3,366
  • 1
  • 20
  • 24
11

You can also display disassembly by navigating to:

Debug->Debug Workflow->Show Disassembly while debugging.

This will display source and disassembly in the main window view.

Forge
  • 6,538
  • 6
  • 44
  • 64
1

On Xcode 6 you can go to the menu "Debug -> Debug Workflow -> Always show disassembly".

-5

From what I read in a very thorough XCode 4 review (http://fireballed.org/linked/2011/03/09/xcode-pilkington/), the ability to show a file as assembly code is now gone in XCode 4. I guess you could always set a breakpoint in a method, and look at it disassembled in the debugger console with something like the "x/100i" command to treat print out the next 100 instructions in assembly, but that is a lot less convenient.

Laura
  • 431
  • 2
  • 6