Skip to content

ReadyToRunCodeRangeKind

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

What a ReadyToRunCodeRange represents within a precompiled method’s body. An R2R method owns one hot entry, zero or more funclets, and an optional disjoint cold range.

public enum ReadyToRunCodeRangeKind

The method’s cold range, split out via the hot/cold map.

Returns: ReadyToRunCodeRangeKind

Cold = 2

A funclet (exception handler / filter) that follows the hot entry.

Returns: ReadyToRunCodeRangeKind

Funclet = 1

The method’s hot entry point — the range its entry runtime function starts.

Returns: ReadyToRunCodeRangeKind

HotEntry = 0