Debugging

From WiiBrew
Jump to navigation Jump to search

Remote Debugging with GDB

devkitPro provides gdb, the gnu debugger, which has been configured to allow remote debugging over the USB Gecko. You compile a stub of code into your wii program and run the debugger on your pc. Firstly include the code which establishes the connection:

   #include <debug.h>
   DEBUG_Init(GDBSTUB_DEVICE_USB, 1);

You can then manually insert breakpoint into your code with the line:

_break();

Your wii code must be compiled with the option -g linked with the option -ldb, included before other libraries such as -logc.

Start your wii code using normal means such as the homebrew channel. There are three debugging tools available from devkitPro which are:

  • powerpc-gekko-gdb: the basic text version of gdb driven from the command line
  • powerpc-gekko-gdbtui: a version of gdb which includes a text window showing the source code of your application
  • powerpc-gekko-insight: a custom version of Insight, a full GUI built on top of gdb, available as a separate package from devkitPro

Assuming that you have started the text based gdb, at the command prompt type:

target remote /dev/ttyUSB0

On windows you need to install the Virtual COM Port driver for USBGecko, this will provide an additional COM port. You can find a guide to install the VCP driver on the USBGecko site here

target remote COM5

replace COM5 with the port installed by the USBGecko VCP driver.

Tell gdb where to find symbol information by typing

symbol-file /path/to/elf/on/pc

You can then insert other break points manually by typing for example (assuming you are in the same directory as the source file):

break sourcefile.c:linenum 

If sources are in another directory, you can tell gdb where with the command:

directory name/of/source/directory

You can then continue running the program by typing:

cont

Particularly if you have hardcoded a breakpoint with the _break() function, it is useful to be able to run until the current function exits with the command:

finish

Examine the value of variables by typing

print variablename

The above examples are confirmed to work under linux but may require some modification to work under windows/msys (particularly /dev/ttyUSB0).

Graphical debugger options for Linux can be found on the linux set-up page

Debugging with Dolphin emulator

It is often easier to test out a homebrew app using the Dolphin emulator than using an actual Wii console. This is because Dolphin has built-in debugging capabilities. However, some homebrew does not run as well on Dolphin as it does on the Wii, so please do thorough testing on both Dolphin and a real Wii.

To run homebrew on Dolphin, it is not necessary to install the Homebrew channel – instead, you can just press the "Open" button in the top-left corner of the Dolphin main menu, and select your .dol/.elf file in the file selection window that appears.

In order to see the output from the calls to `printf()` you'll need to enable the "Debugging UI" in Dolphin (under the Interface section of Dolphin's configuration settings) and check the OSReport output in the "Log configuration panel".

Experimental: Remote Debugging with GDB over Network

User:Qiang0/Debugging#Using gdb to debug over the network

Diagnosing crashes

When faced with a crash in your Homebrew, often you'll see a code dump with an address and some machine code. Here's my trick to track that back to a line of C++ code.

For example if your homebrew game crashes it might show something like this:

    CODE DUMP:
    
    800084ac:   809F0020 2F840000 ...
    800084bc:   ...
    800084cc:   ...

The 800084ac is the memory address in hex of where the crash occurred. 809F0020 is the machine code for the offending instruction.

With GDB

Using gdb, you can find out where the relevant code is with the command:

gdb info line *0x800084ac

This should work even if you don't have a USB gecko, as it is only using the symbol information stored in the .elf file.

On OSX, enter the gdb command line like this:

powerpc-gekko-gdb your_game.elf

You will get a (gdb) prompt where you can type:

 info line *0x800084ac

Alternative Method 1

A simpler way to get the line/file from an address is to use addr2line:

powerpc-gekko-addr2line -e <elf file> <address>

Alternative Method 2

  • Step 1:

In your makefile change the CXXFLAGS line to the following:

  CXXFLAGS = -save-temps -Xassembler -aln=$@.lst $(CFLAGS)

The "-save-temps" will save the assembly language file, which can be interesting. The "-Xassembler -aln=$@.lst" creates a list file which contains the assembly and the machine code. Now recompile your entire project. Note, this just affects C++ code.

  • Step 2:

Look at the map file that was built. The mapfile is on by default in the Wii template makefile. Typically it's in the build subdirectory and called something.map. Look in that mapfile for the nearest memory address that doesn't go over the one found in the CODE DUMP. Here is an example:

    0x80008464                ShooterView::Render(BibGraphicsDevice&)

This tells me that the crash was 72 bytes into the ShooterView::Render() function. Now to find the line number in Render()

  • Step 3:

Look at the list file for the relevant function. Here's an example:

   473              		.globl _ZN11ShooterView6RenderER17BibGraphicsDevice
   474              		.type	_ZN11ShooterView6RenderER17BibGraphicsDevice, @function
   475              	_ZN11ShooterView6RenderER17BibGraphicsDevice:
   476              	.LFB1465:
   477              		.loc 1 158 0
   478              	.LVL20:
   479 02d0 9421FF00 		stwu 1,-256(1)

The function names are mangled because this is C++ code. See http://en.wikipedia.org/wiki/Name_mangling#Name_mangling_in_C.2B.2B The address of the first instruction of Render() is at 02d0. This is also line 158 in the file (".loc 1 158 0"). To find the error location, just look at 0x2d0 + 72 = 0x318. See below:

                               .loc 1 168 0
   528 0314 809F0020 		lwz 4,32(31)
   529 0318 2F840000 		cmpwi 7,4,0

This shows machine address 0x318 has the proper machine code and the nearest .loc statement says the problem is at line 168 of the ShooterView.cpp. For more info on the assembler output see the manual here: http://sourceware.org/binutils/docs-2.18/as/index.html

Alternative Method 3

If you are getting crashes and you dont want to hunt through assembly code, or rendered-c you can put exit(0) in parts of your code you think it might crash in - like before function calls, or variable assignments.

If you compile different versions with the exit(0) in different places then when you run a version of your program that crashes instead of returning to the HBC then you know you are close to the source of the problem.

It is a dirty way of finding your problem, but a lot easier to understand than the other methods shown.