DebuggableAttribute.IsJITOptimizerDisabled プロパティ
定義
ランタイム オプティマイザーを無効にするかどうかを示す値を取得します。Gets a value that indicates whether the runtime optimizer is disabled.
public:
property bool IsJITOptimizerDisabled { bool get(); };
public bool IsJITOptimizerDisabled { get; }
member this.IsJITOptimizerDisabled : bool
Public ReadOnly Property IsJITOptimizerDisabled As Boolean
プロパティ値
ランタイム オプティマイザーが無効の場合は true
。それ以外の場合は false
。true
if the runtime optimizer is disabled; otherwise, false
.
注釈
値をにすると、 true
ランタイムデバッグのパフォーマンスが向上し、実行パフォーマンスが低下する可能性があります。A value of true
enhances performance for runtime debugging, which can cause a decline in execution performance. 値をにすると、 false
実行のパフォーマンスが向上します。A value of false
enhances performance for execution. IsJITOptimizerDisabledがに設定されている場合、コードをステップ実行すると、が false
に設定されている場合とは異なる動作をする場合があり true
ます。これは、コンパイラが命令の順序を変更したり、一般的なコードにジャンプを挿入したりWhen IsJITOptimizerDisabled is set to false
, stepping through code might result in a different behavior than when set to true
because the compiler might reorder instructions or insert jumps to common code.