summaryrefslogtreecommitdiffstats
path: root/src/core/core_timing.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2023-03-27core_timing: Make use of MicroSleep for x64 CPUsMorph1-0/+8
2023-03-08core: Promote CPU/GPU threads to time criticalMorph1-1/+1
2023-03-05core_timing: Use higher precision sleeps on WindowsMorph1-22/+33
2023-02-14remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistencyarades791-1/+1
2023-02-14add static lifetime to constexpr values to force compile time evaluation where possiblearades791-1/+1
2023-01-14timing: wait for completion on unregisterLiam1-24/+18
2022-10-19core: core_timing: Re-initialize if single/multicore state changes.bunnei1-9/+14
2022-10-19core: Partially persist emulation state across game boots.bunnei1-16/+13
2022-10-09core_timing: use high-precision sleeps on non-Windows targetsLiam1-0/+4
2022-10-04common: remove "yuzu:" prefix from thread namesLiam1-1/+1
2022-09-13Remove pause callbacks from coretimingKelebek11-14/+0
2022-08-02core_timing: Sleep in discrete intervals, yield during spinMorph1-12/+13
2022-08-02Add missing looping event schedule signalKelebek11-5/+9
2022-08-02Make coretiming waiting more accurateKelebek11-11/+27
2022-07-28Revert Coretiming PRs 8531 and 7454 (#8591)Maide1-95/+56
2022-07-10Rework CoreTimingKelebek11-8/+67
2022-07-02Core timing: use only one thread.Fernando Sahmkow1-10/+2
2022-06-30Adress Feedback.Fernando Sahmkow1-17/+26
2022-06-28Address feedback.Fernando Sahmkow1-13/+13
2022-06-28Core: Protect each event from race conditions within it.Fernando Sahmkow1-0/+1
2022-06-28Core/Common: Corrections to core timing and add critical priority.Fernando Sahmkow1-1/+1
2022-06-28Core: Reimplement Core Timing.Fernando Sahmkow1-44/+82
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
2021-05-03core: Resolve misc cases of variable shadowingLioncash1-2/+2
2021-01-11core: hle: Add missing calls to MicroProfileOnThreadExit.bunnei1-0/+1
2020-10-21Revert "core: Fix clang build"bunnei1-7/+6
2020-10-18core: Fix clang buildLioncash1-6/+7
2020-08-23core_timing: Remove unused headerLioncash1-1/+1
2020-08-23core_timing: Move clock initializer into constructor initializer listLioncash1-4/+2
2020-08-23core_timing: Resolve sign conversion warningLioncash1-2/+2
2020-07-28core_timing: Make use of uintptr_t to represent user_dataLioncash1-7/+9
2020-07-16core_timing: Make TimedCallback take std::chrono::nanosecondsLioncash1-3/+4
2020-07-16core_timing: Make use of std::chrono with ScheduleEventLioncash1-4/+4
2020-06-29core_timing,scheduler: Use std::scoped_lock when possibleReinUsesLisp1-4/+2
2020-06-28Core/Common: Address Feedback.Fernando Sahmkow1-16/+12
2020-06-27CoreTiming: Correct rebase bugs and other miscellaneous things.Fernando Sahmkow1-0/+2
2020-06-27General: Tune the priority of main emulation threads so they have higher priority than less important helper threads.Fernando Sahmkow1-0/+1
2020-06-27CoreTiming/CycleTimer: Correct Idling.Fernando Sahmkow1-2/+5
2020-06-27SingleCore: Use Cycle Timing instead of Host Timing.Fernando Sahmkow1-8/+33
2020-06-27SingleCore: Move Host Timing from a sepparate thread to main cpu thread.Fernando Sahmkow1-7/+13
2020-06-27General: Fix Stop functionFernando Sahmkow1-0/+1
2020-06-27Kernel: Corrections to Scheduling.Fernando Sahmkow1-4/+7
2020-06-27HostTiming: Pause the hardware clock on pause.Fernando Sahmkow1-0/+6
2020-06-27General: Setup yuzu threads' microprofile, naming and registry.Fernando Sahmkow1-2/+3
2020-06-27General: Recover Prometheus project from harddrive failure Fernando Sahmkow1-112/+96
2020-02-12Core: Set all hardware emulation constants in a single file.Fernando Sahmkow1-1/+2
2019-11-27core_timing: Use better reference tracking for EventType. (#3159)bunnei1-31/+22
2019-10-12Core_Timing: Address Remaining feedback.Fernando Sahmkow1-5/+4
2019-10-11Core_Timing: Address Feedback and suppress warnings.Fernando Sahmkow1-8/+7
2019-10-09Core Timing: Correct Idle and remove lefting pragmaFernando Sahmkow1-2/+1
2019-10-09Core Timing: General corrections and added tests.Fernando Sahmkow1-4/+11
2019-10-09Core Timing: Rework Core Timing to run all cores evenly.Fernando Sahmkow1-16/+50
2019-06-16Core_Timing: Make core_timing threadsafe by default.Fernando Sahmkow1-27/+7
2019-03-24core/core_timing: Make callback parameters consistentLioncash1-1/+1
2019-02-16core_timing: Convert core timing into a classLioncash1-109/+80
2019-02-13threadsafe_queue: Remove NeedSize template parameterLioncash1-2/+2
2019-02-13core_timing: Make EmptyTimedCallback a local variableLioncash1-3/+3
2019-02-12core_timing: Rename CoreTiming namespace to Core::TimingLioncash1-2/+2
2018-08-13Core::CoreTiming: add UnscheduleEventThreadsafeB3n301-0/+10
2018-08-13Kernel/Thread: Always use the threadsafe option when scheduling wakeups.Subv1-2/+0
2018-08-06core_timing: Make GetGlobalTimeUs() return std::chrono::microsecondsLioncash1-2/+2
2018-08-06core_timing: Use transparent functors where applicableLioncash1-5/+5
2018-07-24core_timing: Split off utility functions into core_timing_utilMerryMage1-52/+1
2018-07-03Rename logging macro back to LOG_*James Rowe1-8/+8
2018-05-03core_timing: Don't include the log header in core timing's headerLioncash1-1/+51
2018-04-27general: Convert assertion macros over to be fmt-compatibleLioncash1-1/+1
2018-01-20Fixes some cast warnings, partial port of citra #3064 (#106)River City Ransomware1-2/+2
2018-01-09CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)B3n301-467/+143
2018-01-07core_timing: Increase clock speed for Switch docked.bunnei1-1/+1
2017-09-30Moved down_count to CoreTimingHuw Pascoe1-13/+23
2017-01-16CoreTiming: use named constant for ARM11 clock ratewwylele1-1/+1
2016-12-22core: Replace "AppCore" nomenclature with just "CPU".bunnei1-13/+13
2016-12-22core: Consolidate core and system state, remove system module & cleanups.bunnei1-14/+13
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
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-4/+2
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-19/+16
2015-09-16general: Silence some warnings when using clangLioncash1-1/+2
2015-09-12general: Replace 0 literals with nullptr where applicableLioncash1-1/+1
2015-07-19Core : Fix Conversion Warningszawata1-1/+1
2015-06-28Core: Cleanup core includes.Emmanuel Gil Peyrot1-2/+1
2015-06-28Common: Fix FileUtil includes, and everything relying on those.Emmanuel Gil Peyrot1-0/+1
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-1/+1
2015-05-02CoreTiming: Initialize static variables at bootup.bunnei1-0/+10
2015-02-19Remove the useless msg_handler compilation unit that was left over from Dolphinarchshift1-2/+2
2015-02-17core/video_core: Use in-place construction where possibleLioncash1-1/+1
2015-02-13core: Apply static to local functionsLioncash1-7/+7
2015-02-12Build: Fixed some warningsSubv1-5/+5
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift1-1/+1
2015-01-20core_timing: Mark several variables as staticLioncash1-14/+14
2015-01-09Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner1-0/+2
2015-01-07CoreTiming: Ported the CoreTiming namespace from PPSSPPSubv1-394/+315
2014-12-21License changepurpasmart961-2/+2
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner1-4/+4
2014-12-03Change NULLs to nullptrs.Rohit Nirmal1-6/+6
2014-11-19Remove tabs in all files except in skyeye imports and in generated GL codeEmmanuel Gil Peyrot1-24/+24
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-2/+2
2014-09-13Core: Replace a sprintf in core_timing with StringFromFormatLioncash1-5/+7
2014-09-07Removed common/std_xyz, instead using the std headerarchshift1-1/+1
2014-09-03Removed common/atomic, instead using std::atomicarchshift1-4/+4
2014-04-09fixed project includes to use new directory structurebunnei1-6/+7
2014-04-09got rid of 'src' folders in each sub-projectbunnei1-0/+0
2014-04-09fixed licensing issue with core_timing being GPL v2+ instead of Dolphin's GPL v2bunnei1-421/+405
2013-10-02added core_timing and system modules to core vcprojShizZy1-0/+639