disassembly

A disassembler is a computer program that translates machine language into assembly language—the inverse operation to that of an assembler. A disassembler differs from a decompiler, which targets a high-level language rather than an assembly language. Disassembly, the output of a disassembler, is often formatted for human-readability rather than suitability for input to an assembler, making it principally a reverse-engineering tool.
Assembly language source code generally permits the use of constants and programmer comments. These are usually removed from the assembled machine code by the assembler. If so, a disassembler operating on the machine code would produce disassembly lacking these constants and comments; the disassembled output becomes more difficult for a human to interpret than the original annotated source code. Some disassemblers provide a built-in code commenting feature where the generated output gets enriched with comments regarding called API functions or parameters of called functions. Some disassemblers make use of the symbolic debugging information present in object files such as ELF. For example, IDA allows the human user to make up mnemonic symbols for values or regions of code in an interactive session: human insight applied to the disassembly process often parallels human creativity in the code writing process.
On CISC platforms with variable-width instructions, more than one disassembly may be valid. Disassemblers do not handle code that varies during execution.

View More On Wikipedia.org
  • 5

    SuperHiro

    Well-known Member
    • Posts
      898
    • Likes
      14
    • Points
      0
  • 3

    Jinda

    From China
    • Posts
      1,008
    • Likes
      37
    • Points
      48
  • 2

    josher

    Well-known Member
    • Posts
      6,745
    • Likes
      176
    • Points
      0
  • 2

    .::MEGATRON::.

    Member
    • Posts
      175
    • Likes
      0
    • Points
      0
  • 2

    Lrayon

    Well-known Member
    • Posts
      579
    • Likes
      5
    • Points
      0
  • 1

    NANAIU

    Well-known Member From BD
    • Posts
      2,734
    • Likes
      63
    • Points
      0
  • 1

    DON M

    • Posts
      1,151
    • Likes
      113
    • Points
      0
  • 1

    sima_telecom

    Member
    • Posts
      212
    • Likes
      2
    • Points
      0
  • 1

    Varims

    • Posts
      372
    • Likes
      3
    • Points
      0
  • 1

    Gsmb SHIVA

    • Posts
      277
    • Likes
      4
    • Points
      0
  • Top