Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | core: Add several missing docstrings. | bunnei | 2018-05-11 | 1 | -0/+8 |
| | |||||
* | core: Run all CPU cores separately, even in single-thread mode. | bunnei | 2018-05-11 | 1 | -7/+3 |
| | |||||
* | threading: Reschedule only on cores that are necessary. | bunnei | 2018-05-11 | 1 | -0/+2 |
| | |||||
* | core: Add a configuration setting for use_multi_core. | bunnei | 2018-05-11 | 1 | -8/+2 |
| | |||||
* | core: Support session close with multicore. | bunnei | 2018-05-11 | 1 | -1/+1 |
| | |||||
* | core: Implement multicore support. | bunnei | 2018-05-11 | 1 | -10/+16 |
| | |||||
* | core: Create a thread for each CPU core, keep in lock-step with a barrier. | bunnei | 2018-05-11 | 1 | -7/+17 |
| | |||||
* | core: Move common CPU core things to its own class. | bunnei | 2018-05-11 | 1 | -10/+6 |
| | |||||
* | core: Relocate g_service_manager to the System class | Lioncash | 2018-04-21 | 1 | -0/+12 |
| | | | | | Converts the service manager from a global into an instance-based variable. | ||||
* | core, main.h: Abort on 32Bit ROMs (#309) | N00byKing | 2018-04-06 | 1 | -0/+1 |
| | | | | | | * core, main.h: Abort on 32Bit ROMs * main.cpp: Fix Grammar | ||||
* | GPU: Make the debug_context variable a member of the frontend instead of a global. | Subv | 2018-03-25 | 1 | -0/+11 |
| | |||||
* | Merge pull request #193 from N00byKing/3184_2_robotic_boogaloo | bunnei | 2018-03-19 | 1 | -2/+2 |
|\ | | | | | Implement Pull #3184 from citra: core/arm: Improve timing accuracy before service calls in JIT (Rebased) | ||||
| * | Implements citra-emu/citra#3184 | N00byKing | 2018-02-25 | 1 | -2/+2 |
| | | |||||
* | | core: Move process creation out of global state. | bunnei | 2018-03-14 | 1 | -0/+11 |
| | | |||||
* | | kernel: Use Scheduler class for threading. | bunnei | 2018-02-18 | 1 | -0/+6 |
| | | |||||
* | | core: Use shared_ptr for cpu_core. | bunnei | 2018-02-18 | 1 | -3/+1 |
|/ | |||||
* | Make a GPU class in VideoCore to contain the GPU state. | Subv | 2018-02-12 | 1 | -0/+7 |
| | | | | Also moved the GPU MemoryManager class to video_core since it makes more sense for it to be there. | ||||
* | Correct Spelling | N00byKing | 2018-01-23 | 1 | -2/+2 |
| | |||||
* | core: Increase tight_loop 100x for speed. | bunnei | 2018-01-04 | 1 | -1/+1 |
| | |||||
* | core: Expose AppLoader as a public interface. | bunnei | 2017-08-04 | 1 | -4/+5 |
| | |||||
* | Addressed Bunnei's review comments, and made some other tweaks: | TheKoopaKingdom | 2017-06-03 | 1 | -9/+7 |
| | | | | | - Deleted GetStatus() because it wasn't used anywhere outside of Core::System. - Fixed design flaw where the message bar status could be set despite the game being stopped. | ||||
* | Created a whitelist of system archives to prevent false positives creating dialogs. | TheKoopaKingdom | 2017-06-03 | 1 | -9/+3 |
| | |||||
* | Optimized messages that were repetitive and added ability for core errors to specify more details optionally. | TheKoopaKingdom | 2017-06-03 | 1 | -2/+15 |
| | |||||
* | Made some changes from review comments: | TheKoopaKingdom | 2017-06-03 | 1 | -1/+0 |
| | | | | | | | | - Made LoadKernelSystemMode return a pair consisting of a system mode and a result code (Could use review). - Deleted ErrorOpenGL error code in favor of just having ErrorVideoCore. - Made dialog messages more clear. - Compared archive ID in fs_user.cpp to ArchiveIdCode::NCCH as opposed to hex magic. - Cleaned up some other stuff. | ||||
* | Added system for handling core errors in citra-qt. | TheKoopaKingdom | 2017-06-03 | 1 | -0/+13 |
| | |||||
* | core: Keep track of telemetry for the current emulation session. | bunnei | 2017-05-25 | 1 | -0/+16 |
| | |||||
* | Core: Re-write frame limiter | Yuri Kunde Schlesner | 2017-02-27 | 1 | -0/+1 |
| | | | | | | | | | Now based on std::chrono, and also works in terms of emulated time instead of frames, so we can in the future frame-limit even when the display is disabled, etc. The frame limiter can also be enabled along with v-sync now, which should be useful for those with displays running at more than 60 Hz. | ||||
* | Core: Make PerfStats internally locked | Yuri Kunde Schlesner | 2017-02-27 | 1 | -2/+1 |
| | | | | More ergonomic to use and will be required for upcoming changes. | ||||
* | Add performance statistics to status bar | Yuri Kunde Schlesner | 2017-02-27 | 1 | -1/+6 |
| | |||||
* | core: inline CPU, 132 warnings fixed on GCC | Kloen | 2017-01-30 | 1 | -1/+1 |
| | |||||
* | ThreadContext: Move from "core" to "arm_interface". | bunnei | 2016-12-22 | 1 | -11/+0 |
| | |||||
* | core: Replace "AppCore" nomenclature with just "CPU". | bunnei | 2016-12-22 | 1 | -9/+9 |
| | |||||
* | Address clang-format issues. | bunnei | 2016-12-22 | 1 | -12/+13 |
| | |||||
* | core: Remove HLE module, consolidate code & various cleanups. | bunnei | 2016-12-22 | 1 | -11/+17 |
| | |||||
* | core: Consolidate core and system state, remove system module & cleanups. | bunnei | 2016-12-22 | 1 | -33/+99 |
| | |||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 1 | -2/+2 |
| | |||||
* | Improve error report from Init() functions | LittleWhite | 2016-03-08 | 1 | -1/+1 |
| | | | | Add error popup when citra initialization failed | ||||
* | core: Use unique_ptr for holding the interpreter instances | Lioncash | 2015-12-30 | 1 | -2/+3 |
| | |||||
* | Core/ARM11: Correct the size of the VFP register array in the ThreadContext structure. | Subv | 2015-11-29 | 1 | -1/+1 |
| | | | | The VFP registers are 64 bits each, and there are 32 of them. | ||||
* | dyncom: Remove more unused/unnecessary code | Lioncash | 2015-04-20 | 1 | -3/+0 |
| | | | | Gets rid of a sizeable amount of stuff in armdefs. | ||||
* | arm: Clean up ARMul_State | Lioncash | 2015-02-01 | 1 | -1/+0 |
| | | | | Remove unnecessary/unused struct variables. | ||||
* | arm: Adios armemu | Lioncash | 2015-02-01 | 1 | -5/+0 |
| | |||||
* | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 2015-01-09 | 1 | -2/+18 |
| | |||||
* | Core: Change default CPU to dyncom. | bunnei | 2015-01-03 | 1 | -1/+1 |
| | |||||
* | License change | purpasmart96 | 2014-12-21 | 1 | -1/+1 |
| | |||||
* | Core: Changed RunLoop iterations to 1000 (slightly better performance). | bunnei | 2014-11-12 | 1 | -6/+6 |
| | |||||
* | Use configuration files to enable or disable the new dyncom interpreter. | archshift | 2014-10-28 | 1 | -0/+5 |
| | |||||
* | ARM: Reorganized file structure to move shared SkyEye code to a more common area. | bunnei | 2014-10-25 | 1 | -1/+1 |
| | | | | Removed s_ prefix | ||||
* | Core: Refactor core to use only one function for execution. | bunnei | 2014-08-31 | 1 | -2/+9 |
| | | | | | | Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable. | ||||
* | fixed project includes to use new directory structure | bunnei | 2014-04-09 | 1 | -2/+2 |
| | |||||
* | got rid of 'src' folders in each sub-project | bunnei | 2014-04-09 | 1 | -0/+40 |