Good Assembly Guide(s) for C++ Debugging

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ramsin
    New Member
    • Jul 2011
    • 15

    Good Assembly Guide(s) for C++ Debugging

    Do you know one or more clear (and quick) papers/tutorials/books to explain the general essentials of assemblers (esp. IA-32bits), only for debugging purposes? To learn about assembly is yet another large field. I've learned the very basics, but I currently have no time to study it extensively. Thanks...
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Why would you need an assembler for C++ debugging?

    Your classes should operate using exception handling and each class should have it's own test driver. Each class is separately tested--and stress tested. Properly done global debugging ala C ASSERT or some such is obsolete.

    Comment

    • Ramsin
      New Member
      • Jul 2011
      • 15

      #3
      I need to understand what's going on there, while working with memory.

      Comment

      • Ramsin
        New Member
        • Jul 2011
        • 15

        #4
        Btw, I found this paper (http://mariano-graziano.llab.it/docs/stsi2010.pdf) really clear and informative, and I've begun reading it.

        Comment

        • Ramsin
          New Member
          • Jul 2011
          • 15

          #5
          This is really good too: http://en.wikibooks.org/wiki/X86_Disassembly

          Comment

          Working...