Author: akhaldi
Date: Tue May 31 18:22:20 2011
New Revision: 52027

URL: http://svn.reactos.org/svn/reactos?rev=52027&view=rev
Log:
[CMAKE]
* Several improvements to debug symbols handling.
* A new (killer/awesome/...etc) feature has been introduced to kdbg: argument 
values support. Now backtraces contain not only usermode and kernelmode 
addresses translated, but also the argument values passed to the functions 
along the trace.
* Brought to you by the Arty.

Modified:
    branches/cmake-bringup/include/reactos/rossym.h
    branches/cmake-bringup/lib/rossym/CMakeLists.txt
    branches/cmake-bringup/lib/rossym/compat.h
    branches/cmake-bringup/lib/rossym/dwarf.h
    branches/cmake-bringup/lib/rossym/dwarfabbrev.c
    branches/cmake-bringup/lib/rossym/dwarfaranges.c
    branches/cmake-bringup/lib/rossym/dwarfcfa.c
    branches/cmake-bringup/lib/rossym/dwarfget.c
    branches/cmake-bringup/lib/rossym/dwarfinfo.c
    branches/cmake-bringup/lib/rossym/dwarfopen.c
    branches/cmake-bringup/lib/rossym/dwarfpc.c
    branches/cmake-bringup/lib/rossym/find.c
    branches/cmake-bringup/lib/rossym/fromfile.c
    branches/cmake-bringup/lib/rossym/initum.c
    branches/cmake-bringup/lib/rossym/pe.c
    branches/cmake-bringup/lib/rossym/pe.h
    branches/cmake-bringup/lib/rossym/rossympriv.h
    branches/cmake-bringup/ntoskrnl/include/internal/kd.h
    branches/cmake-bringup/ntoskrnl/kdbg/i386/i386-dis.c
    branches/cmake-bringup/ntoskrnl/kdbg/kdb_cli.c
    branches/cmake-bringup/ntoskrnl/kdbg/kdb_symbols.c
    branches/cmake-bringup/ntoskrnl/ke/bug.c

[This mail would be too long, it was shortened to contain the URLs only.]

Modified: branches/cmake-bringup/include/reactos/rossym.h
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/include/reactos/rossym.h?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/CMakeLists.txt?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/compat.h
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/compat.h?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarf.h
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarf.h?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfabbrev.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfabbrev.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfaranges.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfaranges.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfcfa.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfcfa.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfget.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfget.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfinfo.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfinfo.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfopen.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfopen.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/dwarfpc.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/dwarfpc.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/find.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/find.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/fromfile.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/fromfile.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/initum.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/initum.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/pe.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/pe.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/pe.h
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/pe.h?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/lib/rossym/rossympriv.h
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/rossym/rossympriv.h?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/ntoskrnl/include/internal/kd.h
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/ntoskrnl/include/internal/kd.h?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/ntoskrnl/kdbg/i386/i386-dis.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/ntoskrnl/kdbg/i386/i386-dis.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/ntoskrnl/kdbg/kdb_cli.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/ntoskrnl/kdbg/kdb_cli.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/ntoskrnl/kdbg/kdb_symbols.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/ntoskrnl/kdbg/kdb_symbols.c?rev=52027&r1=52026&r2=52027&view=diff

Modified: branches/cmake-bringup/ntoskrnl/ke/bug.c
URL: 
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/ntoskrnl/ke/bug.c?rev=52027&r1=52026&r2=52027&view=diff


Reply via email to