4

我正在阅读 Advanced .NET Debugging 这本书,我非常喜欢它。但是我对这些例子有一些问题。如果有人读过它帮助我,我将不胜感激。

我有两个问题:

  1. 与构建示例的 .NET 框架的版本是什么?我无法在 windbg(x86) 下运行它们并且它们在 windbg(x64) 下加载,所以我假设它是 64 位版本的框架。但是哪个框架?2.0、3、3.5、4?

  2. 在查看第 2 章中描述的类型句柄(方法表)时,我得到了不同的结果(我的结果和书中显示的内容如下所示)。当然,我不是在谈论地址不同。例如,当我在方法表上 dd 时,我看到 Flags2 字段、NumMethods 字段的不同值。我不知道为什么。在第 56 页作者说对象的大小是 0x14(在我的机器上相同),因为对象有 4 个整数。但是 02TypeSample.cs 的列表只显示了 3 个整数,x、y、z。在我的机器上,dd 在示例中显示 7 时显示 4 个方法。书还说编译器生成了默认 ctor。

    “首先要记住的是,即使我们没有明确定义任何构造函数,C# 编译器也会自动为我们生成一个默认构造函数。

    在列出时,您可以看到 TypeSample 的 ctor 将 3 个整数作为参数。要么是我出了问题,要么是书,要么是例子。它是什么?;)

Method table from the book:
0:000>dd 002930b0
002930b0 00040000 00000014 00070402 00000004
002930c0 790fd0f0 00292c3c 002930f8 00291244
002930d0 00000000 00000000 79371278 7936b3b0
002930e0 7936b3d0 793624d0 003400c8 0029c015
002930f0 0034007000000000 00000080 00000000
00293100 00000000 00000000 00000000 00000000
00293110 00000000 00000000 00000000 00000000
00293120 00000000 00000000 00000000 00000000

My method table:
0:000> dd 00223420 
00223420  00000000 00000014 00040011 00000004
00223430  68b70944 00222fe4 00223458 00221390
00223440  00000000 00000000 68ac6a90 68ac6ab0
00223450  68ac6b20 68b37700 00000080 00000000
00223460  00000000 00000000 00000000 00000000
00223470  00000000 00000000 00000000 00000000
00223480  00000000 00000000 00000000 00000000
00223490  00000000 00000000 00000000 00000000

it shows 4 methods when !dumpmt shows 7

0:000> !dumpmt -md 00223420 
EEClass: 00221390
Module: 00222fe4
Name: Advanced.NET.Debugging.Chapter2.TypeSample
mdToken: 02000002  (F:\Development\Advanced .NET Debugging\adndsrc\Chapter2\TypeSample\TypeSample\bin\Debug\TypeSample.exe)
BaseSize: 0x14
ComponentSize: 0x0
Number of IFaces in IFaceMap: 0
Slots in VTable: 7
--------------------------------------
MethodDesc Table
   Entry MethodDesc      JIT Name
68ac6a90   6894494c   PreJIT System.Object.ToString()
68ac6ab0   68944954   PreJIT System.Object.Equals(System.Object)
68ac6b20   68944984   PreJIT System.Object.GetHashCode()
68b37700   689449a8   PreJIT System.Object.Finalize()
003d00d8   00223398      JIT Advanced.NET.Debugging.Chapter2.TypeSample..ctor(Int32, Int32, Int32)
0022c015   002233a4     NONE Advanced.NET.Debugging.Chapter2.TypeSample.AddCoordinates()
003d0070   002233b0      JIT Advanced.NET.Debugging.Chapter2.TypeSample.Main(System.String[])

4

2 回答 2

1

要构建 X86 程序集,您可以修改构建 XML。提供的 XML 似乎在 64 位窗口上将程序集构建为 X64。

于 2014-01-12T05:52:02.370 回答
1

书的背面说它以 .NET CLR 4.0 为目标。但是,前言的示例代码部分指出所有代码都是使用 C# 和 .NET 2.0 编写的。最后有一章是关于 .NET 4.0 的。

上面命令的输出!dumpmt显然是 32 位 (x86),因为 Entry 列是一个指针。

至于你的第二个问题。您能否指定您所指的示例。

于 2013-02-14T04:36:50.350 回答