bunnei
d0162fc3d7
kernel: shared_memory: Refactor for new VMM.
5 years ago
bunnei
a040a15246
core: device_memory: Update to use VirtualBuffer class.
5 years ago
bunnei
4ba2428c86
common: Add VirtualBuffer class, to abstract memory virtualization.
5 years ago
bunnei
a238d08f71
kernel: errors: Add ERR_OUT_OF_RESOURCES.
5 years ago
bunnei
ffc3de762b
kernel: process_capability: Update to use Memory::PageTable.
5 years ago
bunnei
84f1b6d530
kernel: memory: Add PageTable class, to manage process address space.
5 years ago
bunnei
cfae8a1c1a
kernel: memory: Add MemoryLayout class, to build physical memory layout.
5 years ago
bunnei
5d6e8a5b44
kernel: memory: Add MemoryManager class, to manage page heaps.
5 years ago
bunnei
548ef190ab
kernel: memory: Add MemoryBlockManager class, to manage memory blocks.
5 years ago
bunnei
3927012734
kernel: memory: Add PageHeap class, to manage a heap of pages.
5 years ago
bunnei
dc720311cc
kernel: memory: Add PageLinkedList class, to manage a list of pages.
5 years ago
bunnei
81cb4d3c7f
kernel: memory: Add system_control code, which will be used for ASLR support.
5 years ago
bunnei
fc040b5b70
physical_memory: Add missing include for <vector>.
5 years ago
bunnei
c2f4dcb1e3
kernel: memory: Add MemoryBlock class, for managing memory blocks and their state.
5 years ago
bunnei
ea5ee9918e
kernel: memory: Add memory_types.h, for things that are commonly used in memory code.
5 years ago
bunnei
d364e7cf09
kernel: memory: Add SlabHeap class, for managing memory heaps.
...
- This will be used for TLS pages, among other things.
5 years ago
bunnei
14aa65ce00
kernel: memory: Add AddressSpaceInfo class, for managing the memory address space.
5 years ago
bunnei
dc25c86556
core: device_manager: Add a simple class to manage device RAM.
5 years ago
bunnei
f1b607829e
dynarmic: Enable strict alignment checks.
...
- Also add a missing include.
5 years ago
bunnei
4df6ef04ac
common: scope_exit: Implement mechanism for canceling a scope exit.
5 years ago
bunnei
4caff51710
core: memory: Move to Core::Memory namespace.
...
- helpful to disambiguate Kernel::Memory namespace.
5 years ago
bunnei
b838e58d63
common: alignment: Add a helper function for generic alignment checking.
5 years ago
bunnei
ad48ebb2c8
core: kernel: Add svc_types header to include SVC-specific types.
5 years ago
bunnei
82d457af37
core: kernel: Move SVC to its own namesapce.
5 years ago
bunnei
b160804db0
externals: Update to latest dynarmic.
...
- Adds memory alignment fixes.
5 years ago
bunnei
b0e3cbef7a
kernel: resource_limit: Improvements to implementation.
5 years ago
bunnei
7aa0e4a7ca
loader: nso: Fix loading of static objects to be properly sized and aligned.
5 years ago
bunnei
b11b424a2d
common: common_funcs: Add a macro for defining enum flag operators.
5 years ago
bunnei
f2676efe23
process: SetupMainThread: Zero out argument on process start.
5 years ago
bunnei
0f4f90cd04
arm_interface: Ensure ThreadContext is zero'd out.
5 years ago
Lioncash
dcbb39cdae
CMakeLists: Make missing declarations a compile-time error
...
Ensures that our code always has its linkage explicit.
5 years ago
Lioncash
e2d8be1ca2
General: Resolve warnings related to missing declarations
5 years ago
MerryMage
1cc9507bc5
gdbstub: Fix some gdbstub jankiness
...
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.
5 years ago
bunnei
86f9c9aa1c
Merge pull request #3671 from lioncash/switch
...
kernel/thread: Resolve -Wswitch warnings
5 years ago
Lioncash
8f9c599c9f
key_manager: Resolve missing field initializer warning
5 years ago
Lioncash
678ac54749
decode/memory: Resolve unused variable warning
...
Only the first element of the returned pair is ever used.
5 years ago
Lioncash
d159643fd7
decode/texture: Resolve unused variable warnings.
...
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.
5 years ago
Lioncash
f522abd8ab
decode/texture: Collapse loop down into std::generate
...
Same behavior, less code.
5 years ago
Lioncash
7e2d60de26
decode/texture: Eliminate trivial missing field initializer warnings
...
We can just specify the initializers.
5 years ago
Lioncash
337f2dc11f
time_zone_manager: Resolve sign conversion warnings
...
ttis and ats will never exceed the length of INT32_MAX in our case, so
this is safe.
5 years ago
Lioncash
fc5df84581
CMakeLists: Enable -Wmissing-declarations on Linux builds
...
Allows catching cases where internal linkage isn't specified for helper
functions when they should be marked as such.
5 years ago
Lioncash
77356731a9
hle_ipc: Remove std::size_t casts where applicable
...
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.
5 years ago
bunnei
79c1269f0f
Merge pull request #3673 from lioncash/extra
...
CMakeLists: Specify -Wextra on linux builds
5 years ago
ReinUsesLisp
238c6016f9
maxwell_3d: Initialize format attributes constant as one
...
nouveau expects this to be true but it doesn't set it.
5 years ago
ReinUsesLisp
c961770900
vk_compute_pass: Implement indexed quads
...
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)
5 years ago
Fernando Sahmkow
c81f256111
Merge pull request #3600 from ReinUsesLisp/no-pointer-buf-cache
...
buffer_cache: Return handles instead of pointer to handles
5 years ago
bunnei
5a067eda84
Merge pull request #3675 from degasus/linux_shared_libraries
...
externals: Use shared libraries if possible
5 years ago
Markus Wick
b520978043
externals: Use shared libraries if possible
...
This is mostly done by pkgconfig.
I've focused on the larger and more stable libraries.
5 years ago
Markus Wick
fedf750e1b
externals: Move LibreSSL linking to httplib.
...
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.
5 years ago
Markus Wick
94c2c828a5
input_common: Use the CMake target instead of the variable.
5 years ago