|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Diagnostics.DataContractReader.Contracts;
namespace Microsoft.Diagnostics.DataContractReader.Data;
internal sealed class UnwindInfo : IData<UnwindInfo>
{
static UnwindInfo IData<UnwindInfo>.Create(Target target, TargetPointer address)
=> new UnwindInfo(target, address);
public UnwindInfo(Target target, TargetPointer address)
{
Target.TypeInfo type = target.GetTypeInfo(DataType.UnwindInfo);
if (type.Fields.ContainsKey(nameof(FunctionLength)))
{
// The unwind info contains the function length on some platforms (x86)
FunctionLength = target.ReadField<uint>(address, type, nameof(FunctionLength));
}
else
{
// Otherwise, it starts with a bitfield header
Header = target.Read<uint>(address);
}
}
public uint? FunctionLength { get; }
public uint? Header { get; }
}
|