comex
0c3a934b6e
Re-add missing `case` and braces, and trim whitespace
4 years ago
comex
593f978ad2
Update src/core/hle/kernel/svc.cpp
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
4 years ago
comex
9decdbabab
Support InfoType_MesosphereCurrentProcess
4 years ago
bunnei
9eed713a12
Merge pull request #8500 from liamwhite/poke
gdbstub: fix register pokes
4 years ago
Liam
2e78c2fdb9
gdbstub: fix register pokes
4 years ago
bunnei
4548e74d3f
Merge pull request #8491 from Morph1984/extra-assert
KPageTable: Remove extraneous assert
4 years ago
bunnei
3f3f5aa93b
Merge pull request #8483 from liamwhite/fire-emblem-three-semaphores
kernel: wait for threads to stop on pause
4 years ago
Morph
72b78f9c32
KPageTable: Remove extraneous assert
Since start is always 0 and VAddr is unsigned, we can safely remove this assert.
4 years ago
Morph
49e8aef1ac
Merge pull request #8455 from lat9nq/mingw-clang
ci/windows: Use Clang for MinGW builds
4 years ago
bunnei
f4201ec44e
Merge pull request #8432 from liamwhite/watchpoint
core/debugger: memory breakpoint support
4 years ago
bunnei
d1d50f28c8
Merge pull request #8468 from liamwhite/dispatch-tracking
kernel: fix some uses of disable_count
4 years ago
liamwhite
f4d876be3c
Merge pull request #8487 from german77/system-button
service: am: Stub PerformSystemButtonPressingIfInFocus
4 years ago
Narr the Reg
341d5b9463
service: am: Stub PerformSystemButtonPressingIfInFocus
Used by Ring Fit Adventure
4 years ago
Liam
808ad9eb9f
kernel: wait for threads to stop on pause
4 years ago
Morph
527e3c1877
Merge pull request #8476 from liamwhite/gpu-wasnt-ready
core: fix initialization in single core, sync GPU mode
4 years ago
lat9nq
607fe38581
ci/windows: Build using Clang
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.
4 years ago
lat9nq
f1158d622c
CMakeModules: Add MinGWClangCross
Facilitates what programs we need for cross-compiling to Windows from
Linux using LLVM's compilers. Based on MinGWCross
4 years ago
lat9nq
9dd5e3e9da
ci/windows: Split up cmake command
Improves readability.
4 years ago
Liam
91beb87df0
core: fix initialization in single core, sync GPU mode
4 years ago
Morph
3206752e00
Merge pull request #8472 from german77/tace
common: param_package: Demote DEBUG to TRACE for getters
4 years ago
Morph
30a4b86d94
Merge pull request #8474 from DCNick3/yuzu-cmd-respect-log-filter
Make yuzu-cmd respect log_filter setting
4 years ago
Nikita Strygin
3d63ebf6c9
Make yuzu-cmd respect log_filter setting
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.
4 years ago
liamwhite
7fe89bf205
Merge pull request #8473 from DCNick3/implement-exit-process
Implement ExitProcess svc
4 years ago
Nikita Strygin
5f5739ea2c
Implement ExitProcess svc
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
4 years ago
Liam
8d2abc710c
core/debugger: memory breakpoint support
4 years ago
Narr the Reg
94877ec9c6
common: param_package: Demote DEBUG to TRACE for getters
4 years ago
Liam
6d5cc6b2a2
kernel: fix some uses of disable_count
4 years ago
Fernando S
1d8e860c47
Merge pull request #8457 from liamwhite/kprocess-suspend
kernel: implement KProcess suspension
4 years ago
liamwhite
1d18c8d3d9
Merge pull request #8460 from Morph1984/bounded-q
bounded_threadsafe_queue: Use constexpr capacity and mask
4 years ago
Morph
3417e4ca5f
bounded_threadsafe_queue: Use constexpr capacity and mask
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
4 years ago
bunnei
d2cc6a69a2
Merge pull request #8317 from german77/notifa
service: notifa: Implement most part of this service
4 years ago
Mai
8894ac44d2
Merge pull request #8464 from liamwhite/break-debug
kernel: notify debugger on break SVC
4 years ago
Mai
5ecb9c932b
Merge pull request #8465 from Morph1984/why-msvc
vk_compute_pass: Explicitly cast to VkAccessFlags
4 years ago
Morph
ddc17d2088
vk_compute_pass: Explicitly cast to VkAccessFlags
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.
4 years ago
Mai
bb0a6faa0a
Merge pull request #8383 from Morph1984/shadow-of-the-past
yuzu: Make variable shadowing a compile-time error
4 years ago
Mai
1885884176
Merge pull request #8462 from liamwhite/dynarmic-profile
core: centralize profile scope for Dynarmic
4 years ago
Liam
0755b274fa
kernel: notify debugger on break SVC
4 years ago
Liam
a6c1036ddc
core: centralize profile scope for Dynarmic
4 years ago
Morph
b1e2c97172
externals: Update cpp-httplib to latest
4 years ago
Morph
2ccc2d0258
main: Eliminate variable shadowing
4 years ago
Liam
59a6d88625
kernel: implement KProcess suspension
4 years ago
Morph
c1c931d97e
Merge pull request #8461 from Morph1984/msvc-narrow-conv
vk_compute_pass: Use VK_ACCESS_NONE
4 years ago
Morph
3743f6f9fd
Merge pull request #8434 from german77/uuid
input_common: Replace usage of string guid to common uuid
4 years ago
Morph
5c72801730
vk_compute_pass: Use VK_ACCESS_NONE
This enumeration was introduced in Vulkan 1.3, prefer using this instead of defaulting the enum.
Also resolves a narrowing conversion warning on MSVC.
4 years ago
Mai
ce98a3e5d7
Merge pull request #8439 from liamwhite/monkey-compiler
general: fix compilation on GCC 12
4 years ago
Morph
69cd83d3ac
wait_tree: Eliminate variable shadowing
4 years ago
Morph
050426b55a
configure_ringcon: Eliminate variable shadowing
4 years ago
Morph
a884ca9b8d
configure_touch_from_button: Eliminate variable shadowing
4 years ago
Morph
9eadb6286d
configure_per_game: Eliminate variable shadowing
4 years ago
Morph
e1e6c62dd9
configure_input_player: Eliminate variable shadowing
4 years ago