Microsoft MVP성태의 닷넷 이야기
닷넷: 2208. C# - GCHandle 구조체의 메모리 분석 [링크 복사], [링크+제목 복사],
조회: 2491
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)

C# - GCHandle 구조체의 메모리 분석

GCHandle을 역어셈블하면 다음과 같이 별다른 메모리 할당이 없지만,

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Runtime.CompilerServices;

namespace System.Runtime.InteropServices
{
    public partial struct GCHandle
    {
        [MethodImpl(MethodImplOptions.InternalCall)]
        private static extern IntPtr InternalAlloc(object? value, GCHandleType type);

        [MethodImpl(MethodImplOptions.InternalCall)]
        internal static extern void InternalFree(IntPtr handle);

#if DEBUG
        // The runtime performs additional checks in debug builds
        [MethodImpl(MethodImplOptions.InternalCall)]
        internal static extern object? InternalGet(IntPtr handle);
#else
        internal static unsafe object? InternalGet(IntPtr handle) =>
            Unsafe.As<IntPtr, object>(ref *(IntPtr*)(nint)handle);
#endif

        [MethodImpl(MethodImplOptions.InternalCall)]
        internal static extern void InternalSet(IntPtr handle, object? value);

        [MethodImpl(MethodImplOptions.InternalCall)]
        internal static extern object? InternalCompareExchange(IntPtr handle, object? value, object? oldValue);
    }
}

소스코드를 직접 찾아보면,

// https://github.com/microsoft/referencesource/blob/master/mscorlib/system/runtime/interopservices/gchandle.cs
namespace System.Runtime.InteropServices
{    
    // ...[생략]...

    [StructLayout(LayoutKind.Sequential)]
    [System.Runtime.InteropServices.ComVisible(true)]
    public struct GCHandle
    {
        // ...[생략]...

        // The actual integer handle value that the EE uses internally.
        private IntPtr m_handle;

#if MDA_SUPPORTED
        // The GCHandle cookie table.
        static private volatile GCHandleCookieTable s_cookieTable = null;
        static private volatile bool s_probeIsActive = false;
#endif
    }
}

IntPtr 타입의 m_handle 필드를 하나 가지고 있습니다. windbg를 이용하면 좀 더 재미있는 사실들을 알 수 있는데요, 예를 들어, GCHandle로 다음과 같이 코드를 만들어,

using System.Runtime.InteropServices;

namespace ConsoleApp1;

internal class Program
{
    static unsafe void Main(string[] args)
    {
        {
            MyObject obj = new MyObject();
            GCHandle gcHandle = GCHandle.Alloc(obj, GCHandleType.Pinned);

            GCHandle* pHandle = &gcHandle;
            Console.WriteLine($"{(nint)pHandle:x}");

            fixed(int* pAge = &(obj.Age))
            {
                Console.WriteLine($"{(nint)pAge:x}");
            }

            Console.ReadLine();

            gcHandle.Free();
        }
    }
}

public class MyObject
{
    public int Age = 0;
}

실행하면 화면에는 이런 결과가 출력됩니다.

583bb7e8e0 // GCHandle의 스택 주소
1ee7640e100 // MyObject의 Age 필드가 위치한 힙 주소

이때 windbg를 붙여 GCHandle 정보를 살펴보면,

0:000> !name2ee System.Private.CoreLib.dll!System.Runtime.InteropServices.GCHandle
Module:      00007ff7b77d4000
Assembly:    System.Private.CoreLib.dll
Token:       00000000020004FC
MethodTable: 00007ff7b7a8bcb0
EEClass:     00007ff7b7a72cf0
Name:        System.Runtime.InteropServices.GCHandle

0:000> !DumpClass /d 00007ff7b7a72cf0
Class Name:      System.Runtime.InteropServices.GCHandle
mdToken:         00000000020004FC
File:            C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.14\System.Private.CoreLib.dll
Parent Class:    00007ff7b77d0f88
Module:          00007ff7b77d4000
Method Table:    00007ff7b7a8bcb0
Vtable Slots:    5
Total Method Slots:  5
Class Attributes:    100109  
NumInstanceFields:   1
NumStaticFields:     0
              MT    Field   Offset                 Type VT     Attr            Value Name
00007ff7b7979270  40010ec        8        System.IntPtr  1 instance           _handle

