성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>C# - CSharpCodeProvider로 컴파일한 메서드의 실행이 일반 메서드보다 더 빠르다?</h1> <p> 최근에 아주 재미있는 글을 봤습니다. ^^<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Compiling C# Code at Runtime ; <a target='tab' href='http://www.codeproject.com/Tips/715891/Compiling-Csharp-Code-at-Runtime'>http://www.codeproject.com/Tips/715891/Compiling-Csharp-Code-at-Runtime</a> </pre> <br /> 이 코드에서는 동일한 작업을 수행하는 4가지 메서드의 호출 성능을 보여줍니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 1. 원본 메서드 직접 호출 for (int i = 0; i < repetitions; i++) { result = <span style='color: blue; font-weight: bold'>OriginalFunction</span>(2, 3); } public static double <span style='color: blue; font-weight: bold'>OriginalFunction</span>(double x, double y) { return x + 2 * y; } </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 2. 런타임 시에 컴파일한 메서드를 Reflection으로 호출 <span style='color: blue; font-weight: bold'>MethodInfo function</span> = CreateFunction("x + 2 * y"); for (int i = 0; i < repetitions; i++) { result = (double)<span style='color: blue; font-weight: bold'>function.Invoke</span>(null, new object[] { 2, 3 }); } public static MethodInfo CreateFunction(string function) { string code = @" using System; namespace UserFunctions { public class BinaryFunction { <span style='color: blue; font-weight: bold'> public static double Function(double x, double y) { return func_xy; }</span> } } "; string finalCode = code.Replace("func_xy", function); CSharpCodeProvider provider = new CSharpCodeProvider(); CompilerParameters options = new CompilerParameters(); CompilerResults results = <span style='color: blue; font-weight: bold'>provider.CompileAssemblyFromSource</span>(options, finalCode); Type binaryFunction = results.CompiledAssembly.GetType("UserFunctions.BinaryFunction"); return binaryFunction.GetMethod("Function"); } </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 3. 위의 2번 메서드를 Reflection이 아닌 Delegate로 연결해서 호출 var betterFunction = (Func<double, double, double>)<span style='color: blue; font-weight: bold'>Delegate.CreateDelegate</span>(typeof(Func<double, double, double>), <span style='color: blue; font-weight: bold'>function</span>); for (int i = 0; i < repetitions; i++) { result = <span style='color: blue; font-weight: bold'>betterFunction</span>(2, 3); } </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 4. 람다식으로 호출 Func<double, double, double> lambda = (x, y) => x + 2 * y; for (int i = 0; i < repetitions; i++) { result = <span style='color: blue; font-weight: bold'>lambda</span>(2, 3); } </pre> <br /> 흥미로운 것은 이 4가지 호출에 대한 성능을 제시하고 있는데, 그 결과가 이렇습니다.<br /> <br /> <ol> <li><span style='color: blue; font-weight: bold'>Original - time: 92 ms</span></li> <li>Reflection - time: 3686 ms</li> <li><span style='color: blue; font-weight: bold'>Delegate - time: 64 ms</span></li> <li>Lambda - time: 90 ms</li> </ol> <br /> 실제로 저도 해보니 다음과 같은 결과를 얻을 수 있었습니다.<br /> <br /> <ol> <li><span style='color: blue; font-weight: bold'>Original - time: 22.0012 ms</span></li> <li>Reflection - time: 2685.1552 ms</li> <li><span style='color: blue; font-weight: bold'>Delegate - time: 17.0013 ms</span></li> <li>Lambda - time: 25.0018 ms</li> </ol> <br /> 아니... 상식적으로 도저히 이해가 안됩니다. 어떻게 동적으로 컴파일한 메서드를 Delegate로 연결했다고 원본 메서드의 호출 성능을 능가할 수 있다는 것인지...?<br /> <br /> 물론... 마법은 없습니다. ^^<br /> <br /> <hr style='width: 50%' /><br /> <br /> 왜냐하면, 테스트 조건이 Original과 Delegate의 경우에 대해 공정하지 않기 때문입니다. 가장 큰 불공정 요소는 바로 해당 프로젝트가 Debug 모드로 빌드되었다는 점입니다. 즉, Original 메서드는 디버그 모드로 동작하는 반면 CSharpCodeProvider.CompileAssemblyFromSource 메서드는 기본적으로 릴리스 모드로 빌드하기 때문에 대상 메서드의 코드 최적화 차이로 그런 불합리한 성능 결과가 나온 것입니다.<br /> <br /> 동일한 조건을 맞추기 위해 CompileAssemblyFromSource가 디버그 결과물을 내놓도록 다음과 같이 수정하면 어떨까요?<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > CSharpCodeProvider provider = new CSharpCodeProvider(); CompilerParameters options = new CompilerParameters(); <span style='color: blue; font-weight: bold'>options.IncludeDebugInformation = true;</span> CompilerResults results = provider.CompileAssemblyFromSource(options, finalCode); </pre> <br /> 이제 다시 측정을 하면 예상했던 그 결과를 얻을 수 있습니다.<br /> <br /> <ol> <li><span style='color: blue; font-weight: bold'>Original - time: 23.001 ms</span></li> <li>Reflection - time: 2712.1604 ms</li> <li><span style='color: blue; font-weight: bold'>Delegate - time: 25.9992 ms</span></li> <li>Lambda - time: 25.0102 ms</li> </ol> <br /> 반대로 조건을 릴리스로 맞추기 위해 "options.IncludeDebugInformation = true;" 코드를 삭제하고 전체 프로젝트를 릴리스로 빌드하면 이런 결과를 얻게 됩니다.<br /> <br /> <ol> <li><span style='color: blue; font-weight: bold'>Original - time: 1.9997 ms</span></li> <li>Reflection - time: 2685.1459 ms</li> <li>Delegate - time: 18.0013 ms</li> <li>Lambda - time: 14.0009 ms</li> </ol> <br /> 이번엔 Delegate보다 Original 메서드의 성능이 급격하게 올라갔습니다. 이유는? Original 메서드에 대해서는 C# 컴파일러가 인라인 최적화를 할 수 있었기 때문입니다. 이번엔 Delegate와의 공정함을 맞추기 위해 Original 메서드 측에 인라인 금지 특성을 지정해야 합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > <span style='color: blue; font-weight: bold'>[MethodImpl(MethodImplOptions.NoInlining)]</span> public static double OriginalFunction(double x, double y) { return x + 2 * y; } </pre> <br /> 성능 비교 결과입니다.<br /> <br /> <ol> <li><span style='color: blue; font-weight: bold'>Original - time: 9.9999 ms</span></li> <li>Reflection - time: 2681.1545 ms</li> <li>Delegate - time: 18.001 ms</li> <li>Lambda - time: 14.0016 ms</li> </ol> <br /> 그래도 Original 메서드가 Delegate에 비해 2배 이상 빠릅니다. 바로 이것이 ^^ "당연한 결과"입니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> 참고로 여기서 한 단계 더 나아가 JIT 컴파일로 인한 성능 간섭 문제를 없애기 위해 전체 메서드를 미리 한번씩 호출하는 작업을 해야 합니다. 이럴 경우 람다 호출에 대한 성능이 미약하나마 쪼끔 더 올라갑니다.<br /> <br /> <ol> <li>Original - time: 9.0101 ms</li> <li>Reflection - time: 2647.1532 ms</li> <li>Delegate - time: 19.0008 ms</li> <li><span style='color: blue; font-weight: bold'>Lambda - time: 12.0016 ms</span></li> </ol> <br /> 어쨌든 변하지 않는 것은 원본 메서드의 성능이 가장 좋다는 것입니다.<br /> <br /> (<a target='tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=831&boardid=331301885'>첨부 파일에는 제가 테스트한 환경의 코드가 담겨</a> 있습니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1586
(왼쪽의 숫자를 입력해야 합니다.)