aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Allocators.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Allocators.cs')
-rw-r--r--ARMeilleure/Allocators.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/ARMeilleure/Allocators.cs b/ARMeilleure/Allocators.cs
new file mode 100644
index 00000000..df762f4c
--- /dev/null
+++ b/ARMeilleure/Allocators.cs
@@ -0,0 +1,38 @@
+using ARMeilleure.Common;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace ARMeilleure
+{
+ static class Allocators
+ {
+ [ThreadStatic] private static ArenaAllocator _default;
+ [ThreadStatic] private static ArenaAllocator _operands;
+ [ThreadStatic] private static ArenaAllocator _operations;
+ [ThreadStatic] private static ArenaAllocator _references;
+
+ public static ArenaAllocator Default => GetAllocator(ref _default, 256 * 1024, 4);
+ public static ArenaAllocator Operands => GetAllocator(ref _operands, 64 * 1024, 8);
+ public static ArenaAllocator Operations => GetAllocator(ref _operations, 64 * 1024, 8);
+ public static ArenaAllocator References => GetAllocator(ref _references, 64 * 1024, 8);
+
+ [MethodImpl(MethodImplOptions.AggressiveInlining)]
+ private static ArenaAllocator GetAllocator(ref ArenaAllocator alloc, uint pageSize, uint pageCount)
+ {
+ if (alloc == null)
+ {
+ alloc = new ArenaAllocator(pageSize, pageCount);
+ }
+
+ return alloc;
+ }
+
+ public static void ResetAll()
+ {
+ Default.Reset();
+ Operands.Reset();
+ Operations.Reset();
+ References.Reset();
+ }
+ }
+}