aboutsummaryrefslogtreecommitdiff
path: root/src/core/core.cpp
AgeCommit message (Collapse)Author
2016-12-24Core: reset cpu_core in Shutdown to make IsPoweredOn work properlywwylele
2016-12-22core: Replace "AppCore" nomenclature with just "CPU".bunnei
2016-12-21Address clang-format issues.bunnei
2016-12-21core: Remove HLE module, consolidate code & various cleanups.bunnei
2016-12-21core: Consolidate core and system state, remove system module & cleanups.bunnei
2016-12-15gdbstub: Remove global variable from public interfaceLioncash
Currently, this is only ever queried, so adding a function to check if the server is enabled is more sensible. If directly modifying this externally is ever desirable, it should be done by adding a function to the interface, rather than exposing implementation details directly.
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot
2016-09-15core: Add configuration option for CPU JIT.bunnei
2016-05-05Merge pull request #1762 from bunnei/globalbunnei
hle: Get rid of direct global access to g_reschedule
2016-05-05HLE: Rename RescheduleIsPending to IsReschedulePending.bunnei
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage
2016-03-21hle: Get rid of global access to g_rescheduleLioncash
This shouldn't be directly exposed if there's already a partial API that operates on it. We can just provide the rest of that API.
2016-03-08Improve error report from Init() functionsLittleWhite
Add error popup when citra initialization failed
2015-12-29core: Use unique_ptr for holding the interpreter instancesLioncash
2015-10-04Implement gdbstubpolaris-
2015-06-28Core: Cleanup core includes.Emmanuel Gil Peyrot
2015-05-15Memmap: Re-organize memory function in two filesYuri Kunde Schlesner
memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
2015-05-11Thread: Remove the idle threadYuri Kunde Schlesner
Instead just use nullptr to represent no thread is active.
2015-05-10Core/Memory: Give every emulated thread it's own TLS area.Subv
The TLS area for thread T with id Ti is located at TLS_AREA_VADDR + (Ti - 1) * 0x200. This allows some games like Mario Kart 7 to continue further.
2015-05-09Memory: Re-organize and rename memory area address constantsYuri Kunde Schlesner
2015-05-07Common: Remove common.hYuri Kunde Schlesner
2015-04-06core: Migrate 3DS-specific CP15 register setting into InitLioncash
2015-02-12dyncom: Switch the app and system cores into the correct mode at initializationLioncash
2015-01-31arm: Adios armemuLioncash
2015-01-09Thread: Reduce use of Handles and move some funcs to inside the class.Yuri Kunde Schlesner
2015-01-09Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner
2015-01-08Core: Fixed a crash and removed some unused variables.Subv
ARM_Disasm only has static methods, so there's no need to have an instance of it.
2015-01-07Threads: Use a dummy idle thread when no other are ready.Subv
This thread will not actually execute instructions, it will only advance the timing/events and try to yield immediately to the next ready thread, if there aren't any ready threads then it will be rescheduled and start its job again.
2015-01-02Core: Change default CPU to dyncom.bunnei
2014-12-20License changepurpasmart96
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner
2014-11-18Add static to some variablesLioncash
2014-10-27Use configuration files to enable or disable the new dyncom interpreter.archshift
2014-09-08core: Prune redundant includesarchshift
2014-08-30Core: Refactor core to use only one function for execution.bunnei
Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable.
2014-08-05GSP: Implements preliminary command synchronization via GPU interrupts.bunnei
Core: Added a comment to explain the logic for the RunLoop iterations.
2014-06-14Merge branch 'threading' of https://github.com/bunnei/citrabunnei
Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei
2014-06-13Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ↵bunnei
instruction is ~3 cycles
2014-06-13Core: Changed HW update/thread reschedule to occur more frequently (assume ↵bunnei
each instruction is ~3 cycles)
2014-06-05hle: added a hokey way to force a thread reschedule during CPU single step ↵bunnei
mode (as used by the debugger)
2014-05-29core: changed time delay before kernel reschedule to "approximate" a screen ↵bunnei
refresh
2014-05-22core: added Kernel::Reschedule() call to check for thread changes, shortened ↵bunnei
delay time to 100 instructions
2014-05-17updated how we call ARM core to make things much fasterbunnei
2014-04-10cleaned up some logging messagesbunnei
2014-04-10added initial modules for setting up SysCall HLEbunnei
2014-04-08fixed project includes to use new directory structurebunnei