Microsoft MVP성태의 닷넷 이야기
The JIT does dead-code elimination in Debuggable code [링크 복사], [링크+제목 복사],
조회: 11656
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

출처: http://blogs.msdn.com/jmstall/archive/2006/03/13/dead_code_elimination.aspx

The JIT does dead-code elimination in Debuggable code

The desktop CLR JIT (at least x86) does dead-code elimination, even in debuggable code. This is obviously perfectly safe, transparent, (and good), from a program-execution perspective. But it can be a little surprising under the debugger because you can't set-next-statement (setip) to eliminated code.

In other words, if you have this C# code:
    Console.WriteLine("Hi!");
    if (false) {
        Console.WriteLine("Boo!"); // <-- can't setip here
    }
    Console.WriteLine("Bye");

You couldn't Set-next-statement to the "Boo!" line.  Normally this is fine, but every now and then it gets me. I think code-generators are more likely to produce code like that than a real person.

However, the JIT will not remove side-effect free expressions in debuggable code. For example,
    void Foo() {
        int x = 5;
        x ++;
    }

The JIT will not remove either of those lines, even though 'x' is unused and so they don't actually do anything for program behavior. This means you can still set and hit breakpoints on those lines, which is what you'd expect from debuggable (non-optimized) code.

In optimized-code, anything's fair game and a function like Foo() would very likely be optimized out of existence.

Published Monday, March 13, 2006 5:44 PM by jmstall

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

You can also stay up to date using your favorite aggregator by subscribing to the CommentRss Feed








[최초 등록일: ]
[최종 수정일: 4/14/2006]


비밀번호

댓글 작성자
 




... 16  17  18  19  20  21  22  23  24  25  26  27  [28]  29  30  ...
NoWriterDateCnt.TitleFile(s)
500정성태11/2/200612686TFS : 50. TfsAlert 0.3.0.0 릴리스
499정성태11/2/200613143개발 환경 구성: 50. VS.NET, .NET Framework QFE 패치
498정성태11/4/200612810TFS : 49. Team Foundation Administrator's Guide 문서 업데이트
497정성태11/1/200612749개발 환경 구성: 49. IE 7 의 "Search Provider" 기능 소개
496정성태11/4/200612247.NET : 26. Download the New Composite UI Application Block Reference Application from IdeaBlade
495정성태11/1/200612294개발 환경 구성: 48. XamlPadX (extended)
494정성태11/1/200613212TFS : 48. SandCastle Team Build targets 파일파일 다운로드1
493정성태10/31/200612491VS.NET IDE : 12. [Orcas] TreeDiff 지원
492정성태10/31/200612865개발 환경 구성: 47. SandCastle 과 NAnt 의 결합
491정성태10/28/200613144SDK : 4. PE/COFF 스펙
490정성태11/4/200617408.NET : 25. C# "const" 키워드와 "static readonly"의 차이
489정성태10/28/200613545Visual C++ : 4. VC++ 8.0 override 키워드 이해 [1]
488정성태10/26/200612911TFS : 47. TFS Application Tier 로부터 Sharepoint 분리해서 설치하는 방법
487정성태10/26/200613334TFS : 46. Project Server 2003 - Team Foundation connector released
486정성태10/25/200612184개발 환경 구성: 46. VS.NET Addin - 디렉터리 단위로 링크 방식으로 파일 추가
485정성태10/23/200612988.NET 3.0 : 5. WinFX (.NET 3.0) Series Presentation Slides
484정성태10/20/200612641개발 환경 구성: 45. Microsoft Best Practices Analyzer 1.0
483정성태10/20/200612400.NET 3.0 : 4. HostNameComparisonMode 의 이해
482정성태10/29/200612777TFS : 45. TeamPlain 1.1 now available
481정성태10/19/200612889TFS : 44. Project Server 2003 and Visual Studio Team System 2005 connector available!
480정성태10/19/200612597개발 환경 구성: 44. IE 7 에 포함된 RSS Platform MiniSDK파일 다운로드1
479정성태10/18/200613230x64 : 2. dynamic_cast is slow in x64
478정성태10/18/200612976개발 환경 구성: 43. IE 7 에서 달라지는 Accept-Language 헤더
477정성태10/18/200612841.NET : 24. ADO.Net 성능 향상 팁
476정성태10/18/200614045TFS : 43. WorkItem 항목 삭제
475정성태11/8/200613236개발 환경 구성: 42. VHD 파일을 가상 하드 디스크로 설정하는 방법파일 다운로드1
... 16  17  18  19  20  21  22  23  24  25  26  27  [28]  29  30  ...