1 | /* $Id: DBGFModule.cpp 12541 2008-09-17 12:59:55Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VMM DBGF - Debugger Facility, Module & Segment Management.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /** @page pg_dbgf_module DBGFModule - Module & Segment Management
|
---|
24 | *
|
---|
25 | * A module is our representation of an executable binary. It's main purpose
|
---|
26 | * is to provide segments that can be mapped into address spaces and thereby
|
---|
27 | * provide debug info for those parts for the guest code or data.
|
---|
28 | *
|
---|
29 | * This module will not deal directly with debug info, it will only serve
|
---|
30 | * as an interface between the debugger / symbol lookup and the debug info
|
---|
31 | * readers.
|
---|
32 | *
|
---|
33 | * An executable binary doesn't need to have a file, or that is, we don't
|
---|
34 | * need the file to create a module for it. There will be interfaces for
|
---|
35 | * ROMs to register themselves so we can get to their symbols, and there
|
---|
36 | * will be interfaces for the guest OS plugins (@see pg_dbgf_os) to
|
---|
37 | * register kernel, drivers and other global modules.
|
---|
38 | */
|
---|
39 |
|
---|
40 |
|
---|