MPW debugging

From Free Pascal wiki
Revision as of 22:09, 6 April 2013 by Jwdietrich (talk | contribs)
Jump to navigationJump to search

The possibillities to do high level debuging in target MacOS (note: not OSX) is limited, due to limitations of PPCAsm to accept debuginfo (stabs). The limitation is thus not in FPC.

Therefore, if possible, we suggest to do the main debugging in a Mac OSX/Darwin version of your program.

If you really want to try to use a debugger, Power Mac Debugger 2.1 can be downloaded from Apple: ftp://ftp.apple.com/developer/Tool_Chest/Core_Mac_OS_Tools/MPW_etc./Debuggers/Power_Mac_Debugger.sit.hqx

You can not use it in the classic environment in Mac OS X, only real classic MacOS will do, and then you must shut off virtual memory. The reason is probably some bug in the memory mapping of executable files, so when a breakpoint is set in the debugger, the breakpoint will eventually be saved to disk, and thus the executable will be corrupted, next time the app is started.

Compile the programs and units with -g to enable debugging. xcoff files will then be generated which contains debugging info.

  • You can browse among procedures by their mangled names,
  • You can view the source code.
  • You can set breakpoints, stepping and jumping works.
  • You cannot see variable names, only registers. Hovever this can be useful, especially at procedure entry and exit point where the parameter list and return value are stored in registers, according to the calling conventions.
  • In the assembler view, sometimes the symbolic name of a branch destination is wrong. When actually executing the branch, it will however branch to the correct procedure.