Ryujinx/src/ARMeilleure/Translation
David McFarland 3c61d560c3
Fix deadlock in background translation thread shutdown (#7239)
TryDequeue checks for _disposed before taking the lock.  If another
thread calls Dispose before it takes the lock, it won't get woken up by
the PulseAll call, and will deadlock in Monitor.Wait.

Double-checking _disposed with the lock taken should avoid this.
2024-08-27 19:10:24 +02:00
..
Cache editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00
PTC JIT: Coalesce copies on LSRA with simple register preferencing (#6950) 2024-06-19 09:39:29 -03:00
ArmEmitterContext.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
Compiler.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
CompilerContext.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
CompilerOptions.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
ControlFlowGraph.cs JIT: Ensure entry block has no predecessors on RegisterUsage pass (#6951) 2024-06-19 09:25:47 -03:00
DelegateInfo.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
Delegates.cs Replace DelegateHelper with pre-generated delegates (#4867) 2023-05-09 09:02:39 +00:00
DispatcherFunction.cs editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00
Dominance.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
EmitterContext.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
GuestFunction.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
IntervalTree.cs Implement a new JIT for Arm devices (#6057) 2024-01-20 11:11:28 -03:00
RegisterToLocal.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
RegisterUsage.cs JIT: Ensure entry block has no predecessors on RegisterUsage pass (#6951) 2024-06-19 09:25:47 -03:00
RejitRequest.cs Move solution and projects to src 2023-04-27 23:51:14 +02:00
SsaConstruction.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
SsaDeconstruction.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
TranslatedFunction.cs [ARMeilleure] Address dotnet-format issues (#5357) 2023-06-26 07:25:06 +02:00
Translator.cs Implement a new JIT for Arm devices (#6057) 2024-01-20 11:11:28 -03:00
TranslatorCache.cs Replace ReaderWriterLock with ReaderWriterLockSlim (#5785) 2023-10-12 18:11:15 +02:00
TranslatorQueue.cs Fix deadlock in background translation thread shutdown (#7239) 2024-08-27 19:10:24 +02:00
TranslatorStubs.cs Implement a new JIT for Arm devices (#6057) 2024-01-20 11:11:28 -03:00
TranslatorTestMethods.cs editorconfig: Set default encoding to UTF-8 (#5793) 2023-12-04 14:17:13 +01:00