summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-06-28Core: add missing include.Fernando Sahmkow
2022-06-28Core/Common: Corrections to core timing and add critical priority.Fernando Sahmkow
2022-06-28Core: Reimplement Core Timing.Fernando Sahmkow
2022-06-28Common: improve native clock.Fernando Sahmkow
2022-06-27Merge pull request #8504 from comex/mesosphere-current-processbunnei
Support `InfoType_MesosphereCurrentProcess`
2022-06-26Merge pull request #8475 from liamwhite/x18bunnei
kernel: make current thread pointer thread local
2022-06-25Re-add missing `case` and braces, and trim whitespacecomex
2022-06-25Update src/core/hle/kernel/svc.cppcomex
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
2022-06-25Support InfoType_MesosphereCurrentProcesscomex
2022-06-25gdbstub: fix register pokesLiam
2022-06-23kernel: make current thread pointer thread localLiam
2022-06-22Merge pull request #8491 from Morph1984/extra-assertbunnei
KPageTable: Remove extraneous assert
2022-06-22Merge pull request #8483 from liamwhite/fire-emblem-three-semaphoresbunnei
kernel: wait for threads to stop on pause
2022-06-21KPageTable: Remove extraneous assertMorph
Since start is always 0 and VAddr is unsigned, we can safely remove this assert.
2022-06-21Merge pull request #8432 from liamwhite/watchpointbunnei
core/debugger: memory breakpoint support
2022-06-21Merge pull request #8468 from liamwhite/dispatch-trackingbunnei
kernel: fix some uses of disable_count
2022-06-20service: am: Stub PerformSystemButtonPressingIfInFocusNarr the Reg
Used by Ring Fit Adventure
2022-06-18kernel: wait for threads to stop on pauseLiam
2022-06-16core: fix initialization in single core, sync GPU modeLiam
2022-06-16Merge pull request #8472 from german77/taceMorph
common: param_package: Demote DEBUG to TRACE for getters
2022-06-16Make yuzu-cmd respect log_filter settingNikita Strygin
Because logging infrastructure initializes before the loading of the config, it reads the default setting for log_filter and ignores the one set in config. To change log_filter after logging initialization some additional calls need to be made.
2022-06-16Implement ExitProcess svcNikita Strygin
Currently this just stops all the emulation This works under assumption that only application will try to use ExitProcess, with services not touching it If application exits - it quite makes sense to end the emulation
2022-06-16core/debugger: memory breakpoint supportLiam
2022-06-16common: param_package: Demote DEBUG to TRACE for gettersNarr the Reg
2022-06-15kernel: fix some uses of disable_countLiam
2022-06-16Merge pull request #8457 from liamwhite/kprocess-suspendFernando S
kernel: implement KProcess suspension
2022-06-15Merge pull request #8460 from Morph1984/bounded-qliamwhite
bounded_threadsafe_queue: Use constexpr capacity and mask
2022-06-15bounded_threadsafe_queue: Use constexpr capacity and maskMorph
While this is the primary change, we also: - Remove the mpsc namespace and rename Queue to MPSCQueue - Make Slot a private struct within MPSCQueue - Remove the AlignedAllocator template argument, as we use std::allocator - Replace instances of mask + 1 with capacity, and mask + 2 with capacity + 1
2022-06-15Merge pull request #8317 from german77/notifabunnei
service: notifa: Implement most part of this service
2022-06-15Merge pull request #8464 from liamwhite/break-debugMai
kernel: notify debugger on break SVC
2022-06-15vk_compute_pass: Explicitly cast to VkAccessFlagsMorph
According to the standard, a narrowing conversion is an implicit conversion from an integer or unscoped enumeration type to an integer type that cannot represent all the values of the original type, except when the value is a literal or constant expression. MSVC, unlike GCC or Clang, determines this to be a narrowing conversion despite the enumeration exclusively containing values that fit within the range of a 32 bit integer, emitting a warning since designated initializers prohibit narrowing conversions. To solve this, explicitly cast to the type we are initializing.
2022-06-14Merge pull request #8383 from Morph1984/shadow-of-the-pastMai
yuzu: Make variable shadowing a compile-time error
2022-06-14kernel: notify debugger on break SVCLiam
2022-06-14core: centralize profile scope for DynarmicLiam
2022-06-14main: Eliminate variable shadowingMorph
2022-06-14kernel: implement KProcess suspensionLiam
2022-06-14Merge pull request #8461 from Morph1984/msvc-narrow-convMorph
vk_compute_pass: Use VK_ACCESS_NONE
2022-06-14Merge pull request #8434 from german77/uuidMorph
input_common: Replace usage of string guid to common uuid
2022-06-14vk_compute_pass: Use VK_ACCESS_NONEMorph
This enumeration was introduced in Vulkan 1.3, prefer using this instead of defaulting the enum. Also resolves a narrowing conversion warning on MSVC.
2022-06-14Merge pull request #8439 from liamwhite/monkey-compilerMai
general: fix compilation on GCC 12
2022-06-14wait_tree: Eliminate variable shadowingMorph
2022-06-14configure_ringcon: Eliminate variable shadowingMorph
2022-06-14configure_touch_from_button: Eliminate variable shadowingMorph
2022-06-14configure_per_game: Eliminate variable shadowingMorph
2022-06-14configure_input_player: Eliminate variable shadowingMorph
2022-06-14configure_dialog: Eliminate variable shadowingMorph
2022-06-14bootmanager: Eliminate variable shadowingMorph
2022-06-14game_list: Eliminate variable shadowingMorph
2022-06-14vk_compute_pass: Silence Wextra warningMorph
Silences a warning about using enumerated and non-enumerated types in a conditional expression.
2022-06-13kernel: fix passthrough of local captures in lambdaLiam