summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3780 from lioncash/processGravatar bunnei2020-04-241-2/+138
|\ | | | | svc: Re-add MapProcessCodeMemory/UnmapProcessCodeMemory
| * svc: Re-add MapProcessCodeMemory/UnmapProcessCodeMemoryGravatar Lioncash2020-04-231-2/+138
| | | | | | | | These were lost in the re-implementation of the virtual memory manager.
* | Merge pull request #3777 from lioncash/warnGravatar Rodrigo Locatti2020-04-231-2/+2
|\ \ | | | | | | page_table: Remove unused captures
| * | page_table: Remove unused capturesGravatar Lioncash2020-04-231-2/+2
| |/ | | | | | | | | | | 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.
* | Merge pull request #3778 from lioncash/unused-varGravatar Rodrigo Locatti2020-04-231-3/+0
|\ \ | | | | | | svc: Remove unused variable
| * | svc: Remove unused variableGravatar Lioncash2020-04-231-3/+0
| |/ | | | | | | Since the VMM refactor, this is no longer used or needed.
* / shared_memory: Amend doxygen referenceGravatar Lioncash2020-04-232-5/+5
|/ | | | | | Amends the parameter to match the documentation reference. Resolves a -Wdocumentation warning with clang.
* kernel: memory: Improve implementation of device shared memory. (#3707)Gravatar bunnei2020-04-235-3/+105
| | | | | | | * 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.
* Merge pull request #3730 from lioncash/timeGravatar bunnei2020-04-231-24/+26
|\ | | | | service/time: Remove reliance on the global system accessor
| * service/time: Remove reliance on the global system accessorGravatar Lioncash2020-04-191-24/+26
| | | | | | | | | | Eliminates usages of the global system accessor and instead passes the existing system instance into the interfaces.
* | Merge pull request #3697 from lioncash/declarationsGravatar bunnei2020-04-233-10/+5
|\ \ | | | | | | CMakeLists: Enable -Wmissing-declarations on Linux builds
| * | General: Resolve warnings related to missing declarationsGravatar Lioncash2020-04-163-10/+5
| | |
* | | Merge pull request #3677 from FernandoS27/better-syncGravatar bunnei2020-04-223-4/+33
|\ \ \ | | | | | | | | Introduce Predictive Flushing and Improve ASYNC GPU
| * | | Correct Linux Compile Error.Gravatar Fernando Sahmkow2020-04-222-7/+10
| | | |
| * | | UI: Replasce accurate GPU option for GPU Accuracy LevelGravatar Fernando Sahmkow2020-04-223-4/+30
| | | |
* | | | Merge pull request #3725 from MerryMage/fpcrGravatar bunnei2020-04-221-2/+1
|\ \ \ \ | | | | | | | | | | thread: FPCR.FZ is likely not 1 (and FPCR.RMode = TieAway and FPCR.DN = 0)
| * | | | thread: FPCR.FZ is likely not 1Gravatar MerryMage2020-04-191-2/+1
| | | | |
* | | | | Merge pull request #3699 from FearlessTobi/port-5185Gravatar bunnei2020-04-211-4/+3
|\ \ \ \ \ | |_|/ / / |/| | | | Port citra-emu/citra#5185: "gdbstub: Fix some gdbstub jankiness"
| * | | | gdbstub: Fix some gdbstub jankinessGravatar MerryMage2020-04-171-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Ensure that register information available to gdbstub is most up-to-date. 2. There's no reason to check for current_thread == thread when emitting a trap. Doing this results in random hangs whenever a step happens upon a thread switch.
* | | | | Merge pull request #3745 from bunnei/fix-homebrew-loadGravatar bunnei2020-04-215-12/+35
|\ \ \ \ \ | | | | | | | | | | | | Fix process memory initialization for ELF and NRO
| * | | | | loader: nro: Fix process initialization using ProgramMetadata default.Gravatar bunnei2020-04-202-11/+14
| | | | | |
| * | | | | loader: elf: Fix process initialization using ProgramMetadata default.Gravatar bunnei2020-04-201-0/+5
| | | | | |
| * | | | | file_sys: program_metadata: Add a helper function for generating reasonable ↵Gravatar bunnei2020-04-202-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | default metadata. - We need this for homebrew process initialization.
* | | | | | Merge pull request #3698 from lioncash/warningGravatar bunnei2020-04-212-3/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | General: Resolve minor assorted warnings
| * | | | | | key_manager: Resolve missing field initializer warningGravatar Lioncash2020-04-161-1/+2
| | | | | | |
| * | | | | | time_zone_manager: Resolve sign conversion warningsGravatar Lioncash2020-04-161-2/+2
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | ttis and ats will never exceed the length of INT32_MAX in our case, so this is safe.
* | | | | | Merge pull request #3724 from bunnei/fix-unicornGravatar bunnei2020-04-201-0/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | core: arm_unicorn: Fix interpret fallback by temporarily mapping instruction page.
| * | | | | | core: arm_unicorn: Fix interpret fallback by temporarily mapping instruction ↵Gravatar bunnei2020-04-191-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | page.
* | | | | | | audio_renderer: Preliminary BehaviorInfo (#3736)Gravatar David2020-04-201-2/+7
| |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * audio_renderer: Preliminary BehaviorInfo * clang format * Fixed IsRevisionSupported * fixed IsValidRevision * Fixed logic error & spelling errors & crash * Addressed issues
* | | | | | Merge pull request #3739 from MerryMage/disable_cpu_optGravatar Mat M2020-04-202-2/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | dynarmic: Add option to disable CPU JIT optimizations
| * | | | | | dynarmic: Add option to disable CPU JIT optimizationsGravatar MerryMage2020-04-202-2/+9
| | |_|_|_|/ | |/| | | |
* | | | | | npad: Lower log level for VibrateController to DebugGravatar FearlessTobi2020-04-201-1/+1
| | | | | |
* | | | | | audren: Lower log level for RequestUpdateImpl to DebugGravatar FearlessTobi2020-04-201-1/+1
| | | | | |
* | | | | | Merge pull request #3712 from lioncash/removeGravatar bunnei2020-04-202-3/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | service: Remove unused RequestParser instances
| * | | | | | service: Remove unused RequestParser instancesGravatar Lioncash2020-04-172-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These aren't used, so they should be removed to reduce compilation warnings.
* | | | | | | Merge pull request #3709 from lioncash/amGravatar bunnei2020-04-201-2/+2
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | am: Resolve ineffective moves
| * | | | | | am: Resolve ineffective movesGravatar Lioncash2020-04-171-2/+2
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | Previously const objects were being std::moved, which results in no move actually occurring. This resolves that.
* | | | | | Merge pull request #3696 from lioncash/cast-sizeGravatar bunnei2020-04-192-21/+23
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | hle_ipc: Remove std::size_t casts where applicable
| * | | | | hle_ipc: Remove std::size_t casts where applicableGravatar Lioncash2020-04-162-21/+23
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were added in the change that enabled -Wextra on linux builds so as not to introduce interface changes in the same change as a build-system flag addition. Now that the flags are enabled, we can freely change the interface to make these unnecessary.
* | | | | Merge pull request #3710 from lioncash/nsoGravatar bunnei2020-04-181-1/+1
|\ \ \ \ \ | | | | | | | | | | | | loader/nso: Resolve moves not occurring in DecompressSegment
| * | | | | loader/nso: Resolve moves not occurring in DecompressSegmentGravatar Lioncash2020-04-171-1/+1
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Given the std::vector was const, an automatic move out of the function could not occur. We can allow automatic return value optimizations to occur by making the buffer non-const.
* | | | | Merge pull request #3715 from bunnei/fix-impl-fallthroughGravatar Mat M2020-04-181-0/+2
|\ \ \ \ \ | | | | | | | | | | | | service: hid: npad: Fix implicit fallthrough errors.
| * | | | | service: hid: npad: Fix implicit fallthrough errors.Gravatar bunnei2020-04-181-0/+2
| |/ / / /
* | | | | Merge pull request #3713 from lioncash/timeGravatar bunnei2020-04-175-4/+5
|\ \ \ \ \ | | | | | | | | | | | | service/time: Minor changes
| * | | | | time/system_clock_core: Remove unnecessary initializerGravatar Lioncash2020-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This is already initialized within the class body.
| * | | | | service/time: Mark IsStandardNetworkSystemClockAccuracySufficient as constGravatar Lioncash2020-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This doesn't modify internal member state.
| * | | | | service/time: Add virtual destructors where applicableGravatar Lioncash2020-04-173-2/+3
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* / / / / memory/slab_heap: Make use of static_cast over reinterpret_castGravatar Lioncash2020-04-171-2/+2
|/ / / / | | | | | | | | | | | | | | | | Casting from void* with static_cast is permitted by the standard, so we can just make use of that instead.
* | | | core: hle: Address various feedback & code cleanup.Gravatar bunnei2020-04-1711-251/+153
| | | | | | | | | | | | | | | | - Should be no functional changes.
* | | | core: device_memory: Remove incorrect usage of constexpr.Gravatar bunnei2020-04-171-2/+6
| | | |