Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | hle: kernel: Rewrite scheduler implementation based on Mesopshere. | bunnei | 2020-12-06 | 1 | -16/+4 |
| | |||||
* | core: arm: Implement InvalidateCacheRange for CPU cache invalidation. | bunnei | 2020-11-29 | 1 | -0/+2 |
| | |||||
* | core: loader: Implement support for loading indexed programs. | bunnei | 2020-11-25 | 1 | -1/+21 |
| | |||||
* | core: Remove unused private Init function for the System class | Lioncash | 2020-11-18 | 1 | -8/+0 |
| | | | | This isn't used, so it can be removed. | ||||
* | core: Make use of [[nodiscard]] with the System class | Lioncash | 2020-11-18 | 1 | -80/+73 |
| | | | | | Given this is a central class, we should flag cases where the return value of some functions not being used is likely a bug. | ||||
* | service: time: Update current time with changes to RTC setting. | bunnei | 2020-10-13 | 1 | -0/+8 |
| | | | | - This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs. | ||||
* | core: Mark GetInstance() as deprecated | Lioncash | 2020-09-26 | 1 | -1/+1 |
| | | | | | This way it's obvious that this function shouldn't be used in any future code. | ||||
* | file_sys/bis_factory: Eliminate usage of the global system accessor | Lioncash | 2020-09-17 | 1 | -2/+2 |
| | |||||
* | Core/Common: Address Feedback. | Fernando Sahmkow | 2020-06-28 | 1 | -2/+2 |
| | |||||
* | Services/NvFlinger: Do vSync in a sepparate thread on Multicore. | Fernando Sahmkow | 2020-06-27 | 1 | -0/+3 |
| | |||||
* | Clang Format. | Fernando Sahmkow | 2020-06-27 | 1 | -2/+0 |
| | |||||
* | General: Fix microprofile on dynarmic/svc, fix wait tree showing which threads were running. | Fernando Sahmkow | 2020-06-27 | 1 | -0/+6 |
| | |||||
* | SVC: Correct GetThreadPriority, SetThreadPriority, GetThreadCoreMask, SetThreadCoreMask, GetCurrentProcessorNumber | Fernando Sahmkow | 2020-06-27 | 1 | -0/+7 |
| | |||||
* | General: Recover Prometheus project from harddrive failure | Fernando Sahmkow | 2020-06-27 | 1 | -20/+14 |
| | | | | | | | This commit: Implements CPU Interrupts, Replaces Cycle Timing for Host Timing, Reworks the Kernel's Scheduler, Introduce Idle State and Suspended State, Recreates the bootmanager, Initializes Multicore system. | ||||
* | core: system: Rename GetDeviceManager -> DeviceManager. | bunnei | 2020-04-17 | 1 | -2/+2 |
| | | | | - More consistent with other system components. | ||||
* | core: device_manager: Add a simple class to manage device RAM. | bunnei | 2020-04-17 | 1 | -0/+7 |
| | |||||
* | core: memory: Move to Core::Memory namespace. | bunnei | 2020-04-17 | 1 | -8/+5 |
| | | | | - helpful to disambiguate Kernel::Memory namespace. | ||||
* | System: Expose Host thread registering routines from kernel. | Fernando Sahmkow | 2020-02-22 | 1 | -0/+6 |
| | |||||
* | Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager. | Fernando Sahmkow | 2020-01-26 | 1 | -5/+5 |
| | | | | This commit instends on better naming the new purpose of this classes. | ||||
* | yuzu: Remove Maxwell debugger | ReinUsesLisp | 2020-01-03 | 1 | -4/+0 |
| | | | | | This was carried from Citra and wasn't really used on yuzu. It also adds some runtime overhead. This commit removes it from yuzu's codebase. | ||||
* | core/memory: Introduce skeleton of Memory class | Lioncash | 2019-11-27 | 1 | -0/+10 |
| | | | | | | | | | Currently, the main memory management code is one of the remaining places where we have global state. The next series of changes will aim to rectify this. This change simply introduces the main skeleton of the class that will contain all the necessary state. | ||||
* | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154) | bunnei | 2019-11-25 | 1 | -0/+1 |
| | | | | | | * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details. | ||||
* | Kernel: Style and Corrections | Fernando Sahmkow | 2019-10-15 | 1 | -2/+2 |
| | |||||
* | Correct PrepareReschedule | Fernando Sahmkow | 2019-10-15 | 1 | -0/+3 |
| | |||||
* | Add interfacing to the Global Scheduler | Fernando Sahmkow | 2019-10-15 | 1 | -0/+7 |
| | |||||
* | Merge pull request #2654 from DarkLordZach/lm-log-rewrite | bunnei | 2019-10-09 | 1 | -0/+8 |
|\ | | | | | lm: Rewrite logger to use core reporting services | ||||
| * | core: Add LM::Manager to system | Zach Hilman | 2019-09-22 | 1 | -0/+8 |
| | | | | | | Allows centralized control over logging mechanisms. | ||||
* | | core/core: Remove unused header | Lioncash | 2019-10-06 | 1 | -1/+0 |
| | | | | | | | | This isn't used anywhere in either the cpp or header file. | ||||
* | | core: Remove Core::CurrentProcess() | Lioncash | 2019-10-06 | 1 | -4/+0 |
| | | | | | | | | | | | | This only encourages the use of the global system instance (which will be phased out long-term). Instead, we use the direct system function call directly to remove the appealing but discouraged short-hand. | ||||
* | | hle/service: Replace global system instance calls with instance-based ones | Lioncash | 2019-10-06 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | Migrates the HLE service code off the use of directly accessing the global system instance where trivially able to do so. This removes all usages of Core::CurrentProcess from the service code, only 8 occurrences of this function exist elsewhere. There's still quite a bit of "System::GetInstance()" being used, however this was able to replace a few instances. | ||||
* | | core/loader: Track the NSO build ID of the current process | Zach Hilman | 2019-09-30 | 1 | -0/+4 |
|/ | |||||
* | Merge pull request #2683 from DarkLordZach/lock-exit | David | 2019-09-22 | 1 | -0/+4 |
|\ | | | | | am: Implement exit locking and self exit commands | ||||
| * | core: Track system exit lock status | Zach Hilman | 2019-09-22 | 1 | -0/+4 |
| | | | | | | | | Used to determine if yuzu should confirm before pausing or stopping a game. | ||||
* | | core: Update RegisterCheatList for new VM | Zach Hilman | 2019-09-22 | 1 | -3/+7 |
|/ | |||||
* | core: Store FileSystemController in core | Zach Hilman | 2019-09-21 | 1 | -0/+8 |
| | |||||
* | Merge pull request #2592 from FernandoS27/sync1 | bunnei | 2019-07-26 | 1 | -0/+10 |
|\ | | | | | Implement GPU Synchronization Mechanisms & Correct NVFlinger | ||||
| * | Gpu: Implement Hardware Interrupt Manager and manage GPU interrupts | Fernando Sahmkow | 2019-07-05 | 1 | -0/+10 |
| | | |||||
* | | core: Remove CurrentArmInterface() global accessor | Lioncash | 2019-07-13 | 1 | -4/+0 |
| | | | | | | | | | | Replaces the final usage of the global accessor function and removes it. Removes one more enabler of global state. | ||||
* | | core: Keep instance of APM Controller | Zach Hilman | 2019-06-29 | 1 | -0/+8 |
|/ | |||||
* | core: Keep track of ARPManager and register current application on boot | Zach Hilman | 2019-06-25 | 1 | -0/+8 |
| | |||||
* | Merge pull request #2482 from DarkLordZach/prepo | bunnei | 2019-06-21 | 1 | -0/+4 |
|\ | | | | | core: Add detailed local reporting feature for development | ||||
| * | loader: Move NSO module tracking to AppLoader | Zach Hilman | 2019-05-26 | 1 | -4/+0 |
| | | | | | | Also cleanup of general stuff | ||||
| * | core: Add Reporter class to take/save reports | Zach Hilman | 2019-05-25 | 1 | -0/+3 |
| | | |||||
| * | core: Track load offsets of NSO modules | Zach Hilman | 2019-05-25 | 1 | -0/+5 |
| | | | | | | | | Needed for backtrace decomposition | ||||
* | | core/loader: Remove LoadKernelSystemMode | Lioncash | 2019-05-29 | 1 | -1/+0 |
|/ | | | | This is a hold-over from Citra and doesn't apply to yuzu. | ||||
* | core: Remove specific applets in favor of AppletManager | Zach Hilman | 2019-04-17 | 1 | -14/+15 |
| | |||||
* | core: Store system-wide ContentProvider for the emulator | Zach Hilman | 2019-03-27 | 1 | -0/+14 |
| | |||||
* | Merge pull request #1933 from DarkLordZach/cheat-engine | bunnei | 2019-03-22 | 1 | -0/+4 |
|\ | | | | | file_sys: Implement parser and interpreter for game memory cheats | ||||
| * | vm_manager: Remove cheat-specific ranges from VMManager | Zach Hilman | 2019-03-05 | 1 | -2/+2 |
| | | |||||
| * | core: Add support for registering and controlling ownership of CheatEngine | Zach Hilman | 2019-03-05 | 1 | -0/+4 |
| | | |||||
* | | core/core: Remove the global telemetry accessor function | Lioncash | 2019-03-04 | 1 | -4/+0 |
|/ | | | | With all usages converted off of it, this function can be removed. | ||||
* | core_timing: Convert core timing into a class | Lioncash | 2019-02-16 | 1 | -0/+10 |
| | | | | | | | | | | | Gets rid of the largest set of mutable global state within the core. This also paves a way for eliminating usages of GetInstance() on the System class as a follow-up. Note that no behavioral changes have been made, and this simply extracts the functionality into a class. This also has the benefit of making dependencies on the core timing functionality explicit within the relevant interfaces. | ||||
* | core/frontend/applets/web_browser: Make OpenPage() non-const | Lioncash | 2019-01-17 | 1 | -6/+7 |
| | | | | | | | | This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur. | ||||
* | core: Add getter and setter for WebBrowserApplet frontend | Zach Hilman | 2018-12-28 | 1 | -1/+6 |
| | |||||
* | Merge pull request #1781 from DarkLordZach/applet-profile-select | bunnei | 2018-12-23 | 1 | -0/+5 |
|\ | | | | | am: Implement HLE profile selector applet | ||||
| * | core: Add getter/setter for ProfileSelector in System | Zach Hilman | 2018-12-03 | 1 | -0/+5 |
| | | |||||
* | | core: Make GetGameFileFromPath function externally accessible | Zach Hilman | 2018-12-03 | 1 | -0/+4 |
|/ | |||||
* | am: Deglobalize software keyboard applet | Zach Hilman | 2018-11-18 | 1 | -0/+5 |
| | |||||
* | core: Add missing const variants of getters for the System class | Lioncash | 2018-10-28 | 1 | -8/+23 |
| | | | | | | Many of the Current<Thing> getters (as well as a few others) were missing const qualified variants, which makes it a pain to retrieve certain things from const qualified references to System. | ||||
* | core_cpu: Make Cpu scheduler instances unique_ptrs instead of shared_ptrs | Lioncash | 2018-10-15 | 1 | -1/+7 |
| | |||||
* | kernel/thread: Use a regular pointer for the owner/current process | Lioncash | 2018-10-10 | 1 | -5/+5 |
| | | | | | | | | | | | There's no real need to use a shared pointer in these cases, and only makes object management more fragile in terms of how easy it would be to introduce cycles. Instead, just do the simple thing of using a regular pointer. Much of this is just a hold-over from citra anyways. It also doesn't make sense from a behavioral point of view for a process' thread to prolong the lifetime of the process itself (the process is supposed to own the thread, not the other way around). | ||||
* | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | 2018-09-15 | 1 | -4/+4 |
| | |||||
* | core: Migrate current_process pointer to the kernel | Lioncash | 2018-09-07 | 1 | -1/+4 |
| | | | | | | | | | | Given we now have the kernel as a class, it doesn't make sense to keep the current process pointer within the System class, as processes are related to the kernel. This also gets rid of a subtle case where memory wouldn't be freed on core shutdown, as the current_process pointer would never be reset, causing the pointed to contents to continue to live. | ||||
* | core: Use a raw pointer in GetGPUDebugContext. | Markus Wick | 2018-09-04 | 1 | -1/+1 |
| | | | | This helper is called very often. The memory ownership shall not be transfered, so just return the raw pointer. | ||||
* | core/core: Replace includes with forward declarations where applicable | Lioncash | 2018-08-31 | 1 | -21/+35 |
| | | | | | | | | | | | The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers. | ||||
* | core: Make the main System class use the PImpl idiom | Lioncash | 2018-08-31 | 1 | -100/+38 |
| | | | | | | | | | | | | | core.h is kind of a massive header in terms what it includes within itself. It includes VFS utilities, kernel headers, file_sys header, ARM-related headers, etc. This means that changing anything in the headers included by core.h essentially requires you to rebuild almost all of core. Instead, we can modify the System class to use the PImpl idiom, which allows us to move all of those headers to the cpp file and forward declare the bulk of the types that would otherwise be included, reducing compile times. This change specifically only performs the PImpl portion. | ||||
* | kernel: Eliminate kernel global state | Lioncash | 2018-08-29 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | As means to pave the way for getting rid of global state within core, This eliminates kernel global state by removing all globals. Instead this introduces a KernelCore class which acts as a kernel instance. This instance lives in the System class, which keeps its lifetime contained to the lifetime of the System class. This also forces the kernel types to actually interact with the main kernel instance itself instead of having transient kernel state placed all over several translation units, keeping everything together. It also has a nice consequence of making dependencies much more explicit. This also makes our initialization a tad bit more correct. Previously we were creating a kernel process before the actual kernel was initialized, which doesn't really make much sense. The KernelCore class itself follows the PImpl idiom, which allows keeping all the implementation details sealed away from everything else, which forces the use of the exposed API and allows us to avoid any unnecessary inclusions within the main kernel header. | ||||
* | Merge pull request #1175 from lioncash/ns | bunnei | 2018-08-28 | 1 | -2/+2 |
|\ | | | | | core: Namespace all code in the arm subdirectory under the Core namespace | ||||
| * | core: Namespace all code in the arm subdirectory under the Core namespace | Lioncash | 2018-08-25 | 1 | -2/+2 |
| | | | | | | | | Gets all of these types and interfaces out of the global namespace. | ||||
* | | Merge pull request #1174 from lioncash/debug | bunnei | 2018-08-27 | 1 | -0/+1 |
|\ \ | | | | | | | debug_utils: Minor individual interface changes | ||||
| * | | debug_utils: Remove unused includes | Lioncash | 2018-08-25 | 1 | -0/+1 |
| |/ | | | | | | | | | Quite a bit of these aren't necessary directly within the debug_utils header and can be removed or included where actually necessary. | ||||
* / | qt: Add filename and title id to window title while running | Zach Hilman | 2018-08-23 | 1 | -0/+7 |
|/ | |||||
* | core: Delete System copy/move constructors and assignment operators | Lioncash | 2018-08-16 | 1 | -0/+6 |
| | | | | | | | | | | | | | | Prevents potentially making copies or doing silly things by accident with the System instance, particularly given our current core is designed (unfortunately) around one instantiable instance. This will prevent the accidental case of: auto instance = System::Instance(); being compiled without warning when it's supposed to be: auto& instance = System::Instance(); | ||||
* | core: Namespace EmuWindow | Lioncash | 2018-08-12 | 1 | -3/+6 |
| | | | | Gets the class out of the global namespace. | ||||
* | loader: Add more descriptive errors | Zach Hilman | 2018-08-10 | 1 | -15/+9 |
| | | | Full list of new errors and descriptions in core/loader/loader.h | ||||
* | core: Port core to VfsFilesystem for file access | Zach Hilman | 2018-08-09 | 1 | -0/+12 |
| | |||||
* | GDBStub works with both Unicorn and Dynarmic now (#941) | Hedges | 2018-08-07 | 1 | -0/+11 |
| | | | | | | * GDBStub works with both Unicorn and Dynarmic now * Tidy up | ||||
* | Merge pull request #912 from lioncash/global-var | bunnei | 2018-08-05 | 1 | -1/+21 |
|\ | | | | | video_core: Eliminate the g_renderer global variable | ||||
| * | video_core: Eliminate the g_renderer global variable | Lioncash | 2018-08-04 | 1 | -1/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | We move the initialization of the renderer to the core class, while keeping the creation of it and any other specifics in video_core. This way we can ensure that the renderer is initialized and doesn't give unfettered access to the renderer. This also makes dependencies on types more explicit. For example, the GPU class doesn't need to depend on the existence of a renderer, it only needs to care about whether or not it has a rasterizer, but since it was accessing the global variable, it was also making the renderer a part of its dependency chain. By adjusting the interface, we can get rid of this dependency. | ||||
* | | Merge pull request #849 from DarkLordZach/xci | bunnei | 2018-08-04 | 1 | -6/+8 |
|\ \ | |/ |/| | XCI and Encrypted NCA Support | ||||
| * | Use more descriptive error codes and messages | Zach Hilman | 2018-08-01 | 1 | -6/+8 |
| | | |||||
* | | core/memory: Get rid of 3DS leftovers | Lioncash | 2018-08-03 | 1 | -2/+1 |
| | | | | | | | | Removes leftover code from citra that isn't needed. | ||||
* | | Merge pull request #892 from lioncash/global | bunnei | 2018-08-03 | 1 | -4/+6 |
|\ \ | | | | | | | video_core: Make global EmuWindow instance part of the base renderer … | ||||
| * | | video_core: Make global EmuWindow instance part of the base renderer class | Lioncash | 2018-08-02 | 1 | -4/+6 |
| |/ | | | | | | | | | | | | | | | | | | | | | Makes the global a member of the RendererBase class. We also change this to be a reference. Passing any form of null pointer to these functions is incorrect entirely, especially given the code itself assumes that the pointer would always be in a valid state. This also makes it easier to follow the lifecycle of instances being used, as we explicitly interact the renderer with the rasterizer, rather than it just operating on a global pointer. | ||||
* / | kernel: Move object class to its own source files | Lioncash | 2018-08-02 | 1 | -1/+1 |
|/ | | | | | | General moving to keep kernel object types separate from the direct kernel code. Also essentially a preliminary cleanup before eliminating global kernel state in the kernel code. | ||||
* | audio_core: Move to audout_u impl. | bunnei | 2018-07-31 | 1 | -7/+0 |
| | | | | - This is necessary so streams are created on the same thread. | ||||
* | core: Add AudioCore to global state. | bunnei | 2018-07-28 | 1 | -0/+7 |
| | |||||
* | Implement exclusive monitor | MerryMage | 2018-07-22 | 1 | -0/+12 |
| | |||||
* | core: Make System's default constructor private | Lioncash | 2018-07-19 | 1 | -0/+2 |
| | | | | | | This makes it a compilation error to construct additional instances of the System class directly, preventing accidental wasteful constructions over and over. | ||||
* | 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 |