Class MemoryRegion
- Namespace
- DotCompute.Abstractions.Analysis
- Assembly
- DotCompute.Abstractions.dll
Represents a memory region accessed in complexity analysis.
public record MemoryRegion : IEquatable<MemoryRegion>
- Inheritance
-
MemoryRegion
- Implements
- Inherited Members
Properties
Alignment
Gets the access alignment.
public int Alignment { get; init; }
Property Value
BaseOffset
Gets the base address offset.
public long BaseOffset { get; init; }
Property Value
IsReadOnly
Gets whether the region is read-only.
public bool IsReadOnly { get; init; }
Property Value
Size
Gets the size of the region in bytes.
public long Size { get; init; }
Property Value
Type
Gets the region type.
public MemoryRegionType Type { get; init; }