소스코드에서 봤던 바로 그 _handle 필드를 볼 수 있습니다. 아울러 화면에 출력된 GCHandle의 스택 주소를 이용해 그 값이 현재 무엇인지 덤프해 보면,

0:000> dq 583bb7e8e0 L1
00000058`3bb7e8e0  000001ee`736d15f1

...f1으로 1비트까지 설정된 주소를 가리키는, 아주 희한한 값이 나옵니다. 보통 64비트 시스템이면 8바이트 정렬일 것이고, 위의 경우 핸들이 추상화된 정보라는 것을 감안해도 정보를 담기 위해서는 적어도 1비트보다는 (보통은) 클 것이기 때문입니다. 확인을 위해 이 상태에서 gchandle 테이블을 나열해 보면,

0:000> !gchandles
          Handle Type                  Object     Size             Data Type
000001EE736D1178 WeakShort   000001ee7641eaf0       40                  System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[[System.Byte, System.Private.CoreLib]]
000001EE736D1180 WeakShort   000001ee76419320       72                  System.Threading.Thread
...[생략]...
000001EE736D15F0 Pinned      000001ee7640e0f8       24                  ConsoleApp1.MyObject
000001EE736D15F8 Pinned      000001ee76400200       24                  System.Object
...[생략]...

원래 주소는 000001EE736D15F0임을 알 수 있습니다. 그러니까, 아마도 1비트가 표시된 것은 직접적인 메모리 주소라기보다는 어차피 8바이트 정렬이기 때문에 그 이하의 비트를 부가적인 정보를 보관하는 용도로 사용했을 거라는 추측을 할 수 있습니다. (실제로 윈도우 핸들의 경우 Lockbit 표시로 활용합니다.)

어쨌든, 000001ee`736d15f1의 실제 주소는 000001ee`736d15f0임을 알 수 있고, 해당 주소를 덤프해 보면 예상할 수 있는 그 값이 나옵니다.

0:000> dq 000001ee`736d15f0 L1
000001ee`736d15f0  000001ee`7640e0f8

000001ee`7640e0f8 값은 화면에 출력했던 MyObject의 Age 필드가 위치한 힙 주소(1ee7640e100)보다 정확히 0x08 앞에 위치한 값에 해당합니다. (왜냐하면 실제 데이터보다 앞선 MethodTable의 주소를 가리키기 때문입니다.)

정리해 보면, GCHandle 구조체는 Handle 테이블의 주소를 가리키고, 다시 그 핸들 테이블은 원래 개체에 대한 주소를 담고 있습니다.




참고로, GCHandle의 Pinning은 위의 코드에서처럼 명시적으로 사용하는 경우 외에도 JIT 컴파일러가 자동으로 Pinning하는 경우도 있습니다.

그 한 사례가 바로 코드에서 사용한 문자열 리터럴인데요, 간단하게 다음의 코드로 예를 들어 보면,

// (반드시) .NET 7 이하의 환경에서 빌드

namespace ConsoleApp2;

internal class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine(Program.Test());
        Console.ReadLine();
    }

    public static string Test() => "Hello";
}

windbg에서 Program.Test 메서드의 jit 코드가 이렇게 나옵니다.

0:014> !name2ee ConsoleApp2!ConsoleApp2.Program.Test
Module:      00007ff83c8dcf50
Assembly:    ConsoleApp2.dll
Token:       0000000006000007
MethodDesc:  00007ff83c8def50
Name:        ConsoleApp2.Program.Test()
JITTED Code Address: 00007ff83c813bc0

0:014> !U /d 00007ff83c813bc0
Normal JIT generated code
ConsoleApp2.Program.Test()
ilAddr is 000001B28A1B20C1 pImport is 00000256A37FC0E0
Begin 00007FF83C813BC0, size 2d

c:\temp\ConsoleApp1\ConsoleApp2\Program.cs @ 13:
>>> 00007ff8`3c813bc0 55              push    rbp
00007ff8`3c813bc1 57              push    rdi
00007ff8`3c813bc2 56              push    rsi
00007ff8`3c813bc3 4883ec20        sub     rsp,20h
00007ff8`3c813bc7 488bec          mov     rbp,rsp
00007ff8`3c813bca 833d27960c0000  cmp     dword ptr [00007ff8`3c8dd1f8],0
00007ff8`3c813bd1 7405            je      00007ff8`3c813bd8
00007ff8`3c813bd3 e8e828c45f      call    coreclr!JIT_DbgIsJustMyCode (00007ff8`9c4564c0)
00007ff8`3c813bd8 48b83084008cb2010000 mov rax,1B28C008430h
00007ff8`3c813be2 488b00          mov     rax,qword ptr [rax]
00007ff8`3c813be5 488d6520        lea     rsp,[rbp+20h]
00007ff8`3c813be9 5e              pop     rsi
00007ff8`3c813bea 5f              pop     rdi
00007ff8`3c813beb 5d              pop     rbp
00007ff8`3c813bec c3              ret

예상할 수 있듯이, 위의 코드에서 1B28C008430h 값은 gc handle 테이블의 위치이고, 그 주소([rax])에 보관하고 있는 값은 실제 String 개체를 가리킵니다.

0:014> dq 1B28C008430h L1
000001b2`8c008430  000001b2`8e815378

0:014> !do 000001b2`8e815378
Name:        System.String
MethodTable: 00007ff83c7ffd18
EEClass:     00007ff83c7ea740
Tracked Type: false
Size:        32(0x20) bytes
File:        C:\Program Files\dotnet\shared\Microsoft.NETCore.App\7.0.14\System.Private.CoreLib.dll
String:      Hello
Fields:
              MT    Field   Offset                 Type VT     Attr            Value Name
00007ff83c77e8d8  4000308        8         System.Int32  1 instance                5 _stringLength
00007ff83c7a63a8  4000309        c          System.Char  1 instance               48 _firstChar
00007ff83c7ffd18  4000307      100        System.String  0   static 000001b28e800218 Empty

0:014> db 000001b2`8e815378+0x0c LA
000001b2`8e815384  48 00 65 00 6c 00 6c 00-6f 00                    H.e.l.l.o.

여기서 재미있는 건, 저런 식으로 Pinning한 개체는 GC Handle 테이블에 등록되지 않습니다.

0:014> !gchandles
          Handle Type                  Object     Size             Data Type
000001B28A1C1178 WeakShort   000001b28e81ea98       40                  System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[[System.Byte, System.Private.CoreLib]]
...[생략]...
000001B28A1C1DF8 AsyncPinned 000001b28e81ef88       72                  System.Threading.OverlappedData

보는 바와 같이 1B28C008430h 주소는 저 범위(000001B28A1C1178 ~ 000001B28A1C1DF8)에 없는데요, 대신 POH 영역에 위치하게 됩니다.

0:014> !eeheap
...[생략]...
========================================
Number of GC Heaps: 1
----------------------------------------
Small object heap
         segment            begin        allocated        committed allocated size   committed size  
generation 0:
    01f29fe0f320     01b28e800020     01b28e822fe8     01b28e831000 0x22fc8 (143304) 0x31000 (200704)
generation 1:
    01f29fe0f270     01b28e400020     01b28e400020     01b28e401000                  0x1000 (4096)   
generation 2:
    01f29fe0f1c0     01b28e000020     01b28e000020     01b28e001000                  0x1000 (4096)   
Large object heap
         segment            begin        allocated        committed allocated size   committed size  
    01f29fe0f3d0     01b28ec00020     01b28ec00020     01b28ec01000                  0x1000 (4096)   
Pinned object heap
         segment            begin        allocated        committed allocated size   committed size  
    01f29fe0ec40     01b28c000020     01b28c008c18     01b28c011000 0x8bf8 (35832)   0x11000 (69632) 
------------------------------
GC Allocated Heap Size:    Size: 0x2bbc0 (179136) bytes.
GC Committed Heap Size:    Size: 0x45000 (282624) bytes.

Total bytes consumed by CLR: 0x295000 (2707456)

그런데, 저렇게 처리한 것이 잘 이해는 안 됩니다. 원래 POH 영역은 Pinning 시킨 데이터를 위한 공간입니다. 그런데, 문자열 리터럴의 경우 해당 문자열 자체는 generation 0 힙 위치에 저장하면서, 그 문자열을 가리키는 GCHandle 값만 (GCHandle 테이블이 아닌) POH 영역에 보관하고 있는 것입니다.



(2024-04-05: 업데이트)

Lesser known CLR GC Handles
; https://www.awise.us/2024/03/31/gc-handle.html




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 4/5/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 16  [17]  18  19  20  21  22  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13213정성태1/9/20235471오류 유형: 836. docker 이미지 빌드 시 "RUN apt install ..." 명령어가 실패하는 이유
13212정성태1/8/20235243기타: 85. 단정도/배정도 부동 소수점의 정밀도(Precision)에 따른 형변환 손실
13211정성태1/6/20235271웹: 42. (https가 아닌) http 다운로드를 막는 웹 브라우저
13210정성태1/5/20234374Windows: 219. 윈도우 x64의 경우 0x00000000`7ffe0000 아래의 주소는 왜 사용하지 않을까요?
13209정성태1/4/20234273Windows: 218. 왜 윈도우에서 가상 메모리 공간은 64KB 정렬이 된 걸까요?
13208정성태1/3/20234260.NET Framework: 2086. C# - Windows 운영체제의 2MB Large 페이지 크기 할당 방법파일 다운로드1
13207정성태12/26/20224529.NET Framework: 2085. C# - gpedit.msc의 "User Rights Assignment" 특권을 코드로 설정/해제하는 방법파일 다운로드1
13206정성태12/24/20224778.NET Framework: 2084. C# - GetTokenInformation으로 사용자 SID(Security identifiers) 구하는 방법 [3]파일 다운로드1
13205정성태12/24/20225050.NET Framework: 2083. C# - C++과의 연동을 위한 구조체의 fixed 배열 필드 사용 (2)파일 다운로드1
13204정성태12/22/20224406.NET Framework: 2082. C# - (LSA_UNICODE_STRING 예제로) CustomMarshaler 사용법파일 다운로드1
13203정성태12/22/20224604.NET Framework: 2081. C# Interop 예제 - (LSA_UNICODE_STRING 예제로) 구조체를 C++에 전달하는 방법파일 다운로드1
13202정성태12/21/20224981기타: 84. 직렬화로 설명하는 Little/Big Endian파일 다운로드1
13201정성태12/20/20225551오류 유형: 835. PyCharm 사용 시 C 드라이브 용량 부족
13200정성태12/19/20224446오류 유형: 834. 이벤트 로그 - SSL Certificate Settings created by an admin process for endpoint
13199정성태12/19/20224697개발 환경 구성: 656. Internal Network 유형의 스위치로 공유한 Hyper-V의 VM과 호스트가 통신이 안 되는 경우
13198정성태12/18/20224606.NET Framework: 2080. C# - Microsoft.XmlSerializer.Generator 처리 없이 XmlSerializer 생성자를 예외 없이 사용하고 싶다면?파일 다운로드1
13197정성태12/17/20224485.NET Framework: 2079. .NET Core/5+ 환경에서 XmlSerializer 사용 시 System.IO.FileNotFoundException 예외 발생하는 경우파일 다운로드1
13196정성태12/16/20224657.NET Framework: 2078. .NET Core/5+를 위한 SGen(Microsoft.XmlSerializer.Generator) 사용법
13195정성태12/15/20225157개발 환경 구성: 655. docker - bridge 네트워크 모드에서 컨테이너 간 통신 시 --link 옵션 권장 이유
13194정성태12/14/20225222오류 유형: 833. warning C4747: Calling managed 'DllMain': Managed code may not be run under loader lock파일 다운로드1
13193정성태12/14/20225309오류 유형: 832. error C7681: two-phase name lookup is not supported for C++/CLI or C++/CX; use /Zc:twoPhase-
13192정성태12/13/20225354Linux: 55. 리눅스 - bash shell에서 실수 연산
13191정성태12/11/20226255.NET Framework: 2077. C# - 직접 만들어 보는 SynchronizationContext파일 다운로드1
13190정성태12/9/20226753.NET Framework: 2076. C# - SynchronizationContext 기본 사용법파일 다운로드1
13189정성태12/9/20227514오류 유형: 831. Visual Studio - Windows Forms 디자이너의 도구 상자에 컨트롤이 보이지 않는 문제
13188정성태12/9/20226216.NET Framework: 2075. C# - 직접 만들어 보는 TaskScheduler 실습 (SingleThreadTaskScheduler)파일 다운로드1
... 16  [17]  18  19  20  21  22  23  24  25  26  27  28  29  30  ...