| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-24 | physical_core: Make use of std::make_unique instead of std::make_shared in ctor | Lioncash | |
| We can also allow unicorn to be constructed in 32-bit mode or 64-bit mode to satisfy the need for both interpreter instances. Allows this code to compile successfully of non x86-64 architectures. | |||
| 2020-04-23 | Merge pull request #3777 from lioncash/warn | Rodrigo Locatti | |
| page_table: Remove unused captures | |||
| 2020-04-23 | Merge pull request #3778 from lioncash/unused-var | Rodrigo Locatti | |
| svc: Remove unused variable | |||
| 2020-04-23 | shared_memory: Amend doxygen reference | Lioncash | |
| Amends the parameter to match the documentation reference. Resolves a -Wdocumentation warning with clang. | |||
| 2020-04-23 | svc: Re-add MapProcessCodeMemory/UnmapProcessCodeMemory | Lioncash | |
| These were lost in the re-implementation of the virtual memory manager. | |||
| 2020-04-23 | svc: Remove unused variable | Lioncash | |
| Since the VMM refactor, this is no longer used or needed. | |||
| 2020-04-23 | page_table: Remove unused captures | Lioncash | |
| Any time the lambda function is called, the permission being used in the capture would be passed in as an argument to the lambda, so the capture is unnecessary. | |||
| 2020-04-23 | kernel: memory: Improve implementation of device shared memory. (#3707) | bunnei | |
| * kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory. | |||
| 2020-04-23 | Merge pull request #3730 from lioncash/time | bunnei | |
| service/time: Remove reliance on the global system accessor | |||
| 2020-04-23 | Merge pull request #3697 from lioncash/declarations | bunnei | |
| CMakeLists: Enable -Wmissing-declarations on Linux builds | |||
| 2020-04-22 | Merge pull request #3725 from MerryMage/fpcr | bunnei | |
| thread: FPCR.FZ is likely not 1 (and FPCR.RMode = TieAway and FPCR.DN = 0) | |||
| 2020-04-21 | Merge pull request #3698 from lioncash/warning | bunnei | |
| General: Resolve minor assorted warnings | |||
| 2020-04-20 | audio_renderer: Preliminary BehaviorInfo (#3736) | David | |
| * audio_renderer: Preliminary BehaviorInfo * clang format * Fixed IsRevisionSupported * fixed IsValidRevision * Fixed logic error & spelling errors & crash * Addressed issues | |||
| 2020-04-20 | service: Update function tables | Lioncash | |
| Keeps the service function tables up to date. Updated based off information on SwitchBrew. | |||
| 2020-04-20 | npad: Lower log level for VibrateController to Debug | FearlessTobi | |
| 2020-04-20 | audren: Lower log level for RequestUpdateImpl to Debug | FearlessTobi | |
| 2020-04-20 | Merge pull request #3712 from lioncash/remove | bunnei | |
| service: Remove unused RequestParser instances | |||
| 2020-04-20 | Merge pull request #3709 from lioncash/am | bunnei | |
| am: Resolve ineffective moves | |||
| 2020-04-19 | service/time: Remove reliance on the global system accessor | Lioncash | |
| Eliminates usages of the global system accessor and instead passes the existing system instance into the interfaces. | |||
| 2020-04-19 | Merge pull request #3696 from lioncash/cast-size | bunnei | |
| hle_ipc: Remove std::size_t casts where applicable | |||
| 2020-04-19 | thread: FPCR.FZ is likely not 1 | MerryMage | |
| 2020-04-18 | Merge pull request #3715 from bunnei/fix-impl-fallthrough | Mat M | |
| service: hid: npad: Fix implicit fallthrough errors. | |||
| 2020-04-18 | service: hid: npad: Fix implicit fallthrough errors. | bunnei | |
| 2020-04-17 | Merge pull request #3713 from lioncash/time | bunnei | |
| service/time: Minor changes | |||
| 2020-04-17 | time/system_clock_core: Remove unnecessary initializer | Lioncash | |
| This is already initialized within the class body. | |||
| 2020-04-17 | service/time: Mark IsStandardNetworkSystemClockAccuracySufficient as const | Lioncash | |
| This doesn't modify internal member state. | |||
| 2020-04-17 | service/time: Add virtual destructors where applicable | Lioncash | |
| Many of these implementations are used to implement a polymorphic interface. While not directly used polymorphically, this prevents virtual destruction from ever becoming an issue. | |||
| 2020-04-17 | service: Remove unused RequestParser instances | Lioncash | |
| These aren't used, so they should be removed to reduce compilation warnings. | |||
| 2020-04-17 | memory/slab_heap: Make use of static_cast over reinterpret_cast | Lioncash | |
| Casting from void* with static_cast is permitted by the standard, so we can just make use of that instead. | |||
| 2020-04-17 | am: Resolve ineffective moves | Lioncash | |
| Previously const objects were being std::moved, which results in no move actually occurring. This resolves that. | |||
| 2020-04-17 | core: hle: Address various feedback & code cleanup. | bunnei | |
| - Should be no functional changes. | |||
| 2020-04-17 | memory: Add copyright notice for Atmosphere where applicable. | bunnei | |
| 2020-04-17 | kernel: Remove old VMManager class. | bunnei | |
| 2020-04-17 | service: ldr: Updates for new VMM. | bunnei | |
| - Includes removing some service impls. that are untested. | |||
| 2020-04-17 | kernel: memory: page_table: Simplify GetPhysicalAddr impl. | bunnei | |
| 2020-04-17 | kernel: svc: Updates for new VMM. | bunnei | |
| - Includes removing some SVC impls. that are untested. | |||
| 2020-04-17 | kernel: process: Updates for new VMM. | bunnei | |
| 2020-04-17 | service: pl_u: Update for new shared memory layout. | bunnei | |
| 2020-04-17 | service: time: Update for new shared memory layout. | bunnei | |
| 2020-04-17 | service: hid: Update for new shared memory layout. | bunnei | |
| 2020-04-17 | service: irs: Update for new shared memory layout. | bunnei | |
| 2020-04-17 | kernel: resource_limit: Reserve physical memory. | bunnei | |
| 2020-04-17 | kernel: Initialize memory layout for new VMM. | bunnei | |
| 2020-04-17 | core: system: Rename GetDeviceManager -> DeviceManager. | bunnei | |
| - More consistent with other system components. | |||
| 2020-04-17 | kernel: transfer_memory: Refactor for new VMM. | bunnei | |
| 2020-04-17 | kernel: shared_memory: Refactor for new VMM. | bunnei | |
| 2020-04-17 | kernel: errors: Add ERR_OUT_OF_RESOURCES. | bunnei | |
| 2020-04-17 | kernel: process_capability: Update to use Memory::PageTable. | bunnei | |
| 2020-04-17 | kernel: memory: Add PageTable class, to manage process address space. | bunnei | |
| 2020-04-17 | kernel: memory: Add MemoryLayout class, to build physical memory layout. | bunnei | |
