26 lines
635 B
C#
26 lines
635 B
C#
|
using ARMeilleure.CodeGen.Unwinding;
|
||
|
using System;
|
||
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
||
|
namespace ARMeilleure.Translation.Cache
|
||
|
{
|
||
|
struct CacheEntry : IComparable<CacheEntry>
|
||
|
{
|
||
|
public int Offset { get; }
|
||
|
public int Size { get; }
|
||
|
|
||
|
public UnwindInfo UnwindInfo { get; }
|
||
|
|
||
|
public CacheEntry(int offset, int size, UnwindInfo unwindInfo)
|
||
|
{
|
||
|
Offset = offset;
|
||
|
Size = size;
|
||
|
UnwindInfo = unwindInfo;
|
||
|
}
|
||
|
|
||
|
public int CompareTo([AllowNull] CacheEntry other)
|
||
|
{
|
||
|
return Offset.CompareTo(other.Offset);
|
||
|
}
|
||
|
}
|
||
|
}
|