cd cs31/weeklylab pwd mkdir week05 ls cd week05 pwd cp -r ~newhall/public/cs31/week05/* . ls Makefile gdb_examples/ memparts.c variables.c valgrind_examples/
$ cat variables.c $ cat mainprog.cIf you run make it will build an assembly code version of variables.c and then link it into the executable mainprog. Look for this command:
$ gcc-4.4 -m32 -S variables.cLet's cat out the .s file an look at some of the instructions:
$ cat variables.sOne thing to note is where the local variables are on the stack (see that they are at addresses relative to %ebp). Another is to notice that the return value is copied into register %eax.
Let's try running the mainprog and see what happens.
Next, modify code in variables.s in a way that the function will
return a different value. Run make again to link in your new
version of variables.s into mainprog executable. Then run and
see what happens. Be careful not to modify variables.c or make
will rebuild variables.s from it.
Let's just run this and see where some things are:
./mempartsNotice where local and global variables are located in memory, and notice that heap memory locations (malloc'ed space) and local variables (on the stack) are at very different addresses.
cd into the gdb_examples subdirectory.
First, run make to build the executables (note they are all compiled with -g).
Let's look through a couple of the example programs in gdb, following along in my GDB Guide.
We are going to look at badprog and segfaulter in gdb. These are listed in the "Sample gdb sessions" part of my gdb guide under run 1: debugging badprog and run 2: debugging segfaulter.
Up the page on this guide are lists of common gdb commands and some examples
of how to use them.
Valgrind is a tool for finding heap memory access errors and memory leaks in C and C++ programs. Memory access errors are often very difficult bugs to find, and valgrind helps you easily find errors like reads or writes beyond the bounds of a malloc'ed array, accessing free'ed memory, reading uninitialized memory, and memory leaks (not freeing malloc'ed space before all variables referring to it go out of scope).
To use valgrind, just compile with -g, and run valgrind on your program:
make valgrind ./badprogThe output at first seems a bit cryptic, but once you see the basics of how to interpret it, it is extremely helpful for finding and fixing memory access errors. Let's look at my Valgrind Guide to see how to interpret some of this valgrind output. This guide contains links to other valgrind resources, and the README file in the code you copied over lists some command line options for running valgrind.