| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-17 | kernel: memory: Add MemoryBlock class, for managing memory blocks and their ↵ | bunnei | |
| state. | |||
| 2020-04-17 | kernel: memory: Add memory_types.h, for things that are commonly used in ↵ | bunnei | |
| memory code. | |||
| 2020-04-17 | kernel: memory: Add SlabHeap class, for managing memory heaps. | bunnei | |
| - This will be used for TLS pages, among other things. | |||
| 2020-04-17 | kernel: memory: Add AddressSpaceInfo class, for managing the memory address ↵ | bunnei | |
| space. | |||
| 2020-04-17 | core: device_manager: Add a simple class to manage device RAM. | bunnei | |
| 2020-04-17 | dynarmic: Enable strict alignment checks. | bunnei | |
| - Also add a missing include. | |||
| 2020-04-17 | common: scope_exit: Implement mechanism for canceling a scope exit. | bunnei | |
| 2020-04-17 | core: memory: Move to Core::Memory namespace. | bunnei | |
| - helpful to disambiguate Kernel::Memory namespace. | |||
| 2020-04-17 | common: alignment: Add a helper function for generic alignment checking. | bunnei | |
| 2020-04-17 | core: kernel: Add svc_types header to include SVC-specific types. | bunnei | |
| 2020-04-17 | core: kernel: Move SVC to its own namesapce. | bunnei | |
| 2020-04-17 | kernel: resource_limit: Improvements to implementation. | bunnei | |
| 2020-04-17 | loader: nso: Fix loading of static objects to be properly sized and aligned. | bunnei | |
| 2020-04-17 | common: common_funcs: Add a macro for defining enum flag operators. | bunnei | |
| 2020-04-17 | process: SetupMainThread: Zero out argument on process start. | bunnei | |
| 2020-04-17 | arm_interface: Ensure ThreadContext is zero'd out. | bunnei | |
| 2020-04-16 | CMakeLists: Make missing declarations a compile-time error | Lioncash | |
| Ensures that our code always has its linkage explicit. | |||
| 2020-04-16 | General: Resolve warnings related to missing declarations | Lioncash | |
| 2020-04-17 | gdbstub: Fix some gdbstub jankiness | MerryMage | |
| 1. Ensure that register information available to gdbstub is most up-to-date. 2. There's no reason to check for current_thread == thread when emitting a trap. Doing this results in random hangs whenever a step happens upon a thread switch. | |||
| 2020-04-16 | Merge pull request #3671 from lioncash/switch | bunnei | |
| kernel/thread: Resolve -Wswitch warnings | |||
| 2020-04-16 | key_manager: Resolve missing field initializer warning | Lioncash | |
| 2020-04-16 | decode/memory: Resolve unused variable warning | Lioncash | |
| Only the first element of the returned pair is ever used. | |||
| 2020-04-16 | decode/texture: Resolve unused variable warnings. | Lioncash | |
| Some variables aren't used, so we can remove these. Unfortunately, diagnostics are still reported on structured bindings even when annotated with [[maybe_unused]], so we need to unpack the elements that we want to use manually. | |||
| 2020-04-16 | decode/texture: Collapse loop down into std::generate | Lioncash | |
| Same behavior, less code. | |||
| 2020-04-16 | decode/texture: Eliminate trivial missing field initializer warnings | Lioncash | |
| We can just specify the initializers. | |||
| 2020-04-16 | time_zone_manager: Resolve sign conversion warnings | Lioncash | |
| ttis and ats will never exceed the length of INT32_MAX in our case, so this is safe. | |||
| 2020-04-16 | CMakeLists: Enable -Wmissing-declarations on Linux builds | Lioncash | |
| Allows catching cases where internal linkage isn't specified for helper functions when they should be marked as such. | |||
| 2020-04-16 | hle_ipc: Remove std::size_t casts where applicable | Lioncash | |
| These were added in the change that enabled -Wextra on linux builds so as not to introduce interface changes in the same change as a build-system flag addition. Now that the flags are enabled, we can freely change the interface to make these unnecessary. | |||
| 2020-04-16 | Merge pull request #3673 from lioncash/extra | bunnei | |
| CMakeLists: Specify -Wextra on linux builds | |||
| 2020-04-16 | maxwell_3d: Initialize format attributes constant as one | ReinUsesLisp | |
| nouveau expects this to be true but it doesn't set it. | |||
| 2020-04-16 | vk_compute_pass: Implement indexed quads | ReinUsesLisp | |
| Implement indexed quads (GL_QUADS used with glDrawElements*) with a compute pass conversion. The compute shader converts from uint8/uint16/uint32 indices to uint32. The format is passed through push constants to avoid having different variants of the same shader. - Used by Fast RMX - Used by Xenoblade Chronicles 2 (it still has graphical due to synchronization issues on Vulkan) | |||
| 2020-04-16 | Merge pull request #3600 from ReinUsesLisp/no-pointer-buf-cache | Fernando Sahmkow | |
| buffer_cache: Return handles instead of pointer to handles | |||
| 2020-04-16 | externals: Move LibreSSL linking to httplib. | Markus Wick | |
| Neither core nor web_services use OpenSSL nor LibreSSL. However they need to link them as it's a requirement of httplib. So let's declare this within httplib instead of core and web_services. | |||
| 2020-04-16 | input_common: Use the CMake target instead of the variable. | Markus Wick | |
| 2020-04-16 | Merge pull request #3659 from bunnei/time-calc-standard-user | Rodrigo Locatti | |
| service: time: Implement CalculateStandardUserSystemClockDifferenceByUser. | |||
| 2020-04-16 | buffer_cache: Return handles instead of pointer to handles | ReinUsesLisp | |
| The original idea of returning pointers is that handles can be moved. The problem is that the implementation didn't take that in mind and made everything harder to work with. This commit drops pointer to handles and returns the handles themselves. While it is still true that handles can be invalidated, this way we get an old handle instead of a dangling pointer. This problem can be solved in the future with sparse buffers. | |||
| 2020-04-16 | Merge pull request #3689 from lioncash/unused-var | Rodrigo Locatti | |
| decode/shift: Remove unused variable within Shift() | |||
| 2020-04-16 | Merge pull request #3688 from lioncash/nequal | Rodrigo Locatti | |
| surface_view: Add missing operator!= to ViewParams | |||
| 2020-04-16 | Merge pull request #3680 from lioncash/static | Rodrigo Locatti | |
| gl_device: Mark stage_swizzle as constexpr | |||
| 2020-04-16 | Merge pull request #3687 from lioncash/constness | Rodrigo Locatti | |
| surface_base: Make IsInside() a const member function | |||
| 2020-04-16 | Merge pull request #3685 from lioncash/copies | Rodrigo Locatti | |
| control_flow: Make use of std::move in TryInspectAddress() | |||
| 2020-04-16 | decode/shift: Remove unused variable within Shift() | Lioncash | |
| Removes a redundant variable that is already satisfied by the IsFull() utility function. | |||
| 2020-04-16 | surface_view: Add missing operator!= to ViewParams | Lioncash | |
| Provides logical symmetry to the interface. | |||
| 2020-04-15 | surface_base: Make IsInside() a const member function | Lioncash | |
| This doesn't modify internal state, so this can be made const. | |||
| 2020-04-15 | Merge pull request #3683 from lioncash/docs | bunnei | |
| video_core: Amend doxygen comment references | |||
| 2020-04-15 | texture_cache/format_lookup_table: Fix incorrect green, blue, and alpha indices | Lioncash | |
| Previously these were all using the red component to derive the indices, which is definitely not intentional. | |||
| 2020-04-15 | control_flow: Make use of std::move in TryInspectAddress() | Lioncash | |
| Eliminates redundant atomic reference count increments and decrements. | |||
| 2020-04-15 | video_core: Amend doxygen comment references | Lioncash | |
| Fixes broken documentation references. | |||
| 2020-04-15 | gl_query_cache: Resolve use-after-move in CachedQuery move assignment operator | Lioncash | |
| Avoids potential invalid junk data from being read. | |||
| 2020-04-15 | gl_device: Mark stage_swizzle as constexpr | Lioncash | |
| Previously this was mutable even though it shouldn't be. | |||
