Debugging Chromium on Windows
Posted huangguanyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Debugging Chromium on Windows相关的知识,希望对你有一定的参考价值。
First see get the code for checkout and build instructions.
Getting started
You can use Visual Studio‘s built-in debugger or WinDBG to debug Chromium. You don‘t need to use the IDE to build in order to use the debugger: Ninja is used to build Chromium and most developers invoke it from a command prompt, and then open the IDE for debugging as necessary. To start debugging an executable from the command line:
devenv /debugexe outDebugchrome.exe <options to Chromium can go here>
Profiles
--user-data-dir=c: mpmy_debug_profile (replace the path as necessary)
Chrome debug log
Symbol server
In Visual Studio, this goes in Tools > Options under Debugging > Symbols. You should set up a local cache in a empty directory on your computer.https://chromium-browser-symsrv.commondatastorage.googleapis.com
.sympath+ SRV*c:Symbols*https://chromium-browser-symsrv.commondatastorage.googleapis.com
_NT_SYMBOL_PATH=SRV*C:symbols*https://msdl.microsoft.com/download/symbols;SRV*C:symbols*https://chromium-browser-symsrv.commondatastorage.googleapis.com
Multi-process issues
Chromium can be challenging to debug because of its multi-process architecture. When you select Run in the debugger, only the main browser process will be debugged. The code that actually renders web pages (the Renderer) and the plugins will be in separate processes that‘s not (yet!) being debugged. The ProcessExplorer tool has a process tree view where you can see how these processes are related. You can also get the process IDs associated with each tab from the Chrome Task Manager (right-click on an empty area of the window title bar to open).
Automatically attach to child processes
There are two Visual Studio extensions that enable the debugger to automatically attach to all Chrome processes, so you can debug all of Chrome at once. Microsoft‘s Child Process Debugging Power Tool is a standalone extension for this, and VsChromium is another option that bundles many other additional features. In addition to installing one of these extensions, you must run Visual Studio as Administrator, or it will silently fail to attach to some of Chrome‘s child processes.
Single-process mode
One way to debug issues is to run Chromium in single-process mode. This will allow you to see the entire state of the program without extra work (although it will still have many threads). To use single-process mode, add the command-line flag
--single-process
This approach isn‘t perfect because some problems won‘t manifest themselves in this mode and some features don‘t work and worker threads are still spawned into new processes.
Manually attaching to a child process
--renderer-startup-dialog --no-sandbox
Semi-automatically attaching the debugger to child processes
--wait-for-debugger-children[=filter]The filter, if provided, will fire only if it matches the --type parameter to the process. Values include renderer, plugin (for NPAPI), ppapi, gpu-process, and utility.
Image File Execution Options
Visual Studio hints
Debug visualizers
Don‘t step into trivial functions
- For Visual Studio 2015: C:Program Files (x86)Microsoft Visual Studio 14.0Common7PackagesDebuggerVisualizers (for all users)
or %USERPROFILE%My DocumentsVisual Studio 2015Visualizers (for the current user only) - For Visual Studio 2017 Pro: C:Program Files (x86)Microsoft Visual Studio2017ProfessionalCommon7PackagesDebuggerVisualizers (for all users)
or %USERPROFILE%My DocumentsVisual Studio 2017Visualizers (for the current user only)
V8 and Chromium
chrome.exe --js-flags="--trace_exception --heap_stats"
Note that some V8 command-line flags exist only in the debug build of V8. For a list of all V8 flags try:
chrome.exe --js-flags="--help"
Graphics debugging
Debugging on another machine
- Make the build machine‘s build volume available on the debug machine either by mounting it locally (e.g., Z:) or by crafting a UNC path to it (e.g., \buildersrc)
- Open up a command prompt and change to a local disk
- Run src oolswincopy-installer.bat in the remote checkout by way of the mount (e.g., Z:PATHTOCHECKOUTsrc...) or UNC path (e.g., \buildersrc...). This will copy the installer, DLLs, and PDBs into your debug machine‘s C:out or C:uild (depending on if you‘re rocking the component=shared_library build or not)
- Run C:outDebugmini_installer.exe with the flags of your choice to install Chrome. This can take some time, especially on a slow machine. Watch the Task Manager and wait until mini_installer.exe exits before trying to launch Chrome (by way of the shortcut(s) created by the installer)
- For extra pleasure, add C:outDebug to your _NT_SYMBOL_PATH environment variable
Find memory leaks
- Launch GFlags.exe,
- Enable the user stack trace database (per image below),
- Launch Chrome under the debugger.
- Set a breakpont when chrome.dll loads with "sxe ld chrome.dll".
- Step up, to allow Chrome.dll to initialize.
- Disable the stack trace database in GFlags.exe.
- Continue chrome, optionally detaching the debugger.
umdh -p:<my browser pid> > chrome-browser-leak-umdh-dump.txt
- Application Verifier is a free tool from Microsoft (available as part of the Windows SDK) that can be used to flush out programming errors. Starting with M68 Application Verifier can be enabled for chrome.exe without needing to disable the sandbox. After adding chrome.exe to the list of applications to be stressed you need to expand the list of Basics checks and disable the Leak checks. You may also need to disable Handles and Locks checks depending on your graphics driver and specific Chrome version, but the eventual goal is to have Chrome run with Handles and Locks checks enabled. When bugs are found Chrome will trigger a breakpoint so running all Chrome processes under a debugger is recommended. Chrome will run much more slowly because Application Verifier puts every allocation on a separate page.
- You can check the undocumented ‘Cuzz‘ checkbox in Application Verifier to get the Windows thread scheduler to add some extra randomness in order to help expose race conditions in your code.
- Putting every allocation on a separate page will dramatically affect performance so you may want to only do this for some applications. If you right-click on the Heaps checkbox and select Properties you can edit things like the size range for what allocations go into PageHeap (the page-per-allocation system) and you can set a RandRate percentage to randomly put allocations in PageHeap.
- To put a breakpoint on CreateFile(), add this break point:
{,,kernel32.dll}[email protected]
- {,,kernel32.dll}specifies the DLL (context operator).
- _ prefix means extern "C".
- @28 postfix means _stdcall with the stack pop at the end of the function. i.e. the number of arguments in BYTES.
- You can use DebugView from SysInternals or sawbuck to view LOG() messages that normally goes to stderr on POSIX.
以上是关于Debugging Chromium on Windows的主要内容,如果未能解决你的问题,请参考以下文章
setting up kernel debugging on a vmworkstation virtual machine
WIN10蓝屏,请高手看下debugging tools的分析
Win8.1蓝屏,用Windows Debugging Tool分析出来的结果,求高手帮忙看看
在windows上调试 | Debugging on Windows (Guides: Development) – Electron 中文开发手册 - Break易站