bunnei
5d6e8a5b44
kernel: memory: Add MemoryManager class, to manage page heaps.
6 years ago
bunnei
548ef190ab
kernel: memory: Add MemoryBlockManager class, to manage memory blocks.
6 years ago
bunnei
3927012734
kernel: memory: Add PageHeap class, to manage a heap of pages.
6 years ago
bunnei
dc720311cc
kernel: memory: Add PageLinkedList class, to manage a list of pages.
6 years ago
bunnei
81cb4d3c7f
kernel: memory: Add system_control code, which will be used for ASLR support.
6 years ago
bunnei
fc040b5b70
physical_memory: Add missing include for <vector>.
6 years ago
bunnei
c2f4dcb1e3
kernel: memory: Add MemoryBlock class, for managing memory blocks and their state.
6 years ago
bunnei
ea5ee9918e
kernel: memory: Add memory_types.h, for things that are commonly used in memory code.
6 years ago
bunnei
d364e7cf09
kernel: memory: Add SlabHeap class, for managing memory heaps.
- This will be used for TLS pages, among other things.
6 years ago
bunnei
14aa65ce00
kernel: memory: Add AddressSpaceInfo class, for managing the memory address space.
6 years ago
bunnei
dc25c86556
core: device_manager: Add a simple class to manage device RAM.
6 years ago
bunnei
f1b607829e
dynarmic: Enable strict alignment checks.
- Also add a missing include.
6 years ago
bunnei
4df6ef04ac
common: scope_exit: Implement mechanism for canceling a scope exit.
6 years ago
bunnei
4caff51710
core: memory: Move to Core::Memory namespace.
- helpful to disambiguate Kernel::Memory namespace.
6 years ago
bunnei
b838e58d63
common: alignment: Add a helper function for generic alignment checking.
6 years ago
bunnei
ad48ebb2c8
core: kernel: Add svc_types header to include SVC-specific types.
6 years ago
bunnei
82d457af37
core: kernel: Move SVC to its own namesapce.
6 years ago
bunnei
b160804db0
externals: Update to latest dynarmic.
- Adds memory alignment fixes.
6 years ago
bunnei
b0e3cbef7a
kernel: resource_limit: Improvements to implementation.
6 years ago
bunnei
7aa0e4a7ca
loader: nso: Fix loading of static objects to be properly sized and aligned.
6 years ago
bunnei
b11b424a2d
common: common_funcs: Add a macro for defining enum flag operators.
6 years ago
bunnei
f2676efe23
process: SetupMainThread: Zero out argument on process start.
6 years ago
bunnei
0f4f90cd04
arm_interface: Ensure ThreadContext is zero'd out.
6 years ago
bunnei
86f9c9aa1c
Merge pull request #3671 from lioncash/switch
kernel/thread: Resolve -Wswitch warnings
6 years ago
bunnei
79c1269f0f
Merge pull request #3673 from lioncash/extra
CMakeLists: Specify -Wextra on linux builds
6 years ago
Fernando Sahmkow
c81f256111
Merge pull request #3600 from ReinUsesLisp/no-pointer-buf-cache
buffer_cache: Return handles instead of pointer to handles
6 years ago
bunnei
5a067eda84
Merge pull request #3675 from degasus/linux_shared_libraries
externals: Use shared libraries if possible
6 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.
6 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.
6 years ago
Markus Wick
94c2c828a5
input_common: Use the CMake target instead of the variable.
6 years ago
Rodrigo Locatti
db67e017cb
Merge pull request #3659 from bunnei/time-calc-standard-user
service: time: Implement CalculateStandardUserSystemClockDifferenceByUser.
6 years ago
ReinUsesLisp
090fd3fefa
buffer_cache: Return handles instead of pointer to handles
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.
6 years ago
Rodrigo Locatti
a5a2ee8766
Merge pull request #3689 from lioncash/unused-var
decode/shift: Remove unused variable within Shift()
6 years ago
Rodrigo Locatti
d196ce0f71
Merge pull request #3688 from lioncash/nequal
surface_view: Add missing operator!= to ViewParams
6 years ago
Rodrigo Locatti
4209dba1f6
Merge pull request #3680 from lioncash/static
gl_device: Mark stage_swizzle as constexpr
6 years ago
Rodrigo Locatti
60e8de7c95
Merge pull request #3687 from lioncash/constness
surface_base: Make IsInside() a const member function
6 years ago
Rodrigo Locatti
612966399b
Merge pull request #3685 from lioncash/copies
control_flow: Make use of std::move in TryInspectAddress()
6 years ago
Lioncash
cd2a12e78f
decode/shift: Remove unused variable within Shift()
Removes a redundant variable that is already satisfied by the IsFull()
utility function.
6 years ago
Lioncash
5fbe8785d2
surface_view: Add missing operator!= to ViewParams
Provides logical symmetry to the interface.
6 years ago
Lioncash
d551c910bb
surface_base: Make IsInside() a const member function
This doesn't modify internal state, so this can be made const.
6 years ago
bunnei
319df1db77
Merge pull request #3683 from lioncash/docs
video_core: Amend doxygen comment references
6 years ago
Lioncash
72a224d3fc
control_flow: Make use of std::move in TryInspectAddress()
Eliminates redundant atomic reference count increments and decrements.
6 years ago
Lioncash
11837e8f13
video_core: Amend doxygen comment references
Fixes broken documentation references.
6 years ago
Lioncash
71fb156611
gl_device: Mark stage_swizzle as constexpr
Previously this was mutable even though it shouldn't be.
6 years ago
Lioncash
1c340c6efa
CMakeLists: Specify -Wextra on linux builds
Allows reporting more cases where logic errors may exist, such as
implicit fallthrough cases, etc.
We currently ignore unused parameters, since we currently have many
cases where this is intentional (virtual interfaces).
While we're at it, we can also tidy up any existing code that causes
warnings. This also uncovered a few bugs as well.
6 years ago
Rodrigo Locatti
65cbb122ea
Merge pull request #3649 from FernandoS27/3d-fix
Texture Cache: Read current data when flushing a 3D segment.
6 years ago
Fernando Sahmkow
e33196d4e7
Merge pull request #3612 from ReinUsesLisp/red
shader/memory: Implement RED.E.ADD and minor changes to ATOM
6 years ago
Mat M
4398bdb4c7
Merge pull request #3670 from lioncash/reorder
CMakeLists: Make -Wreorder a compile-time error
6 years ago
Lioncash
213fff67bc
CMakeLists: Make -Wreorder a compile-time error
This can result in silent logic bugs within code, and given the amount
of times these kind of warnings are caused, they should be flagged at
compile-time so no new code is submitted with them.
6 years ago
Lioncash
521c4c33b5
kernel/thread: Resolve -Wswitch warnings
6 years ago