summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-25gdbstub: fix register pokesLiam
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 #8455 from lat9nq/mingw-clangMorph
ci/windows: Use Clang for MinGW builds
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-20Merge pull request #8487 from german77/system-buttonliamwhite
service: am: Stub PerformSystemButtonPressingIfInFocus
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-17Merge pull request #8476 from liamwhite/gpu-wasnt-readyMorph
core: fix initialization in single core, sync GPU mode
2022-06-16ci/windows: Build using Clanglat9nq
Uses the MinGWClangCross toolchain script to build yuzu. Disables our bundled SDL2 to use the system ones that have been modified to not use `-mwindows`. Also set's `-e` to stop the script on an error (as opposed to packaging nothing). Uses LLVM's linker for linking yuzu. Adds -femulated-tls due to a libstdc++ incompatibility between GCC and Clang in vulkan_common.
2022-06-16CMakeModules: Add MinGWClangCrosslat9nq
Facilitates what programs we need for cross-compiling to Windows from Linux using LLVM's compilers. Based on MinGWCross
2022-06-16ci/windows: Split up cmake commandlat9nq
Improves readability.
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-16Merge pull request #8474 from DCNick3/yuzu-cmd-respect-log-filterMorph
Make yuzu-cmd respect log_filter setting
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-16Merge pull request #8473 from DCNick3/implement-exit-processliamwhite
Implement ExitProcess svc
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-15Merge pull request #8465 from Morph1984/why-msvcMai
vk_compute_pass: Explicitly cast to VkAccessFlags
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-14Merge pull request #8462 from liamwhite/dynarmic-profileMai
core: centralize profile scope for Dynarmic
2022-06-14kernel: notify debugger on break SVCLiam
2022-06-14core: centralize profile scope for DynarmicLiam
2022-06-14externals: Update cpp-httplib to latestMorph
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-14Merge pull request #8459 from Morph1984/wextra-gccMai
vk_compute_pass: Silence Wextra warning