私は非常に大きく以下の類似していたいくつかのコードがあります。次のようにこの呼び出しはどこから来たのですか?
class C {
string s;
static C a = new C();
static void Main() {
C b = a;
b.s = "hello";
}
Main
方法の解体は、リリースモードでは、次のとおりです。
C b = a;
00000000 push ebp
00000001 mov ebp,esp
00000003 push eax
00000004 cmp dword ptr ds:[04581D9Ch],0
0000000b je 00000012
0000000d call 763B3BC3
00000012 xor edx,edx
00000014 mov dword ptr [ebp-4],edx
00000017 mov eax,dword ptr ds:[01B24E20h] ; Everything up to this point
0000001c mov dword ptr [ebp-4],eax ; is fairly clear.
b.s = "hello";
0000001f mov eax,dword ptr ds:[01B22088h] ; Loads the address of "hello"
00000025 mov ecx,dword ptr [ebp-4] ; Loads the address of b
00000028 lea edx,[ecx+4] ; Loads the address of (the reference to?) b.s
0000002b call 76100AE0 ; ??
}
00000030 nop
00000031 mov esp,ebp
00000033 pop ebp
00000034 ret
なぜ呼び出し、私は理解していませんnbで必要です。 b.s
とs
のアドレスが引数として渡されているようですが、これは単純なポインタ割り当てであるため、なぜこれが必要ですか?
null
を割り当てる。。)
正しい説明のようです。 MSDNはそのメソッド(メソッド)にWrite Barrierを呼び出します。 –
@HenkHolterman、あなたはリンクを提供できますか? – svick
[ガベージコレクタの基本とパフォーマンスのヒント](http://msdn.microsoft.com/en-us/library/ms973837.aspx)ページの半分を下に –