mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
87 lines
3.2 KiB
C#
87 lines
3.2 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Microsoft.Iris.Markup.MarkupLineNumberTable
|
|
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
|
|
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
|
|
// Assembly location: C:\Program Files\Zune\UIX.dll
|
|
|
|
namespace Microsoft.Iris.Markup
|
|
{
|
|
public class MarkupLineNumberTable
|
|
{
|
|
private const ulong OFFSET_MASK = 0x3F_FFFFUL;
|
|
private const uint OFFSET_MAX = 0x3F_FFFF;
|
|
private const ulong LINE_MASK = 0x7FF_FFC0_0000UL;
|
|
private const int LINE_SHIFT = 22;
|
|
private const uint LINE_MAX = 0x1F_FFFF;
|
|
private const ulong COLUMN_MASK = 0xFFFF_F800_0000_0000UL;
|
|
private const int COLUMN_SHIFT = 43;
|
|
private const uint COLUMN_MAX = 0x1F_FFFF;
|
|
private Vector<ulong> _lookupTable;
|
|
private ulong[] _runtimeList;
|
|
|
|
public MarkupLineNumberTable() => _lookupTable = new Vector<ulong>();
|
|
|
|
public MarkupLineNumberTable(ulong[] runtimeList) => _runtimeList = runtimeList;
|
|
|
|
public void AddRecord(uint offset, int line, int column)
|
|
{
|
|
ulong num = Pack(offset, line, column);
|
|
if (_lookupTable.Count > 0 && (int)UnpackOffset(_lookupTable[_lookupTable.Count - 1]) == (int)offset)
|
|
_lookupTable[_lookupTable.Count - 1] = num;
|
|
else
|
|
_lookupTable.Add(num);
|
|
}
|
|
|
|
public void PrepareForRuntimeUse()
|
|
{
|
|
_runtimeList = new ulong[_lookupTable.Count];
|
|
for (int index = 0; index < _lookupTable.Count; ++index)
|
|
_runtimeList[index] = _lookupTable[index];
|
|
_lookupTable = null;
|
|
}
|
|
|
|
public bool TryLookup(uint offset, out int line, out int column)
|
|
{
|
|
int length = _runtimeList.Length;
|
|
int index = 0;
|
|
while (index < length && (offset < UnpackOffset(_runtimeList[index]) || index != length - 1 && offset >= UnpackOffset(_runtimeList[index + 1])))
|
|
++index;
|
|
if (index < length)
|
|
{
|
|
line = UnpackLine(_runtimeList[index]);
|
|
column = UnpackColumn(_runtimeList[index]);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
line = -1;
|
|
column = -1;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
internal ulong[] PersistList => _runtimeList;
|
|
|
|
public Vector<Debug.Data.MarkupLineNumberEntry> DumpTable()
|
|
{
|
|
Vector<Debug.Data.MarkupLineNumberEntry> knownLines = new();
|
|
|
|
for (int index = 0; index < _runtimeList.Length; ++index)
|
|
{
|
|
var value = _runtimeList[index];
|
|
knownLines.Add(new(UnpackOffset(value), UnpackLine(value), UnpackColumn(value)));
|
|
}
|
|
|
|
return knownLines;
|
|
}
|
|
|
|
private static ulong Pack(uint offset, int line, int column) => (ulong)(offset | (long)line << LINE_SHIFT | (long)column << COLUMN_SHIFT);
|
|
|
|
private static uint UnpackOffset(ulong value) => (uint)(value & OFFSET_MASK);
|
|
|
|
private static int UnpackLine(ulong value) => (int)((value & LINE_MASK) >> LINE_SHIFT);
|
|
|
|
private static int UnpackColumn(ulong value) => (int)((value & COLUMN_MASK) >> COLUMN_SHIFT);
|
|
}
|
|
}
|