[Lldb-commits] [PATCH] Usability improvements for Intel X86 disassembly (llvm)

Jim Grosbach grosbach at apple.com
Mon Jul 29 13:22:13 PDT 2013


  Hi Richard,

  Thanks for working on this. Getting better assembly output from the compiler is a very good thing.

  Some high-level comments to start with.

  "immediate values can be selected to appear as either hex or decimal
  register names and keywords lowercased to be consistent with both att syntax and general sanity.
  annotated markup is supported in the disassembly (same as att)"

  These are all great changes, but are independent of one another. If it's not too much to ask, it'd be best to separate these out into three smaller patches which each do only one of these things.

  "fixed a bug where MOV16016a would disassembly wrongly for Intel."

  Likewise, this is great, but should be a separate patch.

  "added a switch for the user to select which style of hex constants they would prefer (c/pascal/asm style)"

  Can you elaborate on this a bit? For example, can the assembly parser handle all three styles? If not, then that would be part of adding support for this. It's important that the compiler be able to assemble its own output. More broadly, what's the motivation here? Typically we do this the other way around, accepting a variety of forms for input in the parser but choosing a single canonical form for printing. There are obviously exceptions, but that's the general approach, so when we deviate from that, it's worth talking a bit about why and whether it's worth it.

http://llvm-reviews.chandlerc.com/D1221



More information about the lldb-commits mailing list