summaryrefslogtreecommitdiffstats
path: root/src/core/arm/exclusive_monitor.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* dynarmic: Inline exclusive memory accessesmerry2022-02-271-1/+1
| | | | | | | | | | | | | | | Inlines implementation of exclusive instructions into JITted code, improving performance of applications relying heavily on these instructions. We also fastmem these instructions for additional speed, with support for appropriate recompilation on fastmem failure. An unsafe optimization to disable the intercore global_monitor is also provided, should one wish to rely solely on cmpxchg semantics for safety. See also: merryhime/dynarmic#664
* ARM: Addapt to new Exclusive Monitor Interface.Fernando Sahmkow2020-06-271-5/+5
|
* ARM/Memory: Correct Exclusive Monitor and Implement Exclusive Memory Writes.Fernando Sahmkow2020-06-271-1/+5
|
* core: memory: Move to Core::Memory namespace.bunnei2020-04-171-1/+1
| | | | - helpful to disambiguate Kernel::Memory namespace.
* System: Address FeedbackFernando Sahmkow2020-01-271-2/+3
|
* ArmInterface: Delegate Exclusive monitor factory to exclusive monitor interfasce.Fernando Sahmkow2020-01-261-1/+9
|
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-6/+6
|
* core: Namespace all code in the arm subdirectory under the Core namespaceLioncash2018-08-251-0/+4
| | | | Gets all of these types and interfaces out of the global namespace.
* exclusive_monitor: Use consistent type alias for u64Lioncash2018-07-241-8/+6
| | | | | Uses the same type aliases we use for virtual addresses, and converts one lingering usage of std::array<uint64_t, 2> to u128 for consistency.
* Implement exclusive monitorMerryMage2018-07-221-0/+23