タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

.NETとCLRに関するbraitomのブックマーク (2)

  • A Hitchhikers Guide to the CoreCLR Source Code

    A Hitchhikers Guide to the CoreCLR Source Code 23 Mar 2017 - 5109 words photo by Alan O’Rourke Just over 2 years ago Microsoft open-sourced the entire .NET framework, this posts attempts to provide a ‘Hitchhikers Guide’ to the source-code found in the CoreCLR GitHub repository. To make it easier for you to get to the information you’re interested in, this post is split into several parts Overall S

    braitom
    braitom 2017/03/26
    .NET CoreのランタイムであるCoreCLRのリポジトリをソースコードリーディングするためのヒッチハイクガイド。
  • CLR Optimizations in .NET Framework 3.5 SP1 Spell Efficiency

    起動パフォーマンスの向上 .NET Framework 3.5 SP1 では、起動パフォーマンスの向上、特にマネージ アプリケーションのコールド起動時間の短縮に重点を置きました。 .NET Framework のマネージ アセンブリは主に NGen (「NGen によるパフォーマンス上の利点」を参照) でプリコンパイルされるため、NGen イメージのコードとデータのレイアウトは、フレームワークを使用するアプリケーションの起動パフォーマンスに大きく影響します。特に、コールド起動時間は一般的にディスクから読み取る必要のあるイメージのページ数に関連しているため、その起動時間を短縮するには、イメージをうまくパックして起動時に読み取るページのサブセットを非常に小さくする必要があります。 そのために、CLR ではプロファイル駆動型のエンジンを使用して、.NET Framework アセンブリの NGe

    CLR Optimizations in .NET Framework 3.5 SP1 Spell Efficiency
  • 1