summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-05-25core: Keep track of telemetry for the current emulation session.bunnei1-0/+3
2017-05-10Kernel: Map special regions according to ExHeaderYuri Kunde Schlesner1-2/+3
This replaces the hardcoded VRAM/DSP mappings with ones made based on the ExHeader ARM11 Kernel caps list. While this has no visible effect for most applications (since they use a standard set of mappings) it does improve support for system modules and n3DS exclusives.
2017-02-27Core: Make PerfStats internally lockedYuri Kunde Schlesner1-3/+2
More ergonomic to use and will be required for upcoming changes.
2017-02-27Add performance statistics to status barYuri Kunde Schlesner1-0/+9
2017-02-11core: Free AppLoader on shutdown to release file (#2558)Yuri Kunde Schlesner1-9/+2
Fixes #2455
2016-12-24Core: reset cpu_core in Shutdown to make IsPoweredOn work properlywwylele1-0/+1
2016-12-22core: Replace "AppCore" nomenclature with just "CPU".bunnei1-7/+7
2016-12-22Address clang-format issues.bunnei1-3/+3
2016-12-22core: Remove HLE module, consolidate code & various cleanups.bunnei1-7/+19
2016-12-22core: Consolidate core and system state, remove system module & cleanups.bunnei1-25/+87
2016-12-15gdbstub: Remove global variable from public interfaceLioncash1-1/+1
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 Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-2/+1
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-2/+3
2016-09-15core: Add configuration option for CPU JIT.bunnei1-7/+12
2016-05-06HLE: Rename RescheduleIsPending to IsReschedulePending.bunnei1-1/+1
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage1-3/+2
2016-03-21hle: Get rid of global access to g_rescheduleLioncash1-1/+1
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() functionsLittleWhite1-2/+1
Add error popup when citra initialization failed
2015-12-30core: Use unique_ptr for holding the interpreter instancesLioncash1-6/+9
2015-10-04Implement gdbstubpolaris-1-0/+17
2015-09-20Implement gdbstubpolaris-1-0/+17
2015-06-28Core: Cleanup core includes.Emmanuel Gil Peyrot1-3/+0
2015-05-15Memmap: Re-organize memory function in two filesYuri Kunde Schlesner1-1/+0
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-12Thread: Remove the idle threadYuri Kunde Schlesner1-2/+2
Instead just use nullptr to represent no thread is active.
2015-05-11Core/Memory: Give every emulated thread it's own TLS area.Subv1-4/+0
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 Schlesner1-1/+1
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-0/+1
2015-04-06core: Migrate 3DS-specific CP15 register setting into InitLioncash1-0/+5
2015-02-13dyncom: Switch the app and system cores into the correct mode at initializationLioncash1-5/+4
2015-02-01arm: Adios armemuLioncash1-12/+2
2015-01-09Thread: Reduce use of Handles and move some funcs to inside the class.Yuri Kunde Schlesner1-1/+1
2015-01-09Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner1-0/+1
2015-01-09Core: Fixed a crash and removed some unused variables.Subv1-6/+0
ARM_Disasm only has static methods, so there's no need to have an instance of it.
2015-01-08Threads: Use a dummy idle thread when no other are ready.Subv1-1/+12
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-03Core: Change default CPU to dyncom.bunnei1-2/+2
2014-12-21License changepurpasmart961-1/+1
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner1-2/+2
2014-11-19Add static to some variablesLioncash1-7/+7
2014-10-28Use configuration files to enable or disable the new dyncom interpreter.archshift1-3/+14
2014-09-09core: Prune redundant includesarchshift1-6/+0
2014-08-31Core: Refactor core to use only one function for execution.bunnei1-18/+8
Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable.
2014-08-06GSP: Implements preliminary command synchronization via GPU interrupts.bunnei1-8/+12
Core: Added a comment to explain the logic for the RunLoop iterations.
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei1-4/+4
2014-06-13Core: Cleaned up SingleStep(), updated default LCD refresh to assume each instruction is ~3 cyclesbunnei1-11/+12
2014-06-13Core: Changed HW update/thread reschedule to occur more frequently (assume each instruction is ~3 cycles)bunnei1-2/+2
2014-06-05hle: added a hokey way to force a thread reschedule during CPU single step mode (as used by the debugger)bunnei1-1/+2
2014-05-30core: changed time delay before kernel reschedule to "approximate" a screen refreshbunnei1-3/+12
2014-05-23core: added Kernel::Reschedule() call to check for thread changes, shortened delay time to 100 instructionsbunnei1-1/+6
2014-05-17updated how we call ARM core to make things much fasterbunnei1-3/+6
2014-04-11cleaned up some logging messagesbunnei1-20/+2
2014-04-11added initial modules for setting up SysCall HLEbunnei1-0/+18
2014-04-09fixed project includes to use new directory structurebunnei1-6/+8
2014-04-09got rid of 'src' folders in each sub-projectbunnei1-0/+0
2014-04-09fixed some license headers that I missedbunnei1-23/+3
2014-04-05added g_app_core->Step and HW::Update to Core::SingleStep to be consistent with other changes madebunnei1-1/+5
2014-04-05- added an interface layer for ARM coresbunnei1-76/+11
- cleaned up core.cpp a bit
2014-04-04added some commented out ARMulator functionsbunnei1-20/+3
2014-04-04Add Core::GetState() for debuggerMathieu Vaillancourt1-0/+5
2014-04-01added very hackish ARMulator core initialization and CPU steppingbunnei1-6/+97
2013-10-03moved some core functions over to system moduleShizZy1-4/+2
2013-10-02added a message option to Core::Halt functionShizZy1-1/+1
2013-09-27added system.h to projectShizZy1-3/+15
2013-09-19added log msg to coreShizZy1-0/+2
2013-09-14renamed project to 'citrus'ShizZy1-1/+1
2013-09-08updated common pathsShizZy1-0/+2
2013-09-06added core and mem_map files to the projectShizZy1-2/+46
2013-09-05added missing filesShizZy1-0/+2