Upgraded target framework to .NET 10 across all projects to leverage new features and improve performance. Refactored `JobScheduler` to fix method naming inconsistencies and ensure proper resource disposal. Enhanced `AllocationManager` with safer memory operations and better performance handling. Simplified `ReadOnlyUnsafeCollection` enumerator logic for efficiency. Overhauled `UnsafeBitSet` with new properties, improved bitwise operations, and optimized memory management. Updated `UnsafeSlotMap` and `ConcurrentSlotMap` for better validation and naming consistency. Revised `MemoryLeakException` to use `ReadOnlySpan` for improved performance. Simplified `MathematicsBenchmark` logic and integrated `BenchmarkDotNet` for testing. Added AOT compatibility settings for `Debug` and `Release` configurations. Introduced unit tests for `UnsafeBitSet` to validate functionality. Cleaned up unused code, improved readability, and ensured consistent naming conventions. Updated project references and metadata for consistency. Enabled inline methods for `NET10_0_OR_GREATER` in `VectorGenerator`.
56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
using Misaki.HighPerformance.LowLevel.Buffer;
|
|
using System.Diagnostics;
|
|
using System.Text;
|
|
|
|
namespace Misaki.HighPerformance.LowLevel;
|
|
|
|
/// <summary>
|
|
/// An exception that is thrown when a memory leak is detected.
|
|
/// </summary>
|
|
/// <param name="Infos">An array of AllocationInfo containing details about the memory leaks.</param>
|
|
public class MemoryLeakException : Exception
|
|
{
|
|
private readonly string _message;
|
|
|
|
public override string Message => _message;
|
|
|
|
public MemoryLeakException(ReadOnlySpan<AllocationInfo> infos)
|
|
{
|
|
var stringBuilder = new StringBuilder();
|
|
stringBuilder.AppendLine($"Found {infos.Length} memory lakes!");
|
|
|
|
foreach (var info in infos)
|
|
{
|
|
stringBuilder.AppendLine(GetMessage(info.StackTrace));
|
|
}
|
|
|
|
_message = stringBuilder.ToString();
|
|
}
|
|
|
|
public MemoryLeakException(string message)
|
|
{
|
|
_message = message;
|
|
}
|
|
|
|
private static string GetMessage(StackTrace? stackTrace)
|
|
{
|
|
if (stackTrace == null)
|
|
{
|
|
return "No stack trace available.";
|
|
}
|
|
|
|
var stringBuilder = new StringBuilder();
|
|
stringBuilder.AppendLine("Memory leak detected at: ");
|
|
|
|
for (var i = 0; i < stackTrace.FrameCount; i++)
|
|
{
|
|
var frame = stackTrace.GetFrame(i);
|
|
if (frame != null)
|
|
{
|
|
stringBuilder.AppendLine($"File: {frame.GetFileName()}, Method: {DiagnosticMethodInfo.Create(frame)?.Name}, Line: {frame.GetFileLineNumber()}");
|
|
}
|
|
}
|
|
|
|
return stringBuilder.ToString();
|
|
}
|
|
} |