summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | physical_core: Make use of std::make_unique instead of std::make_shared in ctorGravatar Lioncash2020-04-244-8/+15
| | | | | | | | | | | | | | | | | | | | | 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.
* | | kernel: Bad GetInfo ids should not be marked as stubsGravatar David Marcec2020-04-291-2/+2
| | | | | | | | | | | | As we currently match hardware and don't return a successful result, these should be marked as errors instead of warnings and as stubs.
* | | style: Change AMs & Glues error codes to be dec instead of hexGravatar David Marcec2020-04-292-7/+7
| |/ |/| | | | | Consistency for the rest of the error codes in the codebase
* | Merge pull request #3785 from ogniK5377/set-buffer-count-unitGravatar bunnei2020-04-271-1/+9
|\ \ | | | | | | vi: Don't let uninitialized data pass as a response for SetBufferCount
| * | vi: Don't let uninitialized data pass as a response for SetBufferCountGravatar David Marcec2020-04-241-1/+9
| | | | | | | | | | | | Currently SetBufferCount doesn't write to the out buffer which then contains uninitialized data. This leads to non-zero data which leads to responding with different error codes
* | | Merge pull request #3797 from slashiee/hid-stubGravatar Mat M2020-04-272-1/+13
|\ \ \ | | | | | | | | services: hid: Stub StopSevenSixAxisSensor.
| * | | services: hid: Stub StopSevenSixAxisSensor.Gravatar M&M2020-04-252-1/+13
| | | | | | | | | | | | | | | | - Used by The Legend of Zelda: Breath of the Wild v1.6.0
* | | | Merge pull request #3742 from FernandoS27/command-listGravatar bunnei2020-04-271-0/+1
|\ \ \ \ | | | | | | | | | | Optimize GPU Command Lists and Introduce Fast GPU Time Option
| * | | | GPU: Add Fast GPU Time Option.Gravatar Fernando Sahmkow2020-04-231-0/+1
| | | | |
* | | | | Merge pull request #3744 from lioncash/table2Gravatar bunnei2020-04-2619-7/+108
|\ \ \ \ \ | |_|/ / / |/| | | | service: Update function tables
| * | | | service: Update function tablesGravatar Lioncash2020-04-2019-7/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Keeps the service function tables up to date. Updated based off information on SwitchBrew.
* | | | | 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.