| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
- Should be no functional changes.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- Includes removing some service impls. that are untested.
|
| |
|
|
|
|
| |
- Includes removing some SVC impls. that are untested.
|
|
|
|
| |
- Fixes Super Smash Bros. Ultimate.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- More consistent with other system components.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- This will be used for TLS pages, among other things.
|
| |
|
| |
|
|
|
|
| |
- Also add a missing include.
|
|
|
|
| |
- helpful to disambiguate Kernel::Memory namespace.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
kernel/thread: Resolve -Wswitch warnings
|
| | |
|
|\ \
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |/ /
|/| | |
service: time: Implement CalculateStandardUserSystemClockDifferenceByUser.
|
| | |
| | |
| | |
| | | |
- Used by Animal Crossing: New Horizons.
|
| |/
|/|
| |
| |
| |
| | |
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.
|
|\ \
| | |
| | | |
service: friend: Stub IFriendService::GetBlockedUserListIds.
|
| |/
| |
| |
| | |
- This is safe to stub, as there should be no adverse consequences from reporting no blocked users.
|
|/ |
|
|\
| |
| | |
service/vi: Partially implement BufferQueue disconnect
|
| | |
|
|\ \
| | |
| | | |
Buffer queue: Correct behavior of free buffer.
|
| |/
| |
| |
| |
| |
| | |
This corrects the behavior of free buffer after witnessing it in an
unrelated hardware test. I haven't found any games affected by it but in
name of better accuracy we'll correct such behavior.
|
|\ \
| |/
|/| |
yuzu: Drop SDL2 and Qt frontend Vulkan requirements
|
| |
| |
| |
| | |
Create Vulkan instances and surfaces from the Vulkan backend.
|
|\ \
| |/
|/| |
Refactor all the GPU Caches to use VAddr for cache addressing
|
| | |
|
| | |
|
| | |
|
|/
|
| |
* fix LayeredFS error when loading some games made with the Unity
|
|\
| |
| | |
services: ldr: Fix MemoryState for read/write regions of NROs.
|
| |
| |
| |
| | |
- Fixes #3541, used by Final Fantasy VIII Remastered.
|
|\ \
| | |
| | | |
Refactor Context management (Fixes renderdoc on opengl issues)
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Changes the GraphicsContext to be managed by the GPU core. This
eliminates the need for the frontends to fool around with tricky
MakeCurrent/DoneCurrent calls that are dependent on the settings (such
as async gpu option).
This also refactors out the need to use QWidget::fromWindowContainer as
that caused issues with focus and input handling. Now we use a regular
QWidget and just access the native windowHandle() directly.
Another change is removing the debug tool setting in FrameMailbox.
Instead of trying to block the frontend until a new frame is ready, the
core will now take over presentation and draw directly to the window if
the renderer detects that its hooked by NSight or RenderDoc
Lastly, since it was in the way, I removed ScopeAcquireWindowContext and
replaced it with a simple subclass in GraphicsContext that achieves the
same result
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Organize capture services into individual files
* Stub GetAlbumContentsFileListForApplication
* Address feedback
|
|\ \ \
| | | |
| | | | |
services: time: Implement CalculateSpanBetween.
|
| | |/
| |/|
| | |
| | | |
- Used by Super Smash Bros. Ultimate.
|
|\ \ \
| | | |
| | | | |
am: Implement VR related APIs
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Implement (and stub) VR related APIs in AM sysmodule.
This fixes issue #2938
|
|/ /
| |
| |
| | |
- Used by Super Smash Bros. Ultimate v7.0.0.
|
|\ \
| |/
|/| |
Port citra-emu/citra#5106: "gdbstub: Ensure gdbstub doesn't drop packets crucial to initialization"
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
This increases the PointerBufferSize as a lager one is required by some services.
This change is still not hw-accurate, but it is proven to work in Ryujinx.
Instead of using a hardcoded size, we should figure out the specific values for each service in the future. Some of them can be taken from Atmosphere: https://github.com/Atmosphere-NX/Atmosphere/search?q=PointerBufferSize.
|
|\ \
| | |
| | | |
core/web_browser: Allow WebApplet to exit gracefully when an error occurs
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Currently, yuzu just freezes when an error occurs while Initializing the WebApplet.
From a user perspective, this obviously isn't great as the game just softlocks.
With this change, yuzu will call the Finalize method, so to the game it seems like as the user just exited the WebApplet normally.
This works around https://github.com/yuzu-emu/yuzu/issues/2852.
|
| | | |
|
|\ \ \
| | | |
| | | | |
yuzu: Save sound output mode and set it to Stereo by default
|
| | |/
| |/| |
|
|/ /
| |
| |
| |
| |
| |
| | |
There were cases where raw_data didn't contain enough
space to hold the zero terminator.
This was caught with -fsanitize=address.
|
|\ \
| | |
| | | |
Small corrections and features to microprofile
|
| | | |
|
|/ /
| |
| |
| | |
+clang format
|
|\ \
| | |
| | | |
video_core: Remove gl_state and use a state tracker based on dirty flags
|
| |/ |
|
|\ \
| | |
| | | |
frontend/Graphics: Add "Advanced" graphics tab and experimental Anisotropic Filtering support
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
ARM_Interface: Cache the JITs instead of deleting/recreating.
|
| |
| |
| |
| |
| |
| | |
This was a bug inherited from citra which was fixed by then at some
time. This commit corrects such bug and ensures JITs are correctly
recycled.
|
|\ \
| | |
| | | |
Port citra-emu/citra#4940: "Split Presentation thread from Render thread"
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Stub SetLcdBacklighOffEnabled
Used by Super Smash Bros. Ultimate
We require backlight services to be implemented to turn on/off the backlight.
* Address feedback
|
|\ \
| |/
|/| |
InputCommon: analog_from_button get direction implementation
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
GUI: Add aspect ratio dropdown
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Available as a drop down within the configure graphics tab.
|
|\ \
| | |
| | | |
nvhost_gpu: implement ChannelSetTimeslice
|
| | | |
|
| | | |
|
|/ /
| |
| |
| | |
402: function name should be Initialize2 (7.0.0+) not SetOperationMode
Follow by: https://switchbrew.org/wiki/LDN_services#IUserLocalCommunicationService
|
|\ \
| | |
| | | |
Set of refactors for Kernel Synchronization and Hardware Constants
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
update hwopus DecodeInterleaved for FW 7.0.0+
|
| |/
| |
| |
| | |
trivial change,
see https://switchbrew.org/wiki/Audio_services#IHardwareOpusDecoder
|
| |
| |
| |
| |
| | |
Same behavior, but without the need to explicitly loop through
everything manually.
|
| |
| |
| |
| |
| | |
Simplifies the overall function and also allows for it to become a
const-qualified member function.
|
|\ \
| | |
| | | |
bcat/backend: Prevent fmt exception in debug log within NullBackend::Clear()
|
| | |
| | |
| | |
| | |
| | | |
Aligns the '=' to be consistent with the rest of the logs within this
source file.
|
| |/
| |
| |
| |
| | |
A formatting specifier within Clear wasn't being used, which will cause
fmt to throw an exception. This fixes that.
|
|/
|
|
|
| |
We can just use the kernel member variable directly instead of going
through the system to obtain the same thing.
|
| |
|
|\
| |
| | |
hle: services: Fix prepo IPC, and add better error checking.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
- This was holdover from citra.
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
yuzu: Implement Vulkan frontend
|
| |
| |
| |
| |
| | |
Adds a Qt and SDL2 frontend for Vulkan. It also finishes the missing
bits on Vulkan initialization.
|
| | |
|
| |
| |
| |
| | |
This fixes crashes when a Vulkan device fails to initialize.
|
|\ \
| | |
| | | |
hid: Fix analog sticks directional states
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
core/arm: Remove usage of global GetCurrentThread()
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Now both CPU backends go through their referenced system instance to
obtain the current thread.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/physical_core: Make use of std::unique_ptr instead of std::shared_ptr
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
shared_ptr was used in 2d1984c20c75e03ec79eeb3806b12efa1679b977 due to a
misunderstanding of how the language generates move constructors and
move assignment operators.
If a destructor is user-provided, then the compiler won't generate the
move constructor and move assignment operators by default--they must be
explicitly opted into.
The reason for the compilation errors is due to the fact that the
language will fall back to attempting to use the copy constructor/copy
assignment operators if the respective move constructor or move
assignment operator is unavailable.
Given that we explicitly opt into them now, the the move constructor and
move assignment operators will be generated as expected.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Nothing from these headers are used within this source file, so we can
remove them.
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This isn't used within the class, so it can be removed to simplify the
overall interface.
While we're in the same area, we can simplify a unique_ptr reset() call.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
System: Refactor CPU Core management and move ARMInterface and Schedulers to Kernel
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This commit instends on better naming the new purpose of this classes.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This commit moves ARM Interface and Scheduler handling into the kernel.
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
system_archive: Fix Korean and Chinese fonts
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Adds the proper OSS font for the Chinese language.
|
| | | |
| | | |
| | | |
| | | | |
Fixes Korean fonts when using Open-source system archives.
|
| | | |
| | | |
| | | |
| | | | |
- Required for Little Town Hero to boot further.
|
|\ \ \ \
| |_|/ /
|/| | | |
loader: provide default arguments (zero byte) to NSOs
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Certain newer unity games (Terraria, Pokemon Mystery Dungeon) require
that the argument region be populated. Failure to do so results in
an integer underflow in argument count, and eventually an unmapped
read at 0x800000000. Providing this default fixes this.
Note that the behavior of official software is as yet unverified,
arguments-wise.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
An implementation of the cemuhook motion/touch protocol, this adds the
ability for users to connect several different devices to citra to send
direct motion and touch data to citra.
Co-Authored-By: jroweboy <jroweboy@gmail.com>
|
|/ / /
| | |
| | |
| | | |
- Used by Pokemon Mystery Dungeon.
|
| | |
| | |
| | |
| | | |
- Fixes timestamp in ZLA and Astral Chain saves.
|
|\ \ \
| |/ /
|/| | |
service: time: Rewrite implementation of glue services.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
This allows us to create a fastmem arena within the memory.cpp helpers.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
It is currently a std::vector, however we might want to replace it with a more fancy allocator.
So we can't use the C++ iterators any more.
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| | |
module._memory was already moved over to a new shared_ptr.
So code_memory_size was not increased at all.
This lowers the heap space and so saves a bit of memory, usually between 50 to 100 MB.
This fixes a regression of c0a01f3adc466d07fc27020048e82cca60988970
|
|\ \
| | |
| | | |
service: vi: Implement CloseLayer.
|
| |/
| |
| |
| | |
- Needed for Undertale.
|
|\ \
| | |
| | | |
core/memory + arm/dynarmic: Use a global offset within our arm page table.
|
| | |
| | |
| | |
| | |
| | |
| | | |
This saves us two x64 instructions per load/store instruction.
TODO: Clean up our memory code. We can use this optimization here as well.
|
|\ \ \
| | | |
| | | | |
video_core: Block in WaitFence.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
This function is called rarely and blocks quite often for a long time.
So don't waste power and let the CPU sleep.
This might also increase the performance as the other cores might be allowed to clock higher.
|
|\ \ \
| |_|/
|/| | |
nifm: Only return that there's an internet connection when there's a BCATServer
|
| | |
| | |
| | |
| | |
| | | |
This helps games that need internet for other purposes boot as the rest
of our internet infrastructure is incomplete.
|
|\ \ \
| | | |
| | | | |
NvServices: Correct Ioctl Remap.
|
| | |/
| |/|
| | |
| | |
| | | |
This commit corrects a padding value in Ioctl Remap that was actually an
offset to the mapping address.
|
|/ /
| |
| |
| |
| | |
This was carried from Citra and wasn't really used on yuzu. It also adds
some runtime overhead. This commit removes it from yuzu's codebase.
|
|\ \
| | |
| | | |
kernel/svc: Amend function signature of SignalProcessWideKey
|
| | |
| | |
| | |
| | |
| | | |
This function doesn't actually return a result code, so we can amend the
signature of it to match.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Kernel: Correct behavior of Address Arbiter threads.
This corrects arbitration threads to behave just like in Horizon OS.
They are added into a container and released according to what priority
they had when added. Horizon OS does not reorder them if their priority
changes.
* Kernel: Address Feedback.
|
|\ \
| | |
| | | |
kernel/svc: Provide implementations for svcDumpInfo/svcDumpInfoNew
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These are fairly trivial to implement, we can just do nothing. This also
provides a spot for us to potentially dump out any relevant info in the
future (e.g. for debugging purposes with homebrew, etc).
While we're at it, we can also correct the names of both of these
supervisor calls.
|
|/ /
| |
| |
| |
| |
| | |
Over the course of the changes to the kernel code, a few includes are no
longer necessary, particularly with the change over to std::shared_ptr
from Boost's intrusive_ptr.
|
| |
| |
| |
| |
| |
| | |
This commit corrects an error in which a Core could remain with an
exclusive state after running, leaving space for possible race
conditions between changing cores.
|
| |
| |
| |
| | |
We only have OpenGL as an option for now. Hardcode the entry.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
core/memory: Deglobalize memory management code
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Now that literally every other API function is converted over to the
Memory class, we can just move the file-local page table into the Memory
implementation class, finally getting rid of global state within the
memory code.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Now that everything else is migrated over, this is essentially just code
relocation and conversion of a global accessor to the class member
variable.
All that remains is to migrate over the page table.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The Write functions are used slightly less than the Read functions,
which make these a bit nicer to move over.
The only adjustments we really need to make here are to Dynarmic's
exclusive monitor instance. We need to keep a reference to the currently
active memory instance to perform exclusive read/write operations.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
With all of the trivial parts of the memory interface moved over, we can
get right into moving over the bits that are used.
Note that this does require the use of GetInstance from the global
system instance to be used within hle_ipc.cpp and the gdbstub. This is
fine for the time being, as they both already rely on the global system
instance in other functions. These will be removed in a change directed
at both of these respectively.
For now, it's sufficient, as it still accomplishes the goal of
de-globalizing the memory code.
|
| | |
| | |
| | |
| | |
| | | |
These currently aren't used anywhere in the codebase, so these are very
trivial to move over to the Memory class.
|
| | |
| | |
| | |
| | |
| | | |
This is only used within the accelerated rasterizer in two places, so
this is also a very trivial migration.
|
| | |
| | |
| | |
| | |
| | | |
This only had one usage spot, so this is fairly straightforward to
convert over.
|
| | |
| | |
| | |
| | |
| | | |
With all of the interfaces ready for migration, it's trivial to migrate
over GetPointer().
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Amends a few interfaces to be able to handle the migration over to the
new Memory class by passing the class by reference as a function
parameter where necessary.
Notably, within the filesystem services, this eliminates two ReadBlock()
calls by using the helper functions of HLERequestContext to do that for
us.
|
| | |
| | |
| | |
| | |
| | |
| | | |
These will eventually be migrated into the main Memory class, but for
now, we put them in an anonymous namespace, so that the other functions
that use them, can be migrated over separately.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
A fairly straightforward migration. These member functions can just be
mostly moved verbatim with minor changes. We already have the necessary
plumbing in places that they're used.
IsKernelVirtualAddress() can remain a non-member function, since it
doesn't rely on class state in any form.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Migrates all of the direct mapping facilities over to the new memory
class. In the process, this also obsoletes the need for memory_setup.h,
so we can remove it entirely from the project.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Currently, the main memory management code is one of the remaining
places where we have global state. The next series of changes will aim
to rectify this.
This change simply introduces the main skeleton of the class that will
contain all the necessary state.
|
|\ \ \
| | | |
| | | | |
filesys/romfs: Make ProcessFile and ProcessDirectory internally linked
|
| | | |
| | | |
| | | |
| | | |
| | | | |
These inclusions aren't used at all within the public interface, so they
can be removed.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
These functions aren't used outside of this file, so we can place them
within an anonymous namespace.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Adds check for disabled cheats to prevent them from being added to the CheatList
* Address feedback
|
|\ \ \ \
| |_|/ /
|/| | | |
file_sys/directory: Make EntryType an enum class
|
| |/ /
| | |
| | |
| | |
| | | |
This can trivially be an enum class rather than a regular enum, making
it more strongly typed.
|
|/ /
| |
| |
| |
| |
| |
| | |
* core_timing: Use better reference tracking for EventType.
- Moves ownership of the event to the caller, ensuring we don't fire events for destroyed objects.
- Removes need for unique names - we won't be using this for save states anyways.
|
| |
| |
| |
| | |
- Fixes shutdown crash and crash in Pokemon SwSh.
|
|\ \
| | |
| | | |
service: Update function tables
|
| |/
| |
| |
| |
| |
| | |
Keeps the function tables up to date.
Updated based off information from Switchbrew.
|
| |
| |
| |
| |
| |
| | |
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects.
- See https://github.com/citra-emu/citra/pull/4710 for details.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Kernel: Correct behavior of Condition Variables to be more similar to real hardware.
|
| | | |
|
| | |
| | |
| | |
| | | |
When the target is 0, all threads must be processed.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit ensures cond var threads act exactly as they do in the real
console. The original implementation uses an RBTree and the behavior of
cond var threads is that at the same priority level they act like a
FIFO.
|
|\ \ \
| | | |
| | | | |
Kernel: Correct Cancel Synchronization.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit corrects the behavior of cancel synchronization when the
thread is running/ready and ensures the next wait is cancelled as it's
suppose to.
|
|\ \ \ \
| | | | |
| | | | | |
service/am: Remove unnecessary Skip calls
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
We can simplify these by wrapping the necessary members in structs and
then simply reading out the whole struct.
|
|\ \ \ \
| |_|/ /
|/| | | |
am: Stub QueryApplicationPlayStatistics
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Maintains implementation parity between QueryApplicationPlayStatistics
and QueryApplicationPlayStatisticsByUid.
These function the same behaviorally underneath the hood, with the only
difference being that one allows specifying a UID.
|
|\ \ \
| |/ /
|/| | |
core: Make most implicit type conversion warnings errors on MSVC
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Since the introduction of this library, numerous improvements have been
made. Notably, many of the warnings we would get by simply including the
library header have now been fixed. This makes it much easier to make
conversion warning an error.
|
| | |
| | |
| | |
| | |
| | | |
These are fairly trivial to resolve and most of the changes entail
using RESULT_UNKNOWN over ResultCode(-1).
|
| | |
| | |
| | |
| | |
| | | |
We simply need to turn the literal argument to std::accumulate into a
double, rather than an int.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Uncovered a bug within Thread's SetCoreAndAffinityMask() where an
unsigned variable (ideal_core) was being compared against "< 0", which
would always be a false condition.
We can also get rid of an unused function (GetNextProcessorId) which contained a sign
mismatch warning.
|
| | |
| | |
| | |
| | | |
Resolves a few trivial sign conversion/mismatch errors.
|
| | |
| | |
| | |
| | |
| | | |
Will be used to reduce the overall duplication of the same magic value
all over the codebase in following changes.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
The constructor was implicitly using signed->unsigned conversions to
produce 0xFFFFFFFF. We can just specify this explicitly with UINT32_MAX.
|
| | |
| | |
| | |
| | |
| | | |
While we're at it, this also resolves a type truncation warning as well,
given the code was truncating from a 64-bit value to a 32-bit one.
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Quite frequently there have been cases where code has been merged into
the core that produces warning. In order to prevent this from occurring,
we can make the compiler flag these cases and allow our CI to flag down
any code that would generate these warnings.
This is beneficial given silent conversions from signed/unsigned can
result in logic bugs. This forces one writing changes to be explicit
about when signedness conversions are desirable, rather than leaving it
up to readers' interpretation.
Currently the codebase isn't in a state where it will build successfully
with this change applied, but this will be addressed in subsequent
follow-up changes. This set of changes will focus on making it build
properly with these changes for MSVC as a starting point for basic
coverage.
|
|\ \
| | |
| | | |
Implement stub for IApplicationFunctions::QueryApplicationPlayStatisticsByUid
|
| |/ |
|
|\ \
| | |
| | | |
core: Migrate off deprecated mbedtls functions
|
| |/
| |
| |
| |
| | |
These functions are marked for deprecation and it's recommended that the
*_ret variants be used instead.
|
|\ \
| | |
| | | |
key_manager: Make use of IOFile in WriteKeyToFile()
|
| |/
| |
| |
| |
| |
| |
| |
| |
| | |
This properly handles unicode-based paths on Windows, while opening a
raw stream doesn't out-of-the-box.
Prevents file creation from potentially failing on Windows PCs that make
use of unicode characters in their save paths (e.g. writing to a user's
AppData folder, where the user has a name with non-ASCII characters).
|
|/
|
|
|
| |
We can just call the .data() member of path instead of constructing a
completely new string.
|
|\
| |
| | |
kernel: Improve events
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
- This does not actually seem to exist in the real kernel - games reset these automatically.
# Conflicts:
# src/core/hle/service/am/applets/applets.cpp
# src/core/hle/service/filesystem/fsp_srv.cpp
|
| | |
|
|\ \
| | |
| | | |
hid: Stub SetNpadJoyAssignmentModeSingle and GetNpadHandheldActivationMode
|
| | | |
|
| | |
| | |
| | |
| | | |
- Zero initialization here is useful for determinism.
|
| |/
|/|
| |
| | |
These commands require Screenshots to be implemented anyway, so they are safe to stub for now.
|
|\ \
| | |
| | | |
kernel/scheduler: Minor changes
|
| | |
| | |
| | |
| | | |
This is only compared against, so it can be made const.
|
| | | |
|
| | |
| | |
| | |
| | | |
Reduces the overall amount of code.
|
| | |
| | |
| | |
| | |
| | | |
Adjusts the formatting of a few of the comments an ensures they get
recognized as proper Doxygen comments.
|
|\ \ \
| |/ /
|/| | |
savedata_factory: Automatically create certain savedata
|
| | |
| | |
| | |
| | |
| | | |
After further hardware investigation, it appears that some games, perhaps those more lazily coded, will not call EnsureSaveData, meaning that they expect the normal (current) save to be automatically made. Additionally, some games do not create a cache or temporary save before use.
In these 3 specific instances, the save is created automatically for the game if it doesn't exist.
|
|\ \ \
| | | |
| | | | |
Kernel: Implement a New Thread Scheduler V2
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In case of redundant yields, the scheduler will now idle the core for
it's timeslice, in order to avoid continuously yielding the same thing
over and over.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
hid/npad: Minor cleanup
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We should be setting the connection state to true, otherwise we aren't
actually making the controllers connected like the function name
indicates.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
While not an issue, it does prevent fallthrough from occurring if
anything is ever added after this case (unlikely to occur, but this
turns a trivial "should not cause issues" into a definite "won't cause
issues).
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Performs the same behavior, but is built into the core language itself.
No functional change.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The const qualified variant can also be called in non-const contexts, so
we can remove the non-const variant to eliminate a bit of code
duplication.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Clearly separate these from the variable declarations to make them more
visible.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
dmnt_cheat_vm: Correct register Restore and ClearRegs behavior
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Previously these were performing the same behavior as the Save and
ClearSaved opcode types.
|
|\ \ \ \
| | | | |
| | | | | |
service/apm/controller: Minor interface changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
While a map is an OK way to do lookups (and usually recommended in most
cases), this is a map that lives for the entire duration of the program
and only deallocates its contents when the program terminates.
Given the total size of the map is quite small, we can simply use a
std::array of pairs and utilize std::find_if to perform the same
behavior without loss of performance.
This eliminates a static constructor and places the data into the
read-only segment.
While we're at it, we can also handle malformed inputs instead of
directly dereferencing the resulting iterator.
|
| |/ / /
| | | |
| | | |
| | | | |
This doesn't modify instance state, so it can be made const qualified.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Amends the initializer lists to be ordered in the same manner that
they're declared within the class.
|
|/ / /
| | |
| | |
| | |
| | | |
Amends the initializer lists to be ordered in the same manner that
they're declared within the class.
|
|\ \ \
| | | |
| | | | |
General fixes to Async GPU
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Events are supposed to be cleared on quering. This fixes that issue.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This has been hardware tested and it seems that NVFlinger will still
signal even if there are no buffers to present.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit uses guest fences on vSync event instead of an articial fake
fence we had.
It also corrects to keep signaling display events while loading the game
as the OS is suppose to send buffers to vSync during that time.
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
{bcat, gpu, nvflinger}: Remove trivial usages of the global system accessor
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Removes all uses of the global system accessor within the BCAT
interface.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Core Timing: Rework Core Timing to run all cores evenly.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
pl_u: Move open source font archives and fix NAND error
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
file_sys: Add code to access raw gamecard partitions and lazily load them
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Services::ES fix casting warnings
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
lm: Rewrite logger to use core reporting services
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Allows saving and clearer output of data.
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Allows centralized control over logging mechanisms.
|
| |/ / /
| | | |
| | | | |
Takes the vector from head to tail of log data and saves it.
|
| |_|/
|/| |
| | |
| | | |
Makes use of the already existing DeactivateController function.
|
|\ \ \
| | | |
| | | | |
core: Remove Core::CurrentProcess()
|
| | | |
| | | |
| | | |
| | | | |
This isn't used anywhere in either the cpp or header file.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This only encourages the use of the global system instance (which will
be phased out long-term). Instead, we use the direct system function
call directly to remove the appealing but discouraged short-hand.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Migrates the HLE service code off the use of directly accessing the
global system instance where trivially able to do so.
This removes all usages of Core::CurrentProcess from the service code,
only 8 occurrences of this function exist elsewhere. There's still quite
a bit of "System::GetInstance()" being used, however this was able to
replace a few instances.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
We need to perform explicit casts here, otherwise we're implicitly
truncating a 64-bit type to a 32-bit one.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Without this, the std::move within the constructor initializer list
won't be able to actually perform a move.
|
| | | |
| | | |
| | | |
| | | | |
Allows us to remove a constructor initializer list.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given the string is appended to another, we can make it a view so a
redundant full copy of the string isn't made.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This member function doesn't modify internal member state, so it can be
marked const.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
On parse errors, we can log out the explanatory string indicating what
the parsing error was, rather than just ignoring the variable and
returning an overly broad error code.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
[crypto] Use IsAllZeroArray helper function
|
| | | |
|
|\ \ \
| |/ /
|/| | |
bcat: Implement BCAT service and connect to yuzu Boxcat server
|
| | | |
|
| | | |
|
| | |
| | |
| | | |
Ports BCAT to use FSC interface
|
| | | |
|
| | |
| | |
| | | |
Huge thanks to lioncash for re-ing this for me.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Returns the data that should be returned by PopLaunchParameter kind=ApplicationSpecific.
|
| | | |
|
| | |
| | |
| | |
| | | |
Previously we were simply returning the account-preselect structure all times but if passed with a different mode the game expects application-specific data. This also adds a hook for BCAT into this allowing us to send the launch parameter through bcat,
|
| | |
| | |
| | |
| | | |
Takes a title ID and simply deletes all the data for that title ID's bcat. Invokes the respective backend command.
|
| | |
| | |
| | |
| | | |
Takes a title ID and passphrase (0x40 byte string) and passes it to the backend.
|
| | |
| | |
| | |
| | | |
Variant also supports only updating a single directory. These just both invoke backend commands.
|
| | |
| | |
| | |
| | | |
Used to query completion status and events for the current delivery task.
|
| | |
| | |
| | |
| | | |
Used to read the contents of files and access their metadata.
|
| | |
| | |
| | |
| | | |
Used to list and get directories at the root level.
|
| | |
| | |
| | |
| | | |
Used to create subclasses to manage files and directories and to list directories.
|
| | |
| | |
| | |
| | | |
Used to access contents of download.
|
| | | |
|
| | |
| | |
| | |
| | | |
Downloads content from yuzu servers and unpacks it into the temporary directory provided. Fully supports all Backend features except passphrase.
|
| | |
| | |
| | |
| | | |
Provides the most abstract simplified functions of BCAT as functions. Also includes a NullBackend class which is just a no-op.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Allows other services to call applets without using LLE.
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| | |/
| |/| |
arm_dynarmic: Check if jit is nullptr when preparing reschedule
|
| | |
| | |
| | |
| | | |
Prevents crash with multiprocess loading.
|
|/ /
| |
| |
| | |
We should signal when a net controller is added and our event should be manual, not automatic.
|
|\ \
| | |
| | | |
am: Implement exit locking and self exit commands
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Closes the current application.
|
| | |
| | |
| | |
| | | |
Tested against libnx, signals to games to begin cleanup.
|
| | |
| | |
| | |
| | | |
Used to determine if yuzu should confirm before pausing or stopping a game.
|
|\ \ \
| | | |
| | | | |
AcquireNpadStyleSetUpdateEventHandle should have a separate event for each controller type
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
service/acc: Lower log severity from INFO to DEBUG
|
| | | | |
| | | | |
| | | | |
| | | | | |
According to ogniK, this should have always been Debug and not Info.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Initial implementation of Ioctl2 & Ioctl3
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Purpose of Ioctl2 and Ioctl3 is to prevent the passing of raw pointers through ioctls
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove usage of System::CurrentInterface() from most services
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This reverts commit fa1c60c33ef88c6cd0b72da46842dc9098db712d, reversing
changes made to e34899067b60a69bca02761bd1290c6824bb559a.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
cheat_engine: Use Atmosphere's Cheat VM and fix cheat crash
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
This used to occur due to the VMManager being nullptr at the time cheats were registered (during load, but before it was done). This is bypassed by not accessing the VMManager for offset data until load is complete,
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
As opposed to converting to string and then back to hex array
|
| | | | | |
| | | | | |
| | | | | | |
This is to go with the Atmosphere VM port, now it just contains the callbacks needed for the interface between DmntCheatVm and yuzu, along with the cheat parsers.
|
| | | | | |
| | | | | |
| | | | | | |
This was done because the current VM contained many inaccuracies and this also allows cheats to have identical behavior between hardware and yuzu.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
system_archive: Move shared font data to system_archive and fix extended font data
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
prepo: Implement New, System, and Non-User variants of SaveReport
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Used by fsp-srv/IDeviceOperator
|
| | | |
| | | |
| | | |
| | | | |
Includes version and meta title ID, used by fsp-srv/IDeviceOperator
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | | |
Creates a default save data for the application given a user ID.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | | |
Prevents a crash if the filename is less than 9 characters long.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | | |
Matches hardware behavior and eliminates some nasty behavior we were doing that wasn't hw-accurate at all.
|
| | | |
| | | |
| | | | |
If title ID is 0, there are no add ons, prevents wasting time looking for them.
|
| | | |
| | | |
| | | | |
Prevents a crash if the load dir would be nullptr, instead logs an error and returns appropriately.
|
| | | |
| | | |
| | | | |
Needed to use the RegisteredCache/PlaceholderCache on gamecards.
|
| | | | |
|
| | | |
| | | |
| | | | |
Fixes a bug where homebrew that has a title ID with the update bit set can cause issues with the PatchManager
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Port citra-emu/citra#4882: "Add frametime logging for tracking performance over time"
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Co-Authored-By: jroweboy <jroweboy@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
Core/Memory: Only FlushAndInvalidate GPU if the page is marked as RasterizerCachedMemory
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
This commit avoids Invalidating and Flushing the GPU if the page is not
marked as a RasterizerCache Page.
|
|\ \ \ \
| | | | |
| | | | | |
nsp: Fix various errors with loading and processing of extracted NSPs
|
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids all extracted NSPs being marked as error file type because they don't have program NCAs.
|
| | |_|/
| |/| |
| | | |
| | | | |
Avoids 0 being used as title ID for all extracted NSPs.
|
| |/ /
|/| |
| | |
| | | |
These functions are not stubbed and are called fairly often. Due to the nature of how often they're called, we should keep them marked as LOG_TRACE instead of LOG_DEBUG or LOG_WARNING
|
|\ \ \
| |_|/
|/| | |
acc: Implement IProfileEditor interface and 'Store'/'StoreWithImage' commands
|
| | |
| | |
| | | |
Takes a UUID of a user and provides and interface that allows RW access to user data/settings.
|
| | |
| | |
| | | |
Verified with IDA
|
| | |
| | |
| | | |
Needed by IProfileEditor 'Store' and 'StoreWithImage'
|
| | |
| | |
| | | |
Since 2/3 of the commands are shared, this is likely how its done on HW.
|
|\ \ \
| | | |
| | | | |
nro/ui: Show "Developer" field in Properties
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
With this, the "Developer" field in the Properties for homebrew is now populated.
Signed-off-by: Nick Renieris <velocityra@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
service/am: Remove usages of global system accessors
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids the use of global accessors, removing the reliance on global
state. This also makes dependencies explicit in the interface, as
opposed to being hidden
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel/vm_manager: Minor cleanup
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Corrects the parameter names within the doxygen comments so that they
resolve properly.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Narrows the scope of variables down to where they're only necessary.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
If an unmapping operation fails, we shouldn't be decrementing the amount
of memory mapped and returning that the operation was successful. We
should actually be returning the error code in this case.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids potentially expensive (depending on the size of the memory block)
allocations by reserving the necessary memory before performing both
insertions. This avoids scenarios where the second insert may cause a
reallocation to occur.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids an unnecessary atomic reference count increment and decrement.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids needing to read the same long sequence of code in both code
paths. Also makes it slightly nicer to read and debug, as the locals
will be able to be shown in the debugger.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Same behavior, one less magic constant to read.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
Assertions already log out the function name, so there's no need to
manually include the function name in the assertion strings.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
es: Implement various ticket accessor commands from IEticketService
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
Copies the raw personal ticket data into the buffer provided.
|
| | | | | |
| | | | | |
| | | | | | |
Copies the raw common ticket data for the specified rights ID into the buffer provided.
|
| | | | | |
| | | | | |
| | | | | | |
Returns the size of the buffer needed to hold the personal ticket associated with the rights ID.
|
| | | | | |
| | | | | |
| | | | | | |
Returns the size of the buffer needed to hold the common ticket associated with the rights ID.
|
| | | | | |
| | | | | |
| | | | | | |
Returns an application-specific number of entries of personal tickets, starting at offset 0.
|
| | | | | |
| | | | | |
| | | | | | |
Returns an application specified count of entries of common tickets, starting at offset 0.
|
| | | | | |
| | | | | |
| | | | | | |
Returns the number of personalized (console/user-unique) tickets in the KeyManager.
|
| | | | | |
| | | | | |
| | | | | | |
Returns the number of common (non-console-unique) tickets in the KeyManager.
|
| | | | | |
| | | | | |
| | | | | | |
Takes a rights ID as input and returns the associated title key, if it exists.
|
| | | | | |
| | | | | |
| | | | | | |
Takes a ticket and certificate and installs it to the KeyManager.
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
system_archive: Add open-source reimplementation of MiiModel data
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
audren_u: Stub IAudioDevice::QueryAudioDeviceInputEvent
|
| | | | | | | |
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hid: Implement PermitVibration and IsVibrationPermitted
|
| | | | | | |
| | | | | | |
| | | | | | | |
Co-Authored-By: David <25727384+ogniK5377@users.noreply.github.com>
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
externals: update fmt to 6.0.0
|
| | | | | | | |
|
| |/ / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* AM: Implement IApplicationFunctions::GetGpuErrorDetectedSystemEvent
* Remove unneeded event clear
* Fix event name
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service/audio/audren_u: Stub IAudioDevice::GetAudioDeviceOutputVolume
|
| | | | | | |
| | | | | | |
| | | | | | | |
We can remove this since its already a f32 value
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Volume is a f32 value. (SwIPC describes it as a u32, but it is actually f32 as corroborated by switchbrew docs and SetAudioDeviceOutputVolume)
```cpp
const f32 volume = rp.Pop<f32>();
```
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
mii: Handle logging of unknown database source
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
renderer_opengl: Implement RGB565 framebuffer format
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
VM_Manager: Align allocated host physical memory to 256bytes
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This commit ensures that all backing memory allocated for the Guest CPU
is aligned to 256 bytes. This due to how gpu memory works and the heavy
constraints it has in the alignment of physical memory.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service/audren_u: Unstub ListAudioDeviceName
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Audio devices use the supplied revision information in order to
determine if USB audio output is able to be supported. In this case, we
can only really handle using this revision information in
ListAudioDeviceName(), where it checks if USB audio output is supported
before supplying it as a device name.
A few other scenarios exist where the revision info is checked, such as:
- Early exiting from SetAudioDeviceOutputVolume if USB audio is
attempted to be set when that device is unsupported.
- Early exiting and returning 0.0f in GetAudioDeviceOutputVolume when
USB output volume is queried and it's an unsupported device.
- Falling back to AHUB headphones in GetActiveAudioDeviceName when the
device type is USB output, but is unsupported based off the revision
info.
In order for these changes to also be implemented, a few other changes
to the interface need to be made.
Given we now properly handle everything about ListAudioDeviceName(), we
no longer need to describe it as a stubbed function.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The revision querying facilities are used by more than just audren. e.g.
audio devices can use this to test whether or not USB audio output is
supported.
This will be used within the following change.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Trims out the lingering reliance on global state out of the audio code.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This service function only ever returns a result and nothing more.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
AudioDevice and AudioInterface aren't valid device names on the Switch.
We should also be returning consistent names in
GetActiveAudioDeviceName().
While we're at it, we can also handle proper name output in
ListAudioDeviceName, by returning all the available devices on the
Switch.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Implement GPU Synchronization Mechanisms & Correct NVFlinger
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/process: Allocate the process' TLS region during initialization
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Prior to execution within a process beginning, the process establishes
its own TLS region for uses (as far as I can tell) related to exception
handling.
Now that TLS creation was decoupled from threads themselves, we can add
this behavior to our Process class. This is also good, as it allows us
to remove a stub within svcGetInfo, namely querying the address of that
region.
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | | |
Keeps this particular set of behavior isolated to its own function.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This messages were originally set as warnning since few games used these
svcs and it was needed for debugging. This is no longer the case.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
core: Remove CurrentArmInterface() global accessor
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Replaces the final usage of the global accessor function and removes it.
Removes one more enabler of global state.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Implement MapPhysicalMemory/UnmapPhysicalMemory
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This sets the DeviceMapped attribute for GPU-mapped memory blocks,
and prevents merging device mapped blocks. This prevents memory
mapped from the gpu from having its backing address changed by
block coalesce.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This implements svcMapPhysicalMemory/svcUnmapPhysicalMemory for Yuzu,
which can be used to map memory at a desired address by games since
3.0.0.
It also properly parses SystemResourceSize from NPDM, and makes
information available via svcGetInfo.
This is needed for games like Super Smash Bros. and Diablo 3 -- this
PR's implementation does not run into the "ASCII reads" issue mentioned
in the comments of #2626, which was caused by the following bugs in
Yuzu's memory management that this PR also addresses:
* Yuzu's memory coalescing does not properly merge blocks. This results
in a polluted address space/svcQueryMemory results that would be
impossible to replicate on hardware, which can lead to game code making
the wrong assumptions about memory layout.
* This implements better merging for AllocatedMemoryBlocks.
* Yuzu's implementation of svcMirrorMemory unprotected the entire
virtual memory range containing the range being mirrored. This could
lead to games attempting to map data at that unprotected
range/attempting to access that range after yuzu improperly unmapped
it.
* This PR fixes it by simply calling ReprotectRange instead of
Reprotect.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Creating multiple "AudioRenderer" threads cause the previous thread to be overwritten. The thread will name be renamed to AudioRenderer-InstanceX, where X is the current instance number.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Restore memory perms on svcUnmapMemory/UnloadNro
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Prior to PR, Yuzu did not restore memory to RW-
on unmap of mirrored memory or unloading of NRO.
(In fact, in the NRO case, the memory was unmapped
instead of reprotected to --- on Load, so it was
actually lost entirely...)
This PR addresses that, and restores memory to RW-
as it should.
This fixes a crash in Super Smash Bros when creating
a World of Light save for the first time, and possibly
other games/circumstances.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core/arm: Remove obsolete Unicorn memory mapping
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The JIT is mature enough that this setting can be removed, falling back
to Unicorn only on unsupported architectures. Any missing features from
Unicorn (of which there are extremely few), are mostly
developer-oriented, which most users don't care about.
Features should be coordinated with the JIT, not the interpreter,
anyhow.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This was initially necessary when AArch64 JIT emulation was in its
infancy and all memory-related instructions weren't implemented.
Given the JIT now has all of these facilities implemented, we can remove
these functions from the CPU interface.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This simply queries whether or not auto-sleep facilities are disabled
and has no special handling. It's a basic getter function.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Provides a basic implementation of SetAutoSleepDisabled. Until idle
handling is implemented, this is about the best we can do.
In the meantime, provide a rough documenting of specifics that occur
when this function is called on actual hardware.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
IFriendService::GetFriendList
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | | |
We don't have any friends implemented in Yuzu yet so it doesn't make sense to return any friends. For now we'll be returning 0 friends however the information provided will allow a proper implementation of this cmd when needed.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
pm: Implement various pm commands for finding process and title IDs
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Returns the process ID of the current application or 0 if no app is running.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Takes a title ID and searches for a matching process, returning error if it doesn't exist, otherwise the process ID.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Searches the process list for a process with the specified ID, returning the title ID if it exists.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
mii: Implement IDatabaseService SetInterfaceVersion
|
| | | | | | |
| | | | | | |
| | | | | | | |
Appears to set a member variable used to affect the API that games access, and the method used to store data.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
hid:StartLrAssignmentMode, hid:StopLrAssignmentMode, hid:SwapNpadAssignment
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
StartLrAssignmentMode and StopLrAssignmentMode don't require any implementation as it's just used for showing the screen of changing the controller orientation if the user wishes to do so. Ever since #1634 this has not been needed as users can specify the controller orientation from the config and swap at any time. We store a private member just in case this gets used for anything extra in the future
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
apm: Initial implementation of performance config and boost mode
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
8.0.0+ identical version of apm
|
| | |_|/ / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
fsp-srv: Implement Access Logging Functionality
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Returns some misc. data about logging to help the game determine if it should log.
|
| | | | | | | | |
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Allows games to log data to the SD.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core/reporter: Minor changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Taking the json instance as a constant reference, makes all moves into
the parameter non-functional, resulting in copies. Taking it by value
allows moves to function.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Adds missing inclusions to prevent potential compilation issues.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The Reporter class is part of the Core namespace, so the System class
doesn't need to be qualified.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This can inhibit copy-elision, so we can remove this redundant move.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Makes all control statements braced, regardless of their size, making
code more uniform.
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
If the path couldn't be created, then we shouldn't be attempting to save
the file.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/vm_manager: Handle stack/TLS IO region placement a little better
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These aren't used within the central memory management code, so they can
be removed.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This isn't used by anything in the header file, so it can be removed.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Provides a more accurate name for the memory region and also
disambiguates between the map and new map regions of memory, making it
easier to understand.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Handles the placement of the stack a little nicer compared to the
previous code, which was off in a few ways. e.g.
The stack (new map) region, shouldn't be the width of the entire address
space if the size of the region calculation ends up being zero. It
should be placed at the same location as the TLS IO region and also have
the same size.
In the event the TLS IO region contains a size of zero, we should also
be doing the same thing. This fixes our memory layout a little bit and
also resolves some cases where assertions can trigger due to the memory
layout being incorrect.
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
yuzu: Move CPU Jit setting to Debug tab
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
A normal user shouldn't change this, as it will slow down the emulation and can lead to bugs or crashes. The renaming is done in order to prevent users from leaving this on without a way to turn it off from the UI.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/process: Decouple TLS handling from threads
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Ensures a Process instance is always created with a deterministic
initial state.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Extracts out all of the thread local storage management from thread
instances themselves and makes the owning process handle the management
of the memory. This brings the memory management slightly more in line
with how the kernel handles these allocations.
Furthermore, this also makes the TLS page management a little more
readable compared to the lingering implementation that was carried over
from Citra.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This will be necessary for making our TLS slot management slightly more
straightforward. This can also be utilized for other purposes in the
future.
We can implement the existing simpler overload in terms of this one
anyways, we just pass the beginning and end of the ASLR region as the
boundaries.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
IAudioDevice::QueryAudioDeviceOutputEvent
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
The event should only be signaled when an output audio device gets changed. Example, Speaker to USB headset. We don't identify different devices internally yet so there's no need to signal the event yet.
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
set: Implement GetQuestFlag with config option
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Simply returns a true/false value indicating if the system is a kiosk system. This has been mapped to a config option for the purposes of yuzu.
|
| | |_|_|/ / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implemented InitializeApplicationInfo & InitializeApplicationInfoRestricted
|
| | | | | | | | |
|
| | | | | | | | |
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
InitializeApplicationInfoRestricted will need further implementation as it's checking for other user requirements about the game. As we're emulating, we're assuming the user owns the game so we skip these checks currently, implementation will need to be added further on
|
|\ \ \ \ \ \ \
| |_|_|_|/ / /
|/| | | | | | |
Implement Time::GetSharedMemoryNativeHandle
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This PR attempts to implement the shared memory provided by GetSharedMemoryNativeHandle. There is still more work to be done however that requires a rehaul of the current time module to handle clock contexts. This PR is mainly to get the basic functionality of the SharedMemory working and allow the use of addition to it whilst things get improved on.
Things to note:
Memory Barriers are used in the SharedMemory and a better solution would need to be done to implement this. Currently in this PR I’m faking the memory barriers as everything is sync and single threaded. They work by incrementing the counter and just populate the two data slots. On data reading, it will read the last added data.
Specific values in the shared memory would need to be updated periodically. This isn't included in this PR since we don't actively do this yet. In a later PR when time is refactored this should be done.
Finally, as we don't handle clock contexts. When time is refactored, we will need to update the shared memory for specific contexts. This PR does this already however since the contexts are all identical and not separated. We're just updating the same values for each context which in this case is empty.
Tiime:SetStandardUserSystemClockAutomaticCorrectionEnabled, Time:IsStandardUserSystemClockAutomaticCorrectionEnabled are also partially implemented in this PR. The reason the implementation is partial is because once again, a lack of clock contexts. This will be improved on in a future PR.
This PR closes issue #2556
|
|\ \ \ \ \ \ \
| |_|_|_|_|/ /
|/| | | | | | |
Implemented INotificationService
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Seems to be an issue with clang format
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This can happen when installing NSPs too, not just XCIs.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
DeltaFragments are not useful to us and are often not included in patch NSPs.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
DeltaFragments are only used to download and apply partial patches on a real console, and are not useful to us at all. Most patch NSPs do not include them, and when they do, it's a waste of space to install them.
|
| |_|_|/ /
|/| | | |
| | | | |
| | | | | |
Avoids potential confusion, since patches and DeltaFragments are not the same thing. Actual full patches are listed under the Program type.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Core_Timing: Make core_timing threadsafe by default.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The old implementation had faulty Threadsafe methods where events could
be missing. This implementation unifies unsafe/safe methods and makes
core timing thread safe overall.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
memory: Add class to manage and enforce memory freezing
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
applets: Implement backend and default frontend for Parental Controls and EShop (ShopN) applets
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids using system accessor to get current process in applet code.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents crashes with ShopN applet occasionally.
|
| | | | | |
| | | | | |
| | | | | | |
If it is needed but wasn't passed (or passed nullptr), the Shop handling code will alert and throw an error.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
Allows easy handling of multiple shim types, as they have enough in common to be the same backend but not enough to share init/exec.
|
| | | | | |
| | | | | |
| | | | | | |
Much, much more HW-accurate and allows us to easily support all of the different web 'shim' types.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
This is more representative of what actually occurs, as web does support remote URLs which wouldn't need a romfs callback. This paves for easy future support of this with a call like 'OpenPageRemote' or similar.
|
| | | | | | |
|
| | |_|/ /
| |/| | |
| | | | | |
This is responsible for parental controls and supports verifying, changing, and registering PIN codes.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
These keep track of running process' launch properties and control properties and allows for issuing and reading them by process and title ID.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Glue is the name of the sysmodule that contains both arp and bgtc.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Manages mapping between title IDs and application launch and control properties.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Used to determine StorageId source for application data.
|
|/ / / / |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
service/acc: Silence truncation warnings
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
The sanitizing function ensures that the returned type is always the
correct type. This eliminates warnings without extra casts.
|
|\ \ \ \
| | | | |
| | | | | |
kernel: Differentiate kernel and user processes when picking ID
|
| | |_|/
| |/| |
| | | |
| | | | |
This allows kernel internal type processes to be assigned IDs in the KIP range while userland processes are assigned in the user range.
|
|\ \ \ \
| | | | |
| | | | | |
loader, file_sys: Add support for parsing and loading KIP (Kernel Internal Process) files
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Needed for KIP loading as KIPs do not have an NPDM but do have the essential parts of the data within.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Previously, this TU contained the necessary headers to parse KIP/INI but now it should just use the FileSys class.
|
| | | | | |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
core: Add detailed local reporting feature for development
|
| | | | |
| | | | |
| | | | | |
Also cleanup of general stuff
|
| | | | |
| | | | |
| | | | |
| | | | | |
Logs a lot of seemingly innocuous telemetry games generate.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Matches offical behavior with creport and replaces old log/text based report system.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This matches official behavior with the erpt/eclct/eupld service chain.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This also reworks the applet data storage to be peekable.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Full enable/disable for all reports.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Returns results as a vector of entries for further processing. Logs addresses, offsets, and mangled name.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Needed for backtrace decomposition
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Revert PR 2590.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Even though it has been proven that IAudioRenderer:SystemEvent is
actually an automatic event. The current implementation of such event is
all thought to be manual. Thus it's implementation needs to be corrected
when doing such change. As it is right now this PR introduced a series
of regressions on softlocks on multiple games. Therefore, this pr
reverts such change until a correct implementation is made.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Update content_archive.cpp
|
| | | | | |
| | | | | |
| | | | | | |
log clutter in debug logs when theres really no need
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
core: Remove unused CiTrace source files
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These source files have been unused for the entire lifecycle of the
project. They're a hold-over from Citra and only add to the build time
of the project, so they can be removed.
There's also likely no way this would ever work in yuzu in its current
form without revamping quite a bit of it, given how different the GPU on
the Switch is compared to the 3DS.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
service/audio/audren_u: Correct event reset type for the system event
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is actually an auto-reset event in the audio service itself, not a
manual one.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
IPC-100 was changed to InitializeApplicationInfoOld instead of InitializeApplicationInfo. IPC-150 makes an indentical call to IPC-100 however does extra processing. They should not have the same name as it's quite confusing to debug.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
common/hex_util: Combine HexVectorToString() and HexArrayToString()
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These can be generified together by using a concept type to designate
them. This also has the benefit of not making copies of potentially very
large arrays.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
file_sys/ips_layer: Remove unnecessary reserve() call
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given 'replace' is assigned to on the following line, this isn't
necessary, given the underlying data is going to be overwritten
entirely.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/vm_manager: Remove redundant Reset call in destructor
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is performing more work than would otherwise be necessary during
VMManager's destruction. All we actually want to occur in this scenario
is for any allocated memory to be freed, which will happen automatically
as the VMManager instance goes out of scope.
Anything else being done is simply unnecessary work.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
file_sys/card_image: Minor cleanup
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We already support Rev 1+.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes for nicer reading.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes for more consistent reading.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Same thing, significantly less noisy.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Same thing, less duplication. We can also std::move raw into the
PartitionFilesystem constructor.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can just use the size of the array to dehardcode it.
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
Same thing, less code.
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Names a few more entries in relevant structures. Information based off
SwitchBrew and my own RE.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/process: Make Create()'s name parameter be taken by value
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Makes the interface more flexible in terms of how Create() may be
called, while still allowing the parameter itself to be moved into.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Given we don't currently implement the personal heap yet, the existing
memory querying functions are essentially doing what the memory querying
types introduced in 6.0.0 do.
So, we can build the necessary machinery over the top of those and just
use them as part of info types.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Disambiguates and makes the name a little more consistent with
TotalPhysicalMemoryUsed.
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
video_core: Drop OpenGL core in favor of OpenGL compatibility
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
kernel/process: Remove unused boost header include
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Boost headers typically include a lot of other headers, so removing this
can prevent a bit of unnecessary compiler churn when building.
|
|\ \ \ \
| | | | |
| | | | | |
service/ns: Add missing override specifiers
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
lr: Add command handler skeletons for Open*LocationResolver
|
| | | | |
| | | | |
| | | | | |
Returns an object of type IAddOnContentLocationResolver for the provided StorageId.
|
| | | | |
| | | | |
| | | | | |
Returns an object of type IRegisteredLocationResolver for the StorageId.
|
| | | | |
| | | | |
| | | | | |
Returns an object of type ILocationResolver with the provided StorageId.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core/telemetry_session: Remove usages of the global system accessor
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The contents of these includes aren't used anywhere in this translation
unit.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is a hold-over from Citra and doesn't apply to yuzu.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This will automatically occur when the backend instance goes out of
scope at the end of the destructor's execution.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the dependency explicit in the TelemetrySession's interface
instead of making it a hidden dependency.
This also revealed a hidden issue with the way the telemetry session was
being initialized. It was attempting to retrieve the app loader and log
out title-specific information. However, this isn't always guaranteed to
be possible.
During the initialization phase, everything is being constructed. It
doesn't mean an actual title has been selected. This is what the Load()
function is for. This potentially results in dead code paths involving
the app loader. Instead, we explicitly add this information when we know
the app loader instance is available.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
NonCopyable is misleading here. It also makes the class non-moveable as
well, so we can be explicit about this.
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core/core_timing_util: Use std::chrono types for specifying time units
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the casing consistent with all of our general function naming
conventions.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the interface more type-safe and consistent in terms of return
values.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
Removes unused overloads, simplifying the overall interface,
deduplicating some code.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement/Fix IApplicationFunctions::GetDesiredLanguage
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Treating it as a u16 can result in a sign-conversion warning when
performing arithmetic with it, as u16 promotes to an int when aritmetic
is performed on it, not unsigned int.
This also makes the interface more uniform, as the layout interface now
operates on u32 across the board.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
mii: Implement MiiManager backend and several mii service commands
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Since the MiiManager was designed around the IPC interface, this is quite easy. Only functions that were clearly defined were implemented.
|
| | | | |
| | | | |
| | | | | |
Provides serialization/deserialization to the database in system save files, accessors for database state and proper handling of both major Mii formats (MiiInfo and MiiStoreData)
|
| | | | |
| | | | |
| | | | | |
Since the Mii database uses UUIDs very similar to the Accounts database, it makes no sense to not share code between them.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
yuzu_cmd: Split emu_window OpenGL implementation into its own file
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
There's no performance improvement in passing an unsigned pair by
reference.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
loader/nso, core/core_timing_util: Silence sign-comparison warning
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
We can just make the conversion explicit instead of implicit here to
silence -Wsign-compare warnings.
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
This was previously performing a size_t == int comparison. Silences a
-Wsign-compare warning.
|
|\ \ \ \
| |/ / /
|/| | | |
service/aoc_u: Minor cleanup
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously, the code was accumulating data into a std::vector and then
tossing all of it away if a setting was disabled.
Instead, we can just check if it's disabled and do no work at all if
possible. If it's enabled, then we can append to the vector and
allocate.
Unlikely to impact usage much, but it is slightly less sloppy with
resources.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Removes two header dependencies related to file handling that aren't
actually used within the source file.
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
A few of the aoc service stubs/implementations weren't fully popping all
of the parameters passed to them. This ensures that all parameters are
popped and, at minimum, logged out.
|
|\ \ \
| |/ /
|/| | |
Port citra-emu/citra#4716: "HLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread"
|
| | |
| | |
| | | |
Co-Authored-By: Mat M. <mathew1800@gmail.com>
|
| | |
| | |
| | |
| | | |
This reduces the boilerplate that services have to write out the current thread explicitly. Using current thread instead of client thread is also semantically incorrect, and will be a problem when we implement multicore (at which time there will be multiple current threads)
|
|\ \ \
| | | |
| | | | |
kernel/svc: Reorganize and fix up the initial handling of svcSetThreadCoreMask()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
These are actually quite important indicators of thread lifetimes, so
they should be going into the debug log, rather than being treated as
misc info and delegated to the trace log.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Makes the code much nicer to follow in terms of behavior and control
flow. It also fixes a few bugs in the implementation.
Notably, the thread's owner process shouldn't be accessed in order to
retrieve the core mask or ideal core. This should be done through the
current running process. The only reason this bug wasn't encountered yet
is because we currently only support running one process, and thus every
owner process will be the current process.
We also weren't checking against the process' CPU core mask to see if an
allowed core is specified or not.
With this out of the way, it'll be less noisy to implement proper
handling of the affinity flags internally within the kernel thread
instances.
|
| | | |
| | | |
| | | |
| | | | |
Adds the missing flags to the enum and documents them.
|
|\ \ \ \
| | | | |
| | | | | |
service/audren_u: Get rid of magic values within GetAudioRendererWorkBufferSize
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Also introduced in REV5 was a variable-size audio command buffer. This
also affects how the size of the work buffer should be determined, so we
can add handling for this as well.
Thankfully, no other alterations were made to how the work buffer size
is calculated in 7.0.0-8.0.0. There were indeed changes made to to how
some of the actual audio commands are generated though (particularly in
REV7), however they don't apply here.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Introduced in REV5. This is trivial to add support for, now that
everything isn't a mess of random magic constant values.
All this is, is a change in data type sizes as far as this function
cares.
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | | |
"Unmagics" quite a few magic constants within this code, making it much
easier to understand. Particularly given this factors out specific
sections into their own self-contained lambda functions.
|
|\ \ \ \
| | | | |
| | | | | |
service/set: Correct and simplify behavior related to copying language codes
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This corrects cases where it was possible to write more entries into the
write buffer than were requested. Now, we check the size of the buffer
before actually writing into them.
We were also returning the wrong value for
GetAvailableLanguageCodeCount2(). This was previously returning 64, but
only 17 should have been returned. 64 entries is the size of the static
array used in MakeLanguageCode() within the service binary itself, but
isn't the actual total number of language codes present.
|
|\ \ \ \
| | | | |
| | | | | |
service/am: Add missing return in error case for IStorageAccessor's Read/Write()
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Previously this would fall through and return successfully, despite
being an out of bounds read or write.
|
|\ \ \ \
| | | | |
| | | | | |
ipc_helpers: Amend floating-point type in Pop<double> specialization
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Currently, this overload isn't used, so this wasn't actually hit in any
code, only the float overload is used.
|
|\ \ \ \
| | | | |
| | | | | |
core/kernel/object: Rename ResetType enum members for clarity
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Renames the members to more accurately indicate what they signify.
"OneShot" and "Sticky" are kind of ambiguous identifiers for the reset
types, and can be kind of misleading. Automatic and Manual communicate
the kind of reset type in a clearer manner. Either the event is
automatically reset, or it isn't and must be manually cleared.
The "OneShot" and "Sticky" terminology is just a hold-over from Citra
where the kernel had a third type of event reset type known as "Pulse".
Given the Switch kernel only has two forms of event reset types, we
don't need to keep the old terminology around anymore.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
These are only used from within this translation unit, so they don't
need to have external linkage. They were intended to be marked with this
anyways to be consistent with the other service functions.
|
|\ \ \
| | | |
| | | | |
service/audctl: Update documentation comments to be relative to 8.0.0
|
| |/ /
| | |
| | |
| | | |
The state of these service calls are still the same in version 8.0.0.
|
|\ \ \
| | | |
| | | | |
Port citra-emu/citra#4749: "web_service: Misc fixes"
|
| | | |
| | | |
| | | |
| | | | |
The backend is not used until we decide to submit the testcase/telemetry, and creating it early prevents users from updating the credentials properly while the games are running.
|
|\ \ \ \
| | | | |
| | | | | |
core/memory: Remove unused FlushMode enum
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Recent changes to memory-related code resulted in this being unused, so
we can remove it.
|
|/ / /
| | |
| | |
| | |
| | | |
This class is used in a polymorphic context, so destruction of the
context will lead to undefined behavior if the destructor isn't virtual.
|
| | |
| | |
| | |
| | | |
Unintentionally introduced in 552d5071fa171165e4054392d8bb6bf2ecc924e2
|
|\ \ \
| |/ /
|/| | |
kernel/vm_manager: Remove usages of global system accessors
|
| | |
| | |
| | |
| | |
| | | |
Makes the dependency on the system instance explicit within VMManager's
interface.
|
|\ \ \
| | | |
| | | | |
kernel/svc: Clean up wait synchronization related functionality
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is a holdover from Citra, where the 3DS has both
WaitSynchronization1 and WaitSynchronizationN. The switch only has one
form of wait synchronizing (literally WaitSynchonization). This allows
us to throw out code that doesn't apply at all to the Switch kernel.
Because of this unnecessary dichotomy within the wait synchronization
utilities, we were also neglecting to properly handle waiting on
multiple objects.
While we're at it, we can also scrub out any lingering references to
WaitSynchronization1/WaitSynchronizationN in comments, and change them
to WaitSynchronization (or remove them if the mention no longer
applies).
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
The actual behavior of this function is slightly more complex than what
we're currently doing within the supervisor call. To avoid dumping most
of this behavior in the supervisor call itself, we can migrate this to
another function.
|
|\ \ \
| | | |
| | | | |
Allow picking a Compatibility Profile for OpenGL.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This option allows picking the compatibility profile since a lot of bugs
are fixed in it. We devs will use this option to easierly debug current
problems in our Core implementation.:wq
|
|\ \ \ \
| | | | |
| | | | | |
applets: Add AppletManager and implement PhotoViewer and Error applets
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Responsible for displaying error codes and messages
|
| | | | |
| | | | |
| | | | | |
As opposed to using Core::System::GetInstance()
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |_|/ /
|/| | | |
service/audctl: Implement GetTargetVolumeMin() and GetTargetVolumeMax()
|
| | | |
| | | |
| | | |
| | | |
| | | | |
These two service functions are literally hardcoded to always return
these values without any other error checking.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/wait_object: Make GetHighestPriorityReadyThread() a const member function
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
This doesn't actually modify internal state of a wait object, so it can
be const qualified.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/svc: Name supervisor call 0x36
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
This call was added to the SVC handlers in the 8.0.0 kernel, so we can
finally give it a name.
|
|\ \ \ \
| |/ / /
|/| | | |
core: Reorganize boot order
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This gives us significantly more control over where in the
initialization process we start execution of the main process.
Previously we were running the main process before the CPU or GPU
threads were initialized (not good). This amends execution to start
after all of our threads are properly set up.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Initially required due to the split codepath with how the initial main
process instance was initialized. We used to initialize the process
like:
Init() {
main_process = Process::Create(...);
kernel.MakeCurrentProcess(main_process.get());
}
Load() {
const auto load_result = loader.Load(*kernel.GetCurrentProcess());
if (load_result != Loader::ResultStatus::Success) {
// Handle error here.
}
...
}
which presented a problem.
Setting a created process as the main process would set the page table
for that process as the main page table. This is fine... until we get to
the part that the page table can have its size changed in the Load()
function via NPDM metadata, which can dictate either a 32-bit, 36-bit,
or 39-bit usable address space.
Now that we have full control over the process' creation in load, we can
simply set the initial process as the main process after all the loading
is done, reflecting the potential page table changes without any
special-casing behavior.
We can also remove the cache flushing within LoadModule(), as execution
wouldn't have even begun yet during all usages of this function, now
that we have the initialization order cleaned up.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Now that we have dependencies on the initialization order, we can move
the creation of the main process to a more sensible area: where we
actually load in the executable data.
This allows localizing the creation and loading of the process in one
location, making the initialization of the process much nicer to trace.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Like with CPU emulation, we generally don't want to fire off the threads
immediately after the relevant classes are initialized, we want to do
this after all necessary data is done loading first.
This splits the thread creation into its own interface member function
to allow controlling when these threads in particular get created.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Our initialization process is a little wonky than one would expect when
it comes to code flow. We initialize the CPU last, as opposed to
hardware, where the CPU obviously needs to be first, otherwise nothing
else would work, and we have code that adds checks to get around this.
For example, in the page table setting code, we check to see if the
system is turned on before we even notify the CPU instances of a page
table switch. This results in dead code (at the moment), because the
only time a page table switch will occur is when the system is *not*
running, preventing the emulated CPU instances from being notified of a
page table switch in a convenient manner (technically the code path
could be taken, but we don't emulate the process creation svc handlers
yet).
This moves the threads creation into its own member function of the core
manager and restores a little order (and predictability) to our
initialization process.
Previously, in the multi-threaded cases, we'd kick off several threads
before even the main kernel process was created and ready to execute (gross!).
Now the initialization process is like so:
Initialization:
1. Timers
2. CPU
3. Kernel
4. Filesystem stuff (kind of gross, but can be amended trivially)
5. Applet stuff (ditto in terms of being kind of gross)
6. Main process (will be moved into the loading step in a following
change)
7. Telemetry (this should be initialized last in the future).
8. Services (4 and 5 should ideally be alongside this).
9. GDB (gross. Uses namespace scope state. Needs to be refactored into a
class or booted altogether).
10. Renderer
11. GPU (will also have its threads created in a separate step in a
following change).
Which... isn't *ideal* per-se, however getting rid of the wonky
intertwining of CPU state initialization out of this mix gets rid of
most of the footguns when it comes to our initialization process.
|
|\ \ \ \
| |_|/ /
|/| | | |
kernel/thread: Remove unused guest_handle member variable
|
| | | |
| | | |
| | | |
| | | | |
Allows the handle to be seen alongside the entry point.
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
This member variable is entirely unused. It was only set but never
actually utilized. Given that, we can remove it to get rid of noise in
the thread interface.
|
|\ \ \
| | | |
| | | | |
service: Update service function tables
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information from SwitchBrew.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/svc: Implement svcMapProcessCodeMemory/svcUnmapProcessCodeMemory
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Essentially performs the inverse of svcMapProcessCodeMemory. This unmaps
the aliasing region first, then restores the general traits of the
aliased memory.
What this entails, is:
- Restoring Read/Write permissions to the VMA.
- Restoring its memory state to reflect it as a general heap memory region.
- Clearing the memory attributes on the region.
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
This is utilized for mapping code modules into memory. Notably, the
ldr service would call this in order to map objects into memory.
|
| |_|/
|/| |
| | |
| | |
| | | |
This is a holdover from Citra that currently remains unused, so it can
be removed from the Thread interface.
|
|\ \ \
| | | |
| | | | |
ldr: Minor amendments to IPC-related parameters
|
| | | |
| | | |
| | | |
| | | | |
This doesn't modify instance state, so it can be made const.
|
| | |/
| |/|
| | |
| | |
| | | |
The initial two words indicate a process ID. Also UnloadNro only
specifies one address, not two.
|
|\ \ \
| | | |
| | | | |
Add a toggle to force 30FPS mode
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
fsp_srv: Minor cleanup related changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
IDirectory's Read() function doesn't take any input parameters. It only
uses the output parameters that we already provide.
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
These indicate options that alter how a read/write is performed.
Currently we don't need to handle these, as the only one that seems to
be used is for writes, but all the custom options ever seem to do is
immediate flushing, which we already do by default.
|
|\ \ \ \
| |_|_|/
|/| | | |
Frontend: Migrate to QOpenGLWindow and support shared contexts
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
kernel/svc: Deglobalize the supervisor call handlers
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Adjusts the interface of the wrappers to take a system reference, which
allows accessing a system instance without using the global accessors.
This also allows getting rid of all global accessors within the
supervisor call handling code. While this does make the wrappers
themselves slightly more noisy, this will be further cleaned up in a
follow-up. This eliminates the global system accessors in the current
code while preserving the existing interface.
|
|\ \ \ \
| | | | |
| | | | | |
kernel: Make handle type declarations constexpr
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | | |
Some objects declare their handle type as const, while others declare it
as constexpr. This makes the const ones constexpr for consistency, and
prevent unexpected compilation errors if these happen to be attempted to be
used within a constexpr context.
|
|/ / /
| | |
| | |
| | | |
These are holdovers from Citra.
|
|\ \ \
| | | |
| | | | |
file_sys: Provide generic interface for accessing game data
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We need to ensure dynarmic gets a valid pointer if the page table is
resized (the relevant pointers would be invalidated in this scenario).
In this scenario, the page table can be resized depending on what kind
of address space is specified within the NPDM metadata (if it's
present).
|
|\ \ \
| | | |
| | | | |
core/memory: Minor simplifications to page table management
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Now that nothing actually touches the internal page table aside from the
memory subsystem itself, we can remove the accessor to it.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given the page table will always be guaranteed to be that of whatever
the current process is, we no longer need to keep this around.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Centralizes the page table switching to one spot, rather than making
calling code deal with it everywhere.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/{server_port, server_session}: Return pairs instead of tuples from pair creation functions
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Keeps the return type consistent with the function name. While we're at
it, we can also reduce the amount of boilerplate involved with handling
these by using structured bindings.
|
| |/ / /
| | | |
| | | |
| | | | |
Returns the same type that the function name describes.
|
|/ / /
| | |
| | |
| | | |
These are holdovers from Citra and can be removed.
|
|\ \ \
| | | |
| | | | |
kernel/server_session: Provide a GetName() override
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Given server sessions can be given a name, we should allow retrieving
it instead of using the default implementation of GetName(), which would
just return "[UNKNOWN KERNEL OBJECT]".
|
|\ \ \ \
| | | | |
| | | | | |
Port citra-emu/citra#4651: "gdbstub: Fix some bugs in IsMemoryBreak() and ServeBreak. Add workaround to let watchpoints break into GDB."
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gdbstub: fix IsMemoryBreak() returning false while connected to client
As a result, the only existing codepath for a memory watchpoint hit to break into GDB (InterpeterMainLoop, GDB_BP_CHECK, ARMul_State::RecordBreak) is finally taken,
which exposes incorrect logic* in both RecordBreak and ServeBreak.
* a blank BreakpointAddress structure is passed, which sets r15 (PC) to NULL
* gdbstub: DynCom: default-initialize two members/vars used in conditionals
* gdbstub: DynCom: don't record memory watchpoint hits via RecordBreak()
For now, instead check for GDBStub::IsMemoryBreak() in InterpreterMainLoop and ServeBreak.
Fixes PC being set to a stale/unhit breakpoint address (often zero) when a memory watchpoint (rwatch, watch, awatch) is handled in ServeBreak() and generates a GDB trap.
Reasons for removing a call to RecordBreak() for memory watchpoints:
* The``breakpoint_data`` we pass is typed Execute or None. It describes the predicted next code breakpoint hit relative to PC;
* GDBStub::IsMemoryBreak() returns true if a recent Read/Write operation hit a watchpoint. It doesn't specify which in return, nor does it trace it anywhere. Thus, the only data we could give RecordBreak() is a placeholder BreakpointAddress at offset NULL and type Access. I found the idea silly, compared to simply relying on GDBStub::IsMemoryBreak().
There is currently no measure in the code that remembers the addresses (and types) of any watchpoints that were hit by an instruction, in order to send them to GDB as "extended stop information."
I'm considering an implementation for this.
* gdbstub: Change an ASSERT to DEBUG_ASSERT
I have never seen the (Reg[15] == last_bkpt.address) assert fail in practice, even after several weeks of (locally) developping various branches around GDB. Only leave it inside Debug builds.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file_sys/fsmitm_romfsbuild: Utilize a string_view in romfs_calc_path_hash
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The given string instance doesn't need to be copied entirely, we can
just use a view instead.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
core: Add missing override specifiers where applicable
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Applies the override specifier where applicable. In the case of
destructors that are defaulted in their definition, they can
simply be removed.
This also removes the unnecessary inclusions being done in audin_u and
audrec_u, given their close proximity.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
file_sys/nca_metadata: Remove unnecessary comparison operators for TitleType
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
enum class elements from the same enum can already be compared against
one another without the need for explicitly defined comparison
operators.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/fsp_srv: Update SaveDataInfo and SaveDataDescriptor structs
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Passing around a 64 byte data struct by value is kind of wasteful,
instead pass a reference to the struct.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The unknown member here is actually padding due to being passed as a
struct. We can do the same, and remove the need to pop a padding word.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
I realized that I updated the documentation on SwitchBrew a while ago,
but never actually updated the structs within yuzu.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
file_sys/program_metadata: Remove obsolete TODOs
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
BitField has been trivially copyable since
e99a14862841841d74be8d0ea9426c2d23546b5e, so we can eliminate these
TODO comments and use ReadObject() directly instead of memcpying the
data.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/svc: Properly sanitize mutex address in WaitProcessWideKeyAtomic
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We need to be checking whether or not the given address is within the
kernel address space or if the given address isn't word-aligned and bail
in these scenarios instead of trashing any kernel state.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
hle/result: Remove unnecessary bitfield entry for ResultCode
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
This is a hold over from the 3DS error codes in Citra.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
filesystem: Use a std::string_view in OpenFile()
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Rather than make a full copy of the path, we can just use a string view
and truncate the viewed portion of the string instead of creating a totally
new truncated string.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
file_sys/control_metadata: Amend naming of members
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Quite a bit of these were out of sync with Switchbrew (and in some cases
entirely wrong). While we're at it, also expand the section of named
members. A segment within the control metadata is used to specify
maximum values for the user, device, and cache storage max sizes and
journal sizes.
These appear to be generally used by the am service (e.g. in
CreateCacheStorage, etc).
|
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In several places, we have request parsers where there's nothing to
really parse, simply because the HLE function in question operates on
buffers. In these cases we can just remove these instances altogether.
In the other cases, we can retrieve the relevant members from the parser
and at least log them out, giving them some use.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service/am: Correct behavior of CreateTransferMemoryStorage()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
For whatever reason, shared memory was being used here instead of
transfer memory, which (quite clearly) will not work based off the name
of the function.
This corrects this wonky usage of shared memory.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
Also amend erroneous use of size_t. We should be using u64 here.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Better LZ4 compression utilization for the disk based shader cache and the yuzu build system
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/object: Remove unused handle type entry
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The AddressArbiter type isn't actually used, given the arbiter itself
isn't a direct kernel object (or object that implements the wait object
facilities).
Given this, we can remove the enum entry entirely.
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
service/am: Implement EnterFatalSection/LeaveFatalSection
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These functions act in tandem similar to how a lock or mutex require a
balanced lock()/unlock() sequence.
EnterFatalSection simply increments a counter for how many times it has
been called, while LeaveFatalSection ensures that a previous call to
EnterFatalSection has occured. If a previous call has occurred (the
counter is not zero), then the counter gets decremented as one would
expect. If a previous call has not occurred (the counter is zero), then
an error code is returned.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Makes the declaration order of the handling functions consistent with
the handler table itself.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/shared_memory: Sanitize supplied size when unmapping
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Nothing from this header is used, so we can remove this include, getting
rid of a dependency on it.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The kernel makes sure that the given size to unmap is always the same
size as the entire region managed by the shared memory instance,
otherwise it returns an error code signifying an invalid size.
This is similarly done for transfer memory (which we already check for).
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
kernel/thread: Minor interface cleanup
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Now that ShouldWait() is a const qualified member function, this one can
be made const qualified as well, since it can handle passing a const
qualified this pointer to ShouldWait().
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given this is intended as a querying function, it doesn't make sense to
allow the implementer to modify the state of the given thread.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously this was performing a u64 + int sign conversion. When dealing
with addresses, we should generally be keeping the arithmetic in the
same signedness type.
This also gets rid of the static lifetime of the constant, as there's no
need to make a trivial type like this potentially live for the entire
duration of the program.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The pointed to member is never actually modified, so it can be made
const.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/svc: Implement svcGetProcessList and svcGetThreadList
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Similarly like svcGetProcessList, this retrieves the list of threads
from the current process. In the kernel itself, a process instance
maintains a list of threads, which are used within this function.
Threads are registered to a process' thread list at thread
initialization, and unregistered from the list upon thread destruction
(if said thread has a non-null owning process).
We assert on the debug event case, as we currently don't implement
kernel debug objects.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This service function simply copies out a specified number of kernel
process IDs, while simultaneously reporting the total number of
processes.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
kernel/resource_limit: Remove the name member from resource limits
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This doesn't really provide any benefit to the resource limit interface.
There's no way for callers to any of the service functions for resource
limits to provide a custom name, so all created instances of resource
limits other than the system resource limit would have a name of
"Unknown".
The system resource limit itself is already trivially identifiable from
its limit values, so there's no real need to take up space in the object to
identify one object meaningfully out of N total objects.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
kernel/codeset: Make CodeSet's memory data member a regular std::vector
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The use of a shared_ptr is an implementation detail of the VMManager
itself when mapping memory. Because of that, we shouldn't require all
users of the CodeSet to have to allocate the shared_ptr ahead of time.
It's intended that CodeSet simply pass in the required direct data, and
that the memory manager takes care of it from that point on.
This means we just do the shared pointer allocation in a single place,
when loading modules, as opposed to in each loader.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core/yuzu: Remove enable_nfc setting
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Since C++17, the introduction of deduction guides for locking facilities
means that we no longer need to hardcode the mutex type into the locks
themselves, making it easier to switch mutex types, should it ever be
necessary in the future.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/process: Report total physical memory used to svcGetInfo slightly better
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Reports the (mostly) correct size through svcGetInfo now for queries to
total used physical memory. This still doesn't correctly handle memory
allocated via svcMapPhysicalMemory, however, we don't currently handle
that case anyways.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This will be necessary to properly report the used memory size in
svcGetInfo.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This will be necessary in order to properly report memory usage within
svcGetInfo.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This will make operating with the process-related SVC commands much
nicer in the future (the parameter representing the stack size in
svcStartProcess is a 64-bit value).
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The kernel always makes sure that the given stack size is aligned to
page boundaries.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/scheduler: Minor tidying up
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This was made unused in b404fcdf1443b91ac9994c05ad1fe039fcd9675e, but
the parameter itself wasn't removed.
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Since C++17, we no longer need to explicitly specify the type of the
mutex within the lock_guard. The type system can now deduce these with
deduction guides.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Resolves a -Wextra-semi warning.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Based off RE, most of these structure members are register values, which
makes, sense given this service is used to convey fatal errors.
One member indicates the program entry point address, one is a set of
bit flags used to determine which registers to print, and one member
indicates the architecture type.
The only member that still isn't determined is the final member within
the data structure.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Kernel: Fixes to Arbitration and SignalProcessWideKey Management
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
Replace old Thread Queue for a new Multi Level Queue
|
| | | | | | | | |
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
kernel/vm_manager: Unify heap allocation/freeing functions
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
One behavior that we weren't handling properly in our heap allocation
process was the ability for the heap to be shrunk down in size if a
larger size was previously requested.
This adds the basic behavior to do so and also gets rid of HeapFree, as
it's no longer necessary now that we have allocations and deallocations
going through the same API function.
While we're at it, fully document the behavior that this function
performs.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Makes it more obvious that this function is intending to stand in for
the actual supervisor call itself, and not acting as a general heap
allocation function.
Also the following change will merge the freeing behavior of HeapFree
into this function, so leaving it as HeapAllocate would be misleading.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
In cases where HeapAllocate is called with the same size of the current
heap, we can simply do nothing and return successfully.
This avoids doing work where we otherwise don't have to. This is also
what the kernel itself does in this scenario.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Over time these have fallen out of use due to refactoring, so these can
be removed.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This isn't required anymore, as all the kernel ever queries is the size
of the current heap, not the total usage of it.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Another holdover from citra that can be tossed out is the notion of the
heap needing to be allocated in different addresses. On the switch, the
base address of the heap will always be managed by the memory allocator
in the kernel, so this doesn't need to be specified in the function's
interface itself.
The heap on the switch is always allocated with read/write permissions,
so we don't need to add specifying the memory permissions as part of the
heap allocation itself either.
This also corrects the error code returned from within the function.
If the size of the heap is larger than the entire heap region, then the
kernel will report an out of memory condition.
|
|\ \ \ \ \ \ \
| |_|_|_|/ / /
|/| | | | | | |
kernel/process: Remove unused AddressMapping struct
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Another leftover from citra that's now no longer necessary.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core/core_timing: Make callback parameters consistent
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
In some cases, our callbacks were using s64 as a parameter, and in other
cases, they were using an int, which is inconsistent.
To make all callbacks consistent, we can just use an s64 as the type for
late cycles, given it gets rid of the need to cast internally.
While we're at it, also resolve some signed/unsigned conversions that
were occurring related to the callback registration.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/kernel: Remove unnecessary forward declaration
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is no longer necessary, as ResultVal isn't used anywhere in the
header.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These don't need to be visible outside of the translation unit, so they
can be enclosed within an anonymous namespace.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
core/hle/kernel: Split transfer memory handling out into its own class
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Similarly, like svcMapTransferMemory, we can also implement
svcUnmapTransferMemory fairly trivially as well.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Now that transfer memory handling is separated from shared memory, we
can implement svcMapTransferMemory pretty trivially.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Within the kernel, shared memory and transfer memory facilities exist as
completely different kernel objects. They also have different validity
checking as well. Therefore, we shouldn't be treating the two as the
same kind of memory.
They also differ in terms of their behavioral aspect as well. Shared
memory is intended for sharing memory between processes, while transfer
memory is intended to be for transferring memory to other processes.
This breaks out the handling for transfer memory into its own class and
treats it as its own kernel object. This is also important when we
consider resource limits as well. Particularly because transfer memory
is limited by the resource limit value set for it.
While we currently don't handle resource limit testing against objects
yet (but we do allow setting them), this will make implementing that
behavior much easier in the future, as we don't need to distinguish
between shared memory and transfer memory allocations in the same place.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
set_sys: Implement GetFirmwareVersion(2) for libnx hosversion
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | | |
Uses the synthesized system archive 9 (SystemVersion) and reports v5.1.0-0.0
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
loader/nso: Minor refactoring
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Makes it impossible to indirectly violate the ODR in some other
translation unit due to these existing.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Now that the NSO header has the proper size, we can just use sizeof on
it instead of having magic constants.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This source file was utilizing its own version of the NSO header.
Instead of keeping this around, we can have the patch manager also use
the version of the header that we have defined in loader/nso.h
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The total struct itself is 0x100 (256) bytes in size, so we should be
providing that amount of data.
Without the data, this can result in omitted data from the final loaded
NSO file.
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
These correspond to the NSOBuildHeader.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
file_sys/cheat_engine: Remove use of global system accessors
|
| | | | | | | | |
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Instead, pass in the core timing instance and make the dependency
explicit in the interface.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
gpu: Rewrite MemoryManager based on the VMManager implementation.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- GPU will be released on shutdown, before pages are unmapped.
- On subsequent runs, current_page_table will be not nullptr, but GPU might not be valid yet.
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core/hle/kernel: Make Mutex a per-process class.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Removes the use of global system accessors, and instead uses the
explicit interface provided.
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Makes it an instantiable class like it is in the actual kernel. This
will also allow removing reliance on global accessors in a following
change, now that we can encapsulate a reference to the system instance
in the class.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core/memory: Remove unnecessary includes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
In 93da8e0abfcdcc6e3cb5488a0db12373429f1377, the page table construct
was moved to the common library (which utilized these inclusions). Since
the move, nothing requires these headers to be included within the
memory header.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/vm_manager: Amend flag value for code data
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Makes it more evident that one is for actual code and one is for actual
data. Mutable and static are less than ideal terms here, because
read-only data is technically not mutable, but we were mapping it with
that label.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This should actually be using the data flags, rather than the code
flags.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
service/am: Add function table for IDebugFunctions
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We already have the service related stuff set up for this, however, it's
missing the function table.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
file_sys: Implement parser and interpreter for game memory cheats
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
For rom directories (and by extension, XCI/NSP/NAX/NCA) this is for the NSO with name 'main', for regular NSOs, this is the NSO.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Used as root for one region of cheats, set by loader
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Uses load/<title_id>/<mod_name>/cheats as root dir, file name is all upper or lower hex first 8 bytes build ID.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allows frontend/features to access pressed buttons conveniently as possible
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Port citra-emu/citra#4244 and citra-emu/citra#4599: Changes to BitField
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This commit it automatically generated by command in zsh:
sed -i -- 's/BitField<\(.*\)_le>/BitField<\1>/g' **/*(D.)
BitField is now aware to endianness and default to little endian. It expects a value representation type without storage specification for its template parameter.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
file_sys/content_archive: Amend name of Data_Unknown5 enum entry
|
| | |_|_|_|_|_|/ /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
While we're at it, give each entry some documentation.
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / /
|/| | | | | | | | |
core/kernel: Migrate CodeSet to its own source files
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The segment itself isn't actually modified.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Given this is utilized by the loaders, this allows avoiding inclusion of
the kernel process definitions where avoidable.
This also keeps the loading format for all executable data separate from
the kernel objects.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Fix crash caused by #2238.
|
| | |/ / / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
hwopus: Leverage multistream API for decoding regular Opus packets
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
After doing a little more reading up on the Opus codec, it turns out
that the multistream API that is part of libopus can handle regular
packets. Regular packets are just a degenerate case of multistream Opus
packets, and all that's necessary is to pass the number of streams as 1
and provide a basic channel mapping, then everything works fine for
that case.
This allows us to get rid of the need to use both APIs in the future
when implementing multistream variants in a follow-up PR, greatly
simplifying the code that needs to be written.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Given the class is now currently unused, it can be removed.
|
| |/ / / / / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Neither the NRO or NSO loaders actually make use of the functions or
members provided by the Linker interface, so we can just remove the
inheritance altogether.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
service/am: Supply remaining missing IAudioController functions
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
All this does is supply a new volume level and a fade time in
nanoseconds for the volume transition to occur within.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Like the other volume setter, this mainly just sets a data member within
the service, nothing too special.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This function passes in the desired main applet and library applet
volume levels. We can then just pass those values back within the
relevant volume getter functions, allowing us to unstub those as well.
The initial values for the library and main applet volumes differ. The
main applet volume is 0.25 by default, while the library applet volume
is initialized to 1.0 by default in the services themselves.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This just acts as a basic setter for a given PID value and performs no
further checking, so we can just store the passed in value.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
kernel/thread: Amend conditional test and assignment within UpdatePriority()
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Aims to disambiguate why each priority instance exists a little bit.
While we're at it, also add an explanatory comment to UpdatePriority().
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This condition was checking against the nominal thread priority, whereas
the kernel itself checks against the current priority instead. We were
also assigning the nominal priority, when we should be assigning
current_priority, which takes priority inheritance into account.
This can lead to the incorrect priority being assigned to a thread.
Given we recursively update the relevant threads, we don't need to go
through the whole mutex waiter list. This matches what the kernel does
as well (only accessing the first entry within the waiting list).
|
| | |_|_|_|_|/ /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The kernel keeps the internal waiting list ordered by priority. This is
trivial to do with std::find_if followed by an insertion.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
core: Move PageTable struct into Common.
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
ipc_helpers: Allow pushing and popping floating-point values
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Certain values that are passed through the IPC buffer are actually
floating point values, not solely integral values.
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
kernel/thread: Actually remove the definition of ExitCurrentThread()
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This was intended to be removed in
51d7f6bffcc0498a47abc7de27bf0906fc523dae, but I guess I forgot to
actually save the file like a dingus.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
memory: Simplify rasterizer cache operations.
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
Correct CNTPCT from using CPU Cycles to using Clock Cycles
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
kernel/thread: Remove WaitCurrentThread_Sleep() and ExitCurrentThread()
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Puts the operation on global state in the same places as the rest of the
svc calls.
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Rather than make a global accessor for this sort of thing. We can make
it a part of the thread interface itself. This allows getting rid of a
hidden global accessor in the kernel code.
|
| |_|_|_|_|/ / /
|/| | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/process: Remove use of global system accessors
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Now that we pass in a reference to the system instance, we can utilize
it to eliminate the global accessors in Process-related code.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/server_port: Make data members private
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
With this, all kernel objects finally have all of their data members
behind an interface, making it nicer to reason about interactions with
other code (as external code no longer has the freedom to totally alter
internals and potentially messing up invariants).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
core/hle/result: Tidy up the base error code result header.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Previously this was required, as BitField wasn't trivially copyable.
BitField has since been made trivially copyable, so now this isn't
required anymore.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Gets rid of another holdover from Citra, and describes the OS on the
Switch instead.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Now that the final stray ErrorDescription member was relocated, we can
finally remove it and its relevant constructor in the ResultCode union.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Relocates the error code to where it's most related, similar to how all
the other error codes are. Previously we were including a non-generic
error in the main result code header.
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
service/vi: Unstub GetDisplayService
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This function is also supposed to check its given policy type with the
permission of the service itself. This implements the necessary
machinery to unstub these functions.
Policy::User seems to just be basic access (which is probably why vi:u
is restricted to that policy), while the other policy seems to be for
extended abilities regarding which displays can be managed and queried,
so this is assumed to be for a background compositor (which I've named,
appropriately, Policy::Compositor).
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
There's no real reason this shouldn't be allowed, given some values sent
via a request can be signed. This also makes it less annoying to work
with popping enum values, given an enum class with no type specifier
will work out of the box now.
It's also kind of an oversight to allow popping s64 values, but nothing
else.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This didn't really provide much benefit here, especially since the
subsequent change requires that the behavior for each service's
GetDisplayService differs in a minor detail.
This also arguably makes the services nicer to read, since it gets rid
of an indirection in the class hierarchy.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel: Make the address arbiter instance per-process
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Now that we have the address arbiter extracted to its own class, we can
fix an innaccuracy with the kernel. Said inaccuracy being that there
isn't only one address arbiter. Each process instance contains its own
AddressArbiter instance in the actual kernel.
This fixes that and gets rid of another long-standing issue that could
arise when attempting to create more than one process.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Similar to how WaitForAddress was isolated to its own function, we can
also move the necessary conditional checking into the address arbiter
class itself, allowing us to hide the implementation details of it from
public use.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Rather than let the service call itself work out which function is the
proper one to call, we can make that a behavior of the arbiter itself,
so we don't need to directly expose those implementation details.
|
| |_|/ / / / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These can just be passed regularly, now that we use fmt instead of our
old logging system.
While we're at it, make the parameters to MakeFunctionString
std::string_views.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
service/audio/hwopus: Move decoder state to its own class
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Moves the non-multistream specific state to its own class. This will be
necessary to support the multistream variants of opus decoding.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This indicates the entropy coder's final range.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This will be utilized by more than just that class in the future. This
also renames it from OpusHeader to OpusPacketHeader to be more specific
about what kind of header it is.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Makes it impossible to violate the ODR, as well as providing a place for
future changes.
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|_|_|/ /
|/| | | | | | | | |
kernel/scheduler: Pass in system instance in constructor
|
| | |_|_|_|_|/ /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids directly relying on the global system instance and instead makes
an arbitrary system instance an explicit dependency on construction.
This also allows removing dependencies on some global accessor functions
as well.
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/hle_ipc: Convert std::shared_ptr IPC header instances to std::optional
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
There's no real need to use a shared lifetime here, since we don't
actually expose them to anything else. This is also kind of an
unnecessary use of the heap given the objects themselves are so small;
small enough, in fact that changing over to optionals actually reduces
the overall size of the HLERequestContext struct (818 bytes to 808
bytes).
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
kernel/shared_memory: Get rid of the use of global accessor functions within Create()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given we already pass in a reference to the kernel that the shared
memory instance is created under, we can just use that to check the
current process, rather than using the global accessor functions.
This allows removing direct dependency on the system instance entirely.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/client_session, kernel/server_session: Make data members private
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Makes it much nicer to locally reason about server session behavior, as
part of its functionality isn't placed around other classes.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These can be made private, as they aren't accessed in contexts that
require them to be public.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
service/audio/audout_u: Only actually stop the audio stream in StopAudioOut if the stream is playing
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The service itself only does further actions if the stream is playing.
If the stream is already stopped, then it just exits successfully.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Asynchronous GPU command processing
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
core/hle/ipc: Remove unnecessary includes
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Removes a few inclusion dependencies from the headers or replaces
existing ones with ones that don't indirectly include the required
headers.
This allows removing an inclusion of core/memory.h, meaning that if the
memory header is ever changed in the future, it won't result in
rebuilding the entirety of the HLE services (as the IPC headers are used
quite ubiquitously throughout the HLE service implementations).
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
core: Remove the global telemetry accessor function
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
With all usages converted off of it, this function can be removed.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The telemetry instance is actually a member of the class itself, so we
can access it directly instead of going through the global accessor.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/address_arbiter: Convert the address arbiter into a class
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allows getting rid of reliance on the global accessor functions and
instead operating on the provided system instance.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Invert conditions into guard clases where applicable.
- Mark std::vector parameter of WakeThreads as const
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Places all of the functions for address arbiter operation into a class.
This will be necessary for future deglobalizing efforts related to both
the memory and system itself.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously we were overwriting the error case with a success code
further down (which is definitely not what we should be doing here).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
svc: Move memory range checking functions to the VMManager class
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Significantly tidies up two guard conditionals.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Makes the interface uniform when it comes to checking various memory
regions.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Provides a bit of a more proper interface for these functions.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
hle/service/audio: Extract audio error codes to a header
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Places all error codes in an easily includable header.
This also corrects the unsupported error code (I accidentally used the
hex value when I meant to use the decimal one).
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
This is a TODO carried over from Citra that doesn't apply here.
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
The comment already invalidates itself: neither MMIO nor rasterizer cache belongsHLE kernel state. This mutex has a too large scope if MMIO or cache is included, which is prone to dead lock when multiple thread acquires these resource at the same time. If necessary, each MMIO component or rasterizer should have their own lock.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service/audio: Provide an implementation of ExecuteAudioRendererRendering
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This service function appears to do nothing noteworthy on the switch.
All it does at the moment is either return an error code or abort the
system. Given we obviously don't want to kill the system, we just opt
for always returning the error code.
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This currently has the same behavior as the regular
OpenAudioRenderer API function, so we can just move the code within
OpenAudioRenderer to an internal function that both service functions
call.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service/hid: Amend forward declaration of ServiceManager
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The SM namespace is within the Service namespace, so this was forward
declaring a type that didn't exist.
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
- Memory::MapPages total samplecount was reduced from 4.6% to 1.06%.
- From main menu into the game from 1.03% to 0.35%
|
|\ \ \ \ \
| | | | | |
| | | | | | |
audio_core/audio_renderer: Provide names for some parameters of AudioRendererParameter
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Provides names for previously unknown entries (aside from the two u8
that appear to be padding bytes, and a single word that also appears
to be reserved or padding).
This will be useful in subsequent changes when unstubbing behavior related
to the audio renderer services.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
core/frontend/emu_window: Make ClipToTouchScreen a const member function
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This member function doesn't modify instance state, so it can have the
const specifier applied to it.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/handle_table: Allow process capabilities to limit the handle table size
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Makes immutable state explicit.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The kernel allows restricting the total size of the handle table through
the process capability descriptors. Until now, this functionality wasn't
hooked up. With this, the process handle tables become properly restricted.
In the case of metadata-less executables, the handle table will assume
the maximum size is requested, preserving the behavior that existed
before these changes.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Directly initializes members where applicable.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids implicit truncation warnings from u32 -> u16 (the truncation is
desirable behavior here).
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These types are within the common library, so they should be within the
Common namespace.
|
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | | |
These types are within the common library, so they should be using the
Common namespace.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file_sys/vfs_vector: Fix ignored offset on Write
|
| | | | | | |
|
| |/ / / /
|/| | | |
| | | | |
| | | | | |
Amends it to add the 7.0.0+ CreateStrayLayer function.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The NVFlinger service is already passed into services that need to
guarantee its lifetime, so the BufferQueue instances will already live
as long as they're needed. Making them std::shared_ptr instances in this
case is unnecessary.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Like the previous changes made to the Display struct, this prepares the
Layer struct for changes to its interface. Given Layer will be given
more invariants in the future, we convert it into a class to better
signify that.
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
With the display and layer structures relocated to the vi service, we
can begin giving these a proper interface before beginning to properly
support the display types.
This converts the display struct into a class and provides it with the
necessary functions to preserve behavior within the NVFlinger class.
|
|\ \ \ \
| | | | |
| | | | | |
video_core: Remove usages of System::GetInstance() within the engines
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Avoids the use of the global accessor in favor of explicitly making the
system a dependency within the interface.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Fixes Unicode Key File Directories
Adds code so that when loading a file it converts to UTF16 first, to
ensure the files can be opened. Code borrowed from FileUtil::Exists.
* Update src/core/crypto/key_manager.cpp
Co-Authored-By: Jungorend <Jungorend@users.noreply.github.com>
* Update src/core/crypto/key_manager.cpp
Co-Authored-By: Jungorend <Jungorend@users.noreply.github.com>
* Using FileUtil instead to be cleaner.
* Update src/core/crypto/key_manager.cpp
Co-Authored-By: Jungorend <Jungorend@users.noreply.github.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
These are more closely related to the vi service as opposed to the
intermediary nvflinger.
This also places them in their relevant subfolder, as future changes to
these will likely result in subclassing to represent various displays
and services, as they're done within the service itself on hardware.
The reasoning for prefixing the display and layer source files is to
avoid potential clashing if two files with the same name are compiled
(e.g. if 'display.cpp/.h' or 'layer.cpp/.h' is added to another service
at any point), which MSVC will actually warn against. This prevents that
case from occurring.
This also presently coverts the std::array introduced within
f45c25aabacc70861723a7ca1096a677bd987487 back to a std::vector to allow
the forward declaration of the Display type. Forward declaring a type
within a std::vector is allowed since the introduction of N4510
(http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4510.html) by
Zhihao Yuan.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
A fairly trivial change. Other sections of the codebase use nested
namespaces instead of separate namespaces here. This one must have just
been overlooked.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Gets rid of the largest set of mutable global state within the core.
This also paves a way for eliminating usages of GetInstance() on the
System class as a follow-up.
Note that no behavioral changes have been made, and this simply extracts
the functionality into a class. This also has the benefit of making
dependencies on the core timing functionality explicit within the
relevant interfaces.
|
|\ \ \
| | | |
| | | | |
core_timing: Make EmptyTimedCallback a local variable
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given this is only used in one place, it can be moved closest to its
usage site.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
The necessity of this parameter is dubious at best, and in 2019 probably
offers completely negligible savings as opposed to just leaving this
enabled. This removes it and simplifies the overall interface.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Places all of the timing-related functionality under the existing Core
namespace to keep things consistent, rather than having the timing
utilities sitting in its own completely separate namespace.
|
| | |
| | |
| | |
| | |
| | | |
This is a leftover from the early yuzu days.
We shouldn't log every time when we are drawing by default, so let's change the log level to Trace.
|
|\ \ \
| | | |
| | | | |
Port citra-emu/citra#4603: "gdbstub: only let Execute breakpoints write/restore BKPT opcodes into target memory"
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Converts many of the Find* functions to return a std::optional<T> as
opposed to returning the raw return values directly. This allows
removing a few assertions and handles error cases like the service
itself does.
|
| | |
| | |
| | |
| | |
| | | |
This member function doesn't actually modify instance state, so it can
be marked as a const member function.
|
|/ /
| |
| |
| |
| | |
This was missed within #2075. Renames the member function to make it
consistent with the rest of the Find* functions.
|
|\ \
| | |
| | | |
hwopus: Implement DecodeInterleaved (the newest variant)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This functions almost identically to DecodeInterleavedWithPerfOld,
however this function also has the ability to reset the decoder context.
This is documented as a potentially desirable thing in the libopus
manual in some circumstances as it says for the OPUS_RESET_STATE ctl:
"This should be called when switching streams in order to prevent the
back to back decoding from giving different result from one at a time
decoding."
|
| | |
| | |
| | |
| | | |
Keeps the logic in one spot for use by both functions.
|
| | |
| | |
| | |
| | |
| | | |
This doesn't really offer anything over the use of a direct pointer, so
we can just use that instead.
|
| | |
| | |
| | |
| | | |
Makes non-mutable state more explicit.
|
| | |
| | |
| | |
| | | |
Filled in via information provided by SwitchBrew.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
A holdover from citra, the Horizon kernel on the switch has no
prominent kernel object that functions as a timer. At least not
to the degree of sophistication that this class provided.
As such, this can be removed entirely. This class also wasn't used at
all in any meaningful way within the core, so this was just code sitting
around doing nothing. This also allows removing a few things from the
main KernelCore class that allows it to use slightly less resources
overall (though very minor and not anything really noticeable).
|
|\ \ \
| | | |
| | | | |
service: Update function tables
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew.
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew.
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew.
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew
|
| | | |
| | | |
| | | |
| | | | |
Updates function tables based off information provided by SwitchBrew.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Updates the function tables based off information on SwitchBrew. Gets
rid of a swath of unknown names.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/wait_object: Devirtualize functions related to manipulating the thread list directly
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
No inheritors of the WaitObject class actually make use of their own
implementations of these functions, so they can be made non-virtual.
It's also kind of sketchy to allow overriding how the threads get added
to the list anyways, given the kernel itself on the actual hardware
doesn't seem to customize based off this.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This implementation just calls the base class variant of the function,
so this isn't necessary.
|
| | |/ /
| |/| |
| | | |
| | | | |
This just calls the base variant of the function, so it can be removed.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This member function doesn't actually modify instance state, so it can
be const-qualified.
|
|/ / /
| | |
| | |
| | |
| | | |
This more accurately describes what the function is actually attempting
to do (it's not a simple trivial getter).
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In addition to the default, external, EDID, and internal displays,
there's also a null display provided as well, which as the name
suggests, does nothing but discard all commands given to it. This is
provided for completeness.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Opening a display isn't really a thing to warn about. It's an expected
thing, so this can be a debug log. This also alters the string to
indicate the display name better.
Opening "Default" display reads a little nicer compared to Opening
display Default.
|
| | | |
|
| | |
| | |
| | |
| | | |
Makes non-mutable state more explicit.
|
|/ /
| |
| |
| |
| | |
The built-in set of displays is fixed, so we can utilize an array
instead of a vector here.
|
| | |
|
| |
| |
| |
| |
| | |
This is kind of a large hole in the API, given we allow popping signed
values. This fixes that.
|
| |
| |
| |
| |
| |
| |
| | |
This quite literally functions as a basic setter. No other error
checking or anything (since there's nothing to really check against).
With this, it completes the pm:bm interface in terms of functionality.
|
| |
| |
| |
| | |
Just minor tidying of interfaces.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This appears to be a vestigial API function that's only kept around for
compatibility's sake, given the function only returns a success error
code and exits.
Since that's the case, we can remove the stubbed notification from the
log, since doing nothing is technically the correct behavior in this
case.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Looking into the implementation of the C++ standard facilities that seem
to be within all modules, it appears that they use 7 as a break reason
to indicate an uncaught C++ exception.
This was primarily found via the third last function called within
Horizon's equivalent of libcxxabi's demangling_terminate_handler(),
which passes the value 0x80000007 to svcBreak.
|
|\ \
| | |
| | | |
frontend: Refactor ScopeAcquireWindowContext out of renderer_opengl.
|
| |/ |
|
|/ |
|
|\
| |
| | |
loader: Add getters for application banner and logo
|
| | |
|
| | |
|
|\ \
| | |
| | | |
yuzu/web_browser: Minor cleanup
|
| | |
| | |
| | |
| | | |
Gets rid of a few indirect inclusions.
|
| |/
| |
| |
| |
| |
| |
| |
| | |
This is a function that definitely doesn't always have a non-modifying
behavior across all implementations, so this should be made non-const.
This gets rid of the need to mark data members as mutable to work around
the fact mutating data members needs to occur.
|
|/
|
|
| |
This isn't used at all, so we can just get rid of it.
|
|\
| |
| | |
settings: Add support for setting the RTC manually
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| | |
Stored as signed seconds since epoch.
|
|\ \
| |/
|/| |
applets: Implement HLE web browser applet (LibAppletOff)
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Needed for manual RomFS extraction, as Full generates an extra directory and Truncated generates variable results.
|
| | |
|
|\ \
| | |
| | | |
service/vi: Unstub IApplicationDisplayService's SetLayerScalingMode
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These values are not equivalent, based off RE. The internal value is put
into a lookup table with the following values:
[3, 0, 1, 2, 4]
So the values absolutely do not map 1:1 like the comment was indicating.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids entangling the IPC buffer appending with the actual operation of
converting the scaling values over. This also inserts the proper error
handling for invalid scaling values.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This appears to only check if the scaling mode can actually be
handled, rather than actually setting the scaling mode for the layer.
This implements the same error handling performed on the passed in
values.
|
|\ \ \
| | | |
| | | | |
service/vi: Correct reported dimensions from IApplicationDisplayService's GetDisplayResolution()
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Within the actual service, it makes no distinguishing between docked and
undocked modes. This will always return the constants values reporting
1280x720 as the dimensions.
|
|\ \ \
| | | |
| | | | |
Return no application area when games try to open an application area
|
| | | |
| | | |
| | | |
| | | | |
This will prompt CreateApplicationArea
|
|\ \ \ \
| |_|/ /
|/| | | |
Proper no message handling for AM::PopMessage
|
| |/ /
| | |
| | |
| | | |
When we have no messages, we should be returning an error code.
|
| | |
| | |
| | |
| | | |
Pulse is considered a hack and nothing should be using it. We should completely remove it
|
|\ \ \
| | | |
| | | | |
service/vi: Minor updates and corrections to the DisplayInfo struct
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Based off RE, it appears that almost all display types seem to use
1920x1080 except for a few (null display, edid display).
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
It appears that the two members indicate whether a display has a bounded
number of layers (and if set, the second member indicates the total
number of layers).
|
| |/ /
|/| |
| | |
| | | |
Upon investigating the issue with #1878, I found that games are the ones who handle the vsync event resetting and not us.
|
|\ \ \
| | | |
| | | | |
service/vi: Implement OpenDefaultDisplay in terms of OpenDisplay
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Internally within the vi services, this is essentially all that
OpenDefaultDisplay does, so it's trivial to just do the same, and
forward the default display string into the function.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This IPC command is simply a stub inside the actual service itself, and
just returns a successful error code regardless of input. This is likely
only retained in the service interface to not break older code that relied
upon it succeeding in some way.
|
|\ \ \
| | | |
| | | | |
service/vi: Log more information where applicable
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
In many cases, we didn't bother to log out any of the popped data
members. This logs them out to the console within the logging call to
provide more contextual information.
|
|/ /
| |
| |
| | |
Gets rid of a few unnecessary header dependencies in some source files.
|
|\ \
| | |
| | | |
arm_interface: Minor cleanup
|
| | |
| | |
| | |
| | | |
Makes it consistent with the rest of the includes.
|
| | |
| | |
| | |
| | | |
This function doesn't modify instance state, so it can be made const.
|
| | |
| | |
| | |
| | |
| | | |
Two of these variables have fixed values, so we can make that
immediately obvious from the get-go.
|
| | |
| | |
| | |
| | |
| | | |
Namespaces don't require the use of a semicolon. Silences a -Wextra-semi
warning.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is a bounds check to ensure that the thread priority is within the
valid range of 0-64. If it exceeds 64, that doesn't necessarily mean
that an actual priority of 64 was expected (it actually means whoever
called the function screwed up their math).
Instead clarify the message to indicate the allowed range of thread
priorities.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Now that we handle the kernel capability descriptors we can correct
CreateThread to properly check against the core and priority masks
like the actual kernel does.
|
| | |
| | |
| | |
| | | |
Makes them consistent with their kernel capability counterparts.
|
|/ /
| |
| |
| |
| | |
Rather than use a switch here, this can be collapsed into a simple range
check, which is a little easier on the eyes.
|
|\ \
| | |
| | | |
kernel/process: Start the main thread using the specified ideal core
|
| | |
| | |
| | |
| | |
| | | |
This matches kernel behavior in that processes are started using their
specified ideal core, rather than always starting on core 0.
|
| | |
| | |
| | |
| | |
| | |
| | | |
This makes the naming more closely match its meaning. It's just a
preferred core, not a required default core. This also makes the usages
of this term consistent across the thread and process implementations.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This function isn't a general purpose function that should be exposed to
everything, given it's specific to initializing the main thread for a
Process instance.
Given that, it's a tad bit more sensible to place this within
process.cpp, which keeps it visible only to the code that actually needs
it.
|
|\ \ \
| | | |
| | | | |
Print backtrace on svcBreak
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Added to both dynarmic and unicorn
|
| | | |
| | | |
| | | |
| | | | |
When we get an svcBreak we get a backtrace now
|
| | | |
| | | |
| | | |
| | | | |
Moves some variables closer to their actual usage sites.
|
| |_|/
|/| | |
|
|\ \ \
| | | |
| | | | |
file_sys/program_metadata: Print out more descriptive address space descriptions
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | | |
Provides extra information that makes it easier to tell if an executable
being run is using a 36-bit address space or a 39-bit address space.
While we don't support AArch32 executables yet, this also puts in
distinguishing information for the 32-bit address space types as well.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In all cases that these functions are needed, the VMManager can just be
retrieved and used instead of providing the same functions in Process'
interface.
This also makes it a little nicer dependency-wise, since it gets rid of
cases where the VMManager interface was being used, and then switched
over to using the interface for a Process instance. Instead, it makes
all accesses uniform and uses the VMManager instance for all necessary
tasks.
All the basic memory mapping functions did was forward to the Process'
VMManager instance anyways.
|
|\ \
| | |
| | | |
kernel: Handle kernel capability descriptors
|
| | |
| | |
| | |
| | |
| | | |
While we're at it, we can also toss out the leftover capability parsing
from Citra.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This just specifies the handle table size. There's also a section of
reserved bits that are checked against.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Similar to the service capability flags, however, we currently don't
emulate the GIC, so this currently handles all interrupts as being valid
for the time being.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Handles the priority mask and core mask flags to allow building up the
masks to determine the usable thread priorities and cores for a kernel
process instance.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We've had the old kernel capability parser from Citra, however, this is
unused code and doesn't actually map to how the kernel on the Switch
does it. This introduces the basic functional skeleton for parsing
process capabilities.
|
|\ \ \
| | | |
| | | | |
hid: Fix SetNpadJoyHoldType and improve logging.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
npad: Remove code to invert input in horizontal mode.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- This was incorrect, the game appears to handle this for us.
- Fixes horizontal mode with Puyo Puyo Tetris and Super Mario Odyssey.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel/vm_manager: Reset region attributes when unmapping a VMA
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Like the other members related to memory regions, the attributes need to
be reset back to their defaults as well.
|
| | | | | |
| | | | | |
| | | | | | |
These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
This stores a file in the save directory called '.yuzu_save_size' which stores the two save sizes (normal area and journaled area) sequentially as u64s.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | | |
Serves no actual purpose in this instance besides making NACP's copy assignment deleted, which is not intended behavior.
|
|/ / / / /
| | | | |
| | | | | |
Allows these functions to compile when T is not u8.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
svc: Implement SetThreadActivity (thread suspension)
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality"
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allows capturing screenshot at the current internal resolution (native for software renderer), but a setting is available to capture it in other resolutions. The screenshot is saved to a single PNG in the current layout.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
am: Implement HLE profile selector applet
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fixes bugs relating to signalling in software keyboard.
|
| | | | | | |
| | | | | | |
| | | | | | | |
Presents profiles in a list, similar to switch.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | | |
Allows the player to select an emulated profile.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | | |
Responsible for selecting a profile and firing callback upon completion.
|
| | | | | | |
| | | | | | |
| | | | | | | |
Previously, ILibraryAppletAccessor would signal upon creation of any applet, but this is incorrect. A flag inside of the applet code determines whether or not creation should signal state change and swkbd happens to be one of these applets.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fixed uninitialized memory due to missing returns in canary
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/{process, thread}: Amend behavior related to IDs
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
If a thread handle is passed to svcGetProcessId, the kernel attempts to
access the process ID via the thread's instance's owning process.
Technically, this function should also be handling the kernel debug
objects as well, however we currently don't handle those kernel objects
yet, so I've left a note via a comment about it to remind myself when
implementing it in the future.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Starts the process ID counter off at 81, which is what the kernel itself
checks against internally when creating processes. It's actually
supposed to panic if the PID is less than 81 for a userland process.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The service call uses a 64-bit value, just like svcGetProcessId. This
amends the function signature accordingly.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The kernel uses a 64-bit value for the thread ID, so we shouldn't be
using a 32-bit value.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
svcGetProcessId's out parameter is a pointer to a 64-bit value, not a
32-bit one.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
In the actual kernel, this is a 64-bit value, so we shouldn't be using a
32-bit type to handle it.
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|_|/ / /
|/| | | | | | | | |
service/am: Unstub GetAppletResourceUserId
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is supposed to return the current process' ID. (0 indicates an
invalid ID for both process IDs and ARU IDs).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Device handle should not be a random id, instead it's the current npad id
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Found during hardware testing
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|_|/ /
|/| | | | | | | |
service/sm: Improve debug log for RegisterService
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Now it also indicates the name and max session count. This also gives a
name to the unknown bool. This indicates if the created port is supposed
to be using light handles or regular handles internally. This is passed
to the respective svcCreatePort parameter internally.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
kernel/svc: Implement svcSetMemoryAttribute
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
With all the basic backing functionality implemented, we can now unstub
svcSetMemoryAttribute.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This puts the backing functionality for svcSetMemoryAttribute in place,
which will be utilized in a following change.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is shorter and more concise. This also removes the now-innaccurate
comment, as it's not returned wholesale to svcQueryMemory anymore.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Adds the barebones enumeration constants and functions in place to
handle memory attributes, while also essentially leaving the attribute
itself non-functional.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/thread: Set default fpcr
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
arm_dynarmic: Set CNTFRQ value
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
applets: Correct usage of SignalStateChanged event
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | | |
This was causing some games (most notably Pokemon Quest) to softlock due to an event being fired when not supposed to. This also removes a hack wherein we were firing the state changed event when the game retrieves it, which is incorrect.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
nvhost_gpu: Skip empty GPU command lists.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
Fix Service object leak on emulation stop
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Services created with the ServiceFramework base class install themselves as HleHandlers with an owning shared_ptr in the ServerPort ServiceFrameworkBase::port member variable, creating a cyclic ownership between ServiceFrameworkBase and the ServerPort, preventing deletion of the service objects.
Fix that by removing the ServiceFrameworkBase::port member because that was only used to detect multiple attempts at installing a port. Instead store a flag if the port was already installed to achieve the same functionality.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
svc: Implement yield types 0 and -1
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | | |
This will automatically occur anyway when PrepareReschedule is called
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
vm_manager/svc: Modify MemoryState enum, and correct error handling for svcQueryMemory
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
svcQueryProcessMemory is trivial to implement, given all the behavior
necessary for it is present, it just needs a handler for it.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
In the previous change, the memory writing was moved into the service
function itself, however it still had a problem, in that the entire
MemoryInfo structure wasn't being written out, only the first 32 bytes
of it were being written out. We still need to write out the trailing
two reference count members and zero out the padding bits.
Not doing this can result in wrong behavior in userland code in the following
scenario:
MemoryInfo info; // Put on the stack, not quaranteed to be zeroed out.
svcQueryMemory(&info, ...);
if (info.device_refcount == ...) // Whoops, uninitialized read.
This can also cause the wrong thing to happen if the user code uses
std::memcmp to compare the struct, with another one (questionable, but
allowed), as the padding bits are not guaranteed to be a deterministic
value. Note that the kernel itself also fully zeroes out the structure
before writing it out including the padding bits.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Moves the memory writes directly into QueryProcessMemory instead of
letting the wrapper function do it. It would be inaccurate to allow the
handler to do it because there's cases where memory shouldn't even be
written to. For example, if the given process handle is invalid.
HOWEVER, if the memory writing is within the wrapper, then we have no
control over if these memory writes occur, meaning in an error case, 68
bytes of memory randomly get trashed with zeroes, 64 of those being
written to wherever the memory info address points to, and the remaining
4 being written wherever the page info address points to.
One solution in this case would be to just conditionally check within
the handler itself, but this is kind of smelly, given the handler
shouldn't be performing conditional behavior itself, it's a behavior of
the managed function. In other words, if you remove the handler from the
equation entirely, does the function still retain its proper behavior?
In this case, no.
Now, we don't potentially trash memory from this function if an invalid
query is performed.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These should be swapped.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The kernel returns a memory info instance with the base address set to
the end of the address space, and the size of said block as
0 - address_space_end, it doesn't set both of said members to zero.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Gets rid of the need to directly access the managed VMAs outside of the
memory manager itself just for querying memory.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Gets the two structures out of an unrelated header and places them with
the rest of the memory management code.
This also corrects the structures. PageInfo appears to only contain a
32-bit flags member, and the extra padding word in MemoryInfo isn't
necessary.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Amends the MemoryState enum to use the same values like the actual
kernel does. Also provides the necessary operators to operate on them.
This will be necessary in the future for implementing
svcSetMemoryAttribute, as memory block state is checked before applying
the attribute.
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
svc_wrap: Correct register index for a wrapper specialization
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This would result in svcSetMemoryAttribute getting the wrong value for
its third parameter. This is currently fine, given the service function
is stubbed, however this will be unstubbed in a future change, so this
needs to change.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The Process object kept itself alive indefinitely because its handle_table
contains a SharedMemory object which owns a reference to the same Process object,
creating a circular ownership scenario.
Break that up by storing only a non-owning pointer in the SharedMemory object.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
fsp_srv: Implement IStorage::GetSize
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Takes no input and returns the size as a u64. Needed by Katamari Damacy Reroll to boot.
|
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
fmt::format() returns a std::string instance by value, so calling
.c_str() on it here is equivalent to doing:
auto* ptr = std::string{}.c_str();
The data being pointed to isn't guaranteed to actually be valid anymore
after that expression ends. Instead, we can just take the string as is,
and provide the necessary formatting parameters.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
file_sys/directory: Amend path buffer size for directory entries
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
The path buffer is actually 0x301 (769) characters in length, with the
extra character being intended for the null-terminator.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
patch_manager: Add support for disabling patches
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | |_|_|/ /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port citra-emu/citra#4476: "web_service: move telemetry condition from TelemetrySession constructor to destructor"
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fixes an issue where Testcases couldn't be sent when Telemetry was disabled, because both things are tied closely together in the backend.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/fsp_srv: Correct returned value in GetGlobalAccessLogMode()
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Based off RE, the backing code only ever seems to use 0-2 as the range
of values 1 being a generic log enable, with 2 indicating logging should
go to the SD card. These are used as a set of flags internally.
Given we only care about receiving the log in general, we can just
always signify that we want logging in general.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
file_sys/save_data_factory: Update SaveDataSpaceId enum
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Amends it with missing values deduced from RE (ProperSystem being from
SwitchBrew for naming)
(SdCardUser wasn't that difficult to discern given it's used alongside
SdCardSystem when creating the save data indexer, based off the usage of
the string "saveDataIxrDbSd" nearby).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/process: Set ideal core from metadata
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
A very trivial change. If metadata is available, the process should use
it to retrieve the desired core for the process to run on.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
savedata_factory: Add CacheStorage and delete TemporaryStorage on boot
|
| | | | | | | | | | |
|
| | |_|_|_|_|/ / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
Mimics hardware behavior.
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / /
|/| | | | | | | | |
vm_manager: Make vma_map private
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Given memory should always be expected to be valid during normal
execution, this should be a debug assertion, rather than a check in
regular builds.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This was only ever public so that code could check whether or not a
handle was valid or not. Instead of exposing the object directly and
allowing external code to potentially mess with the map contents, we
just provide a member function that allows checking whether or not a
handle is valid.
This makes all member variables of the VMManager class private except
for the page table.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
service/ldr: Amend layouts of NRO and NRR headers
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
The first word is just a padding byte, it's not an actual entry
instruction. Also renames the rest of the entries according to
SwitchBrew.
|
| | |_|/ / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The padding after the magic signature value should be 12 bytes rather
than 28 bytes. The other 16 should be placed after the title ID pattern.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
hle/service, hle/sm: Minor cleanup
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Combines the two into one, shortening the amount of code here.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Only one usage of the specified objects made use of the lack of
namespacing. Given the low usage, we can just remove these.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
These auto-deduce the result based off its arguments, so there's no need
to do that work for the compiler, plus, the function return value itself
already indicates what we're returning.
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Gets rid of the need to keep the variables separate from their actual
initialization spots.
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
loaders: Make GetFileType() a const qualified member function
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
No implementations actually modify instance state (and it would be
questionable to do that in the first place given the name), so we can
make this a const member function.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
system_archive: Implement open source NgWord2
|
| | |_|/ / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
kernel/svc: Correct behavior of svcResetSignal()
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
While partially correct, this service call allows the retrieved event to
be null, as it also uses the same handle to check if it was referring to
a Process instance. The previous two changes put the necessary machinery
in place to allow for this, so we can simply call those member functions
here and be done with it.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Process instances can be waited upon for state changes. This is also
utilized by svcResetSignal, which will be modified in an upcoming
change. This simply puts all of the WaitObject related machinery in
place.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
svcResetSignal relies on the event instance to have already been
signaled before attempting to reset it. If this isn't the case, then an
error code has to be returned.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
system_archive: Use a regular function pointer instead of std::function for the file-scope system archive array
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We've already given the constant to the vector itself, so we don't need
to re-hardcode it in the array.
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This allows the array to be constexpr. std::function is also allowed to
allocate memory, which makes its constructor non-trivial, we definitely
don't want to have all of these execute at runtime, taking up time
before the application can actually load.
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
service/ldr: Deduplicate instruction cache clearing code in LoadNro()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
We don't need to specify all of the ARM interfaces explicitly.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
file_sys: Implement open source system archives
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allows using constexpr/static const data with VFS.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
file_sys/registered_cache: Eliminate variable shadowing
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Also inverts if statements where applicable to allow unindenting code a
little bit.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
crypto/key_manager: Remove unused variable in GetTicketblob()
|
| |/ / / / / / |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This function simply does a handle table lookup for a writable event
instance identified by the given handle value. If a writable event
cannot be found for the given handle, then an invalid handle error is
returned. If a writable event is found, then it simply signals the
event, as one would expect.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
svcCreateEvent operates by creating both a readable and writable event
and then attempts to add both to the current process' handle table.
If adding either of the events to the handle table fails, then the
relevant error from the handle table is returned.
If adding the readable event after the writable event to the table
fails, then the writable event is removed from the handle table and the
relevant error from the handle table is returned.
Note that since we do not currently test resource limits, we don't check
the resource limit table yet.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
loader/{nro, nso}: Remove dependency on the System class
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Similar to the NRO changes, we can also pass the process explicitly as a
parameter from Load instead of indirecting through the System class.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This simply acts as a forwarding function for the Load() function, so
this doesn't need to be directly exposed.
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Load() is already given the process instance as a parameter, so instead
of coupling the class to the System class, we can just forward that
parameter to LoadNro()
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/object: Amend handle types to distinguish between readable and writable events
|
| | |_|_|_|_|/
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Two kernel object should absolutely never have the same handle ID type.
This can cause incorrect behavior when it comes to retrieving object
types from the handle table. In this case it allows converting a
WritableEvent into a ReadableEvent and vice-versa, which is undefined
behavior, since the object types are not the same.
This also corrects ClearEvent() to check both kernel types like the
kernel itself does.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Another hold-over from Citra.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allows a process to register the resource limit as part of its handle
table.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
svc: Reorganize svcGetInfo, handle more error cases for existing implemented info categories
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The kernel uses the handle table of the current process to retrieve the
process that should be used to retrieve certain information. To someone
not familiar with the kernel, this might raise the question of "Ok,
sounds nice, but doesn't this make it impossible to retrieve information
about the current process?".
No, it doesn't, because HandleTable instances in the kernel have the
notion of a "pseudo-handle", where certain values allow the kernel to
lookup objects outside of a given handle table. Currently, there's only
a pseudo-handle for the current process (0xFFFF8001) and a pseudo-handle
for the current thread (0xFFFF8000), so to retrieve the current process,
one would just pass 0xFFFF8001 into svcGetInfo.
The lookup itself in the handle table would be something like:
template <typename T>
T* Lookup(Handle handle) {
if (handle == PSEUDO_HANDLE_CURRENT_PROCESS) {
return CurrentProcess();
}
if (handle == PSUEDO_HANDLE_CURRENT_THREAD) {
return CurrentThread();
}
return static_cast<T*>(&objects[handle]);
}
which, as is shown, allows accessing the current process or current
thread, even if those two objects aren't actually within the HandleTable
instance.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Our implementation of svcGetInfo was slightly incorrect in that we
weren't doing proper error checking everywhere. Instead, reorganize it
to be similar to how the kernel seems to do it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
filesystem: De-globalize registered_cache_union
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
We can just return a new instance of this when it's requested. This only
ever holds pointers to the existing registed caches, so it's not a large
object. Plus, this also gets rid of the need to keep around a separate
member function just to properly clear out the union.
Gets rid of one of five globals in the filesystem code.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel: Divide Event into ReadableEvent and WritableEvent
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Used to store ReadableEvents of all events on the system.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
More hardware accurate. On the actual system, there is a differentiation between the signaler and signalee, they form a client/server relationship much like ServerPort and ClientPort.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service/fsp_srv: Implement CleanDirectoryRecursively
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Ensures that read only indeed means read only.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is the same behavior-wise as DeleteDirectoryRecursively, with the
only difference being that it doesn't delete the top level directory in
the hierarchy, so given:
root_dir/
- some_dir/
- File.txt
- OtherFile.txt
The end result is just:
root_dir/
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/audio/audout_u: Amend constructor initialization list order
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Orders the constructor initializer list the same way the members of the
class are declared. Prevents -Wreorder warnings
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fixed crash with SetNpadMode
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
fixed crash due to handheld
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Updates the function table for IClientEpSession based off information
provided by SwitchBrew.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updates the function table according to information provided by
SwitchBrew.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Services/VI: Dereferencing an uninitialized std::optional is undefined behavior.
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
Assert that it is not empty before using it in the DequeueBuffer wait callback.
|
| |/ / /
|/| | |
| | | |
| | | |
| | | | |
A non-existent parameter was left in some formatting calls (the logging
macro for which only does anything meaningful on debug builds)
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This code was around prior to the introduction of PushEnum, so convert
it over so we don't need to cast here.
|
|/ / /
| | |
| | |
| | | |
This function simply converts a given index into a language code.
|
|\ \ \
| | | |
| | | | |
Changed logging to be "Log before execution", Added more error logging, all services/svc should now log on some level
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
npad: Use NPadIdToIndex to prevent invalid array access
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gpu: Rewrite GPU command list processing with DmaPusher class.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- More accurate impl., fixes Undertale (among other games).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
file_sys/registered_cache: Use regular const references instead of std::shared_ptr for InstallEntry()
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These parameters don't need to utilize a shared lifecycle directly in
the interface. Instead, the caller should provide a regular reference
for the function to use. This also allows the type system to flag
attempts to pass nullptr and makes it more generic, since it can now be
used in contexts where a shared_ptr isn't being used (in other words, we
don't constrain the usage of the interface to a particular mode of
memory management).
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
profile_manager: Save and load ProfileData from disk
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The ProfileData is a 0x80-sized structure that stores various pieces of miscellaneous data for the account.
|
| |/ / / / / /
|/| | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
While we're at it, organize the array linearly, since clang formats the
array elements quite wide length-wise with the addition of the missing
'u'.
Technically also fixes patch lookup and icon lookup with Portuguese,
though I doubt anyone has actually run into this issue.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
gdbstub: Silence value truncation warning within FpuWrite()
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Previously this would cause an implicit truncation warning about
assigning a u64 value to a u32 value without an explicit cast.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The opposite of the getter functions, this function sets the limit value
for a particular ResourceLimit resource category, with the restriction
that the new limit value must be equal to or greater than the current
resource value. If this is violated, then ERR_INVALID_STATE is returned.
e.g.
Assume:
current[Events] = 10;
limit[Events] = 20;
a call to this service function lowering the limit value to 10 would be
fine, however, attempting to lower it to 9 in this case would cause an
invalid state error.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This kernel service function is essentially the exact same as
svcGetResourceLimitLimitValue(), with the only difference being that it
retrieves the current value for a given resource category using the
provided resource limit handle, rather than retrieving the limiting
value of that resource limit instance.
Given these are exactly the same and only differ on returned values, we
can extract the existing code for svcGetResourceLimitLimitValue() to
handle both values.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This kernel service function retrieves the maximum allowable value for
a provided resource category for a given resource limit instance. Given
we already have the functionality added to the resource limit instance
itself, it's sufficient to just hook it up.
The error scenarios for this are:
1. If an invalid resource category type is provided, then ERR_INVALID_ENUM is returned.
2. If an invalid handle is provided, then ERR_INVALID_HANDLE is returned (bad thing goes in, bad thing goes out, as one would expect).
If neither of the above error cases occur, then the out parameter is
provided with the maximum limit value for the given category and success
is returned.
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This function simply creates a ResourceLimit instance and attempts to
create a handle for it within the current process' handle table. If the
kernal fails to either create the ResourceLimit instance or create a
handle for the ResourceLimit instance, it returns a failure code
(OUT_OF_RESOURCE, and HANDLE_TABLE_FULL respectively). Finally, it exits
by providing the output parameter with the handle value for the
ResourceLimit instance and returning that it was successful.
Note: We do not return OUT_OF_RESOURCE because, if yuzu runs out of
available memory, then new will currently throw. We *could* allocate the
kernel instance with std::nothrow, however this would be inconsistent
with how all other kernel objects are currently allocated.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
service/sm: Take std::string by const reference in UnregisterService
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoids the need to create a copy of the std::string instance
(potentially allocating).
The only reason RegisterService takes its argument by value is because
it's std::moved internally.
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
nvdrv: Implement/stub DumpGraphicsMemoryInfo and GetStatus.
|
| | | |
| | | |
| | | |
| | | | |
- Used by Undertale.
|
|\ \ \ \
| | | | |
| | | | | |
sm: Implement RegisterService and UnregisterService
|
| | | | |
| | | | |
| | | | | |
These are needed by Edizon to boot. They are used to see if a user is using SX OS, as SX OS registers a custom service called 'tx' and attempting to register a service of the same name lets the application know if it is present.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
filesystem: Clear registered union paths on factory creation
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GDBStub Improvements
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Add FPU support
- Fix access to TLS
Fix clang-format.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Report resolution scaling support for vi and am
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Specifying an internal resolution in yuzu now will report the scaled changes to vi and am.
|
|\ \ \ \ \ \ \
| |_|_|_|_|/ /
|/| | | | | | |
patch_manager: Add support for applying LayeredFS patches to ExeFS
|
| | | | | | |
| | | | | | |
| | | | | | | |
The decision was made to name them LayeredExeFS instead of just LayeredFS to differentiate from normal RomFS-based mods. The name may be long/unweildy, but conveys the meaning well.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This will scan the <mod>/exefs dir for all files and then layer those on top of the game's exefs and use this as the new exefs. This allows for overriding of the compressed NSOs or adding new files. This does use the same dir as IPS/IPSwitch patch, but since the loader will not look for those they are ignored.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When enabled, all exefs(es) will be copied to yuzu/dump/<title_id>/exefs.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
applets: Add StubApplet and use it as fallback when AppletId is not implemented
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This will log all data it receives, log all calls to its methods and push dummy data into both channels on execution.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
core: Relocate CPU core management to its own class
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Keeps the CPU-specific behavior from being spread throughout the main
System class. This will also act as the home to contain member functions
that perform operations on all cores. The reason for this being that the
following pattern is sort of prevalent throughout sections of the
codebase:
If clearing the instruction cache for all 4 cores is necessary:
Core::System::GetInstance().ArmInterface(0).ClearInstructionCache();
Core::System::GetInstance().ArmInterface(1).ClearInstructionCache();
Core::System::GetInstance().ArmInterface(2).ClearInstructionCache();
Core::System::GetInstance().ArmInterface(3).ClearInstructionCache();
This is kind of... well, silly to copy around whenever it's needed.
especially when it can be reduced down to a single line.
This change also puts the basics in place to begin "ungrafting" all of the
forwarding member functions from the System class that are used to
access CPU state or invoke CPU-specific behavior. As such, this change
itself makes no changes to the direct external interface of System. This
will be covered by another changeset.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
nvhost_ctrl_gpu: Implement IoctlGetGpuTime.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
- Used by Undertale.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Prevents memory exceptions when the debug pad is enabled.
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
audout_u: Add support for multiple IAudioOut streams.
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Used by Undertale.
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
kernel/handle_table: Minor changes
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
These don't depend on class state, and are effectively implementation
details, so they can go into the cpp file .
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The previous handle table size is a holdover from Citra. The actual
handle table construct on Horizon only allows for a maximum of 1024
entries.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We don't need to potentially inline the teardown logic of all of the
handle instances.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
am/applets: Minor cleanup
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The accessor should be doing just that, accessing, rather than retaining
the lifetime of the data broker as well.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Also resolve places where includes should have been provided, but
weren't.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids wonky wrapping and makes it nicer to read.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The interface for shared memory was changed, but another commit was
merged that relied on the (previously public) internals of SharedMemory.
This amends that discrepancy.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/shared_memory: Make data members private, plus minor interface changes
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Both member functions assume the passed in target process will not be
null. Instead of making this assumption implicit, we can change the
functions to be references and enforce this at the type-system level.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Given this doesn't mutate instance state, we can provide a
const-qualified variant as well.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Keeps the interface consistent with the regular Create() function.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Makes the interface nicer to use in terms of 64-bit code, as it makes it
less likely for one to get truncation warnings (and also makes sense in
the context of the rest of the interface where 64-bit types are used for
sizes and offsets
|
| | |_|_|_|/ / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Rather than allow unfettered access to the class internals, we hide all
members by default and create and API that other code can operate
against.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
ldr: Clean up error codes
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The separate enum isn't particularly necessary here, and the values can
just be directly put into the ResultCode instances, given the names are
also self-documenting here.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
kernel/process: Move <random> include to the cpp file
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
<random> isn't necesary directly within the header and can be placed in
the cpp file where its needed. Avoids propagating random generation
utilities via a header file.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Fills out the struct according to information provided by SwitchBrew
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
am: Implement HLE software keyboard applet
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This cleans up most of the callbacks and such in the Applets::Applet interface, while also properly implementing all four data channels.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
a
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allows the game to verify and send a message to the frontend.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allows using Qt provider over default.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allows use of software keyboard applet and future applets to be easily added by adding enum ID and a switch case.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Provides a middleman between the Frontend provider class and the expected AM::Applets::Applet class needed by ILibraryAppletAccessor
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Default implementation will return "yuzu" for any string. GUI clients (or CLI) can implement the Frontend::SoftwareKeyboardApplet class and register an instance to provide functionality.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Adds an Initialize and Execute methods which are used by the ILibraryAppletAccessor to start and control the applet.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Now starts the applet provided in constructor.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Used by software keyboard applet for data transfer.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
std::stack was no longer suitable for non-trivial operations
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Needs to be accessible by applet files.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Writes to an AM::IStorage object through an IStorageAccessor will now be preserved once the accessor is destroyed.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Creates an AM::IStorage object with the contents of the transfer memory located at the handle provided.
|
| | |/ / / / /
| |/| | | | |
| | | | | | | |
Seems to be used and created identically to SharedMemory, so just reuse that.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
lm: Implement SetDestination by doing nothing
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This service function was likely intended to be a way to redirect where
the output of a log went. e.g. Firing a log over a network, dumping over
a tunneling session, etc.
Given we always want to see the log and not change its output. It's one
of the lucky service functions where the easiest implementation is to
just do nothing at all and return success.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Cleans out the citra/3DS-specific implementation details that don't
apply to the Switch. Sets the stage for implementing ResourceLimit
instances properly.
While we're at it, remove the erroneous checks within CreateThread() and
SetThreadPriority(). While these are indeed checked in some capacity,
they are not checked via a ResourceLimit instance.
In the process of moving out Citra-specifics, this also replaces the
system ResourceLimit instance's values with ones from the Switch.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Including finger ID, diamater x/y, and angle. Additionally, checks if the touchscreen is enabled.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Used by developers to test games, not present on retail systems. Some games are known to respond to DebugPad input though, for example Kirby Star Allies.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Uses the PlayerInput struct to represent all of the data that constitutes a player.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / /
|/| | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
ldr_ro: Complete LDR:RO implementation
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Includes actual unmapping and address error checking.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Includes NRO and BSS error checking, maximum loaded NRO check, NRR hash check, and proper remapping of BSS data.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Includes initialization check, proper address check, alignment check, and actual unloading of a loaded NRR.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Includes parameter error checking, hash enforcement, initialization check, and max NRR load check.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Credits to Subv
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fixes unmapped spam in SMP and buffer size errors in some other games
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implemented CalculateStandardUserSystemClockDifferenceByUser
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Seems pokemon calls this sometimes and it caused "random crashes"
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
vi: Implement TransactParcel for Disconnect and DetachBuffer
|
| | |_|_|_|_|/ /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Used by homebrew on exit. According to switchbrew, returns an empty response parcel with one zero in it.
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
svc: ResetSignal is not stubbed
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
https://user-images.githubusercontent.com/20753089/48677874-b8e01c80-eb7b-11e8-8043-b99faa29022c.PNG
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Added various bluetooth based cmds for palma
|
| | |_|_|_|/ / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
It seems palma is done through bluetooth, we need this for pokemon go however more research needs to be done when we actually get palma working. This is presumably used for transfering data between the controller and the console, it does not seem for actual input as far as I know.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
- Fixes audio issues with Pokemon: Let's Go Pikachu & Eevee.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Similar to PR 1706, which cleans up the error codes for the filesystem
code, but done for the kernel error codes. This removes the ErrCodes
namespace and specifies the errors directly. This also fixes up any
straggling lines of code that weren't using the named error codes where
applicable.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement SetMemoryPermission
|
| | | | | | | | |
|
| | |_|/ / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
game_list: Optimize game list refresh
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Prevents unnecessary re-reads of the metadata and unnecessary temporary objects.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Creates a single KeyManager for the entire container and then passes it into the NCA constructor, eliminating several unnecessary KeyManager reads.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allows resuing a common KeyManager when a large amount of NCAs are handled by the same class. Should the parameter not be provided, a new KeyManager will be constructed, as was the default behavior prior to this.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
file_sys/errors: Clean up error code values
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Rather than keeping around unused values, we can just introduce them as
needed.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
There's no real point to keeping the separate enum around, especially
given the name of the error code itself is supposed to document what the
value actually represents.
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Keeps filesystem-related error codes in one spot.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Currently unclear what these do yet, will be researched at a later time when we want to implement palma.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* Fixed priority switching edge case for handheld
We accidently used controller index instead of npad id
* Moved NPadIdToIndex
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
csrng: Use random integer distribution instead of raw engine
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Prevents returning the same value every single call.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/thread: Deduplicate scheduler switching code
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The code in both places was the same verbatim, so we can extract it to a
function to deduplicate the logic.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
patch_manager: Add support for dumping uncompressed NSOs
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
When enabled in settings, PatchNSO will dump the unmodified NSO that it was passed to a file named <build id>.nso in the dump root for the current title ID.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Also adds UI option in Debug > Dump section, with the idea later things to be dumped (i.e. other game data or textures, etc) will use the same group box.
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | | |
Equates to yuzu_dir/dump/<title id>/
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
service/audren_u: Forward RequestUpdateAuto through the same function as RequestUpdate
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Based off RE, they both currently go through the same codepath with no
difference in behavior.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
acc/profile_manager: Minor cleanup-related changes
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids relying on fmt always being indirectly included.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
service/acc: Correct error case within TrySelectUserWithoutInteraction()
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
empty() in this case will always return false, since the returned
container is a std::array. Instead, check if all given users are invalid
before returning the error code.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
nfp: Correct erroneous sizeof expression within GetTagInfo()
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The previous expression would copy sizeof(size_t) amount of bytes (8 on
a 64-bit platform) rather than the full 10 bytes comprising the uuid
member.
Given the source and destination types are the same, we can just use an
assignment here instead.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
hid/npad: Add missing break in switch statement within Controller_NPad::OnUpdate
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
service: Mark MakeFunctionString with the [[maybe_unused]] attribute.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When yuzu is compiled in release mode this function is unused, however,
when compiled in debug mode, it's used within a LOG_TRACE statement.
This prevents erroneous compilation warnings about an unused function
(that isn't actually totally unused).
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
svc: Use proper random entropy generation algorithm
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/process: Migrate heap-related memory management out of the process class and into the vm manager
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Now that we've moved all of the heap-related stuff to the VMManager
class, we can unstub this function, as the necessary members are visible
now.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids a breach of responsibilities in the interface and keeps the
direct code for memory management within the VMManager class.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hle/audren_u: Implement Get/SetRenderingTimeLimit
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These appear to be a basic getter and setter pair, so these are fairly
trivial to implement and get out of the way.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
[ns|fsp_srv]: Implement various functions to boot Checkpoint
|
| | | | | |
| | | | | |
| | | | | | |
Returns the raw NACP bytes and the raw icon bytes into a title-provided buffer. Pulls from Registration Cache for control data, returning all zeros should it not exist.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
An object to read SaveDataInfo objects, which describe a unique save on the system. This implementation iterates through all the directories in the save data space and uses the paths to reconstruct the metadata.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Needed by Checkpoint. Returns an object that can iterate through all savedata on the system.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allows NRO homebrew to use the RomFS in the ASET section.
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Returns the raw bytes of the NACP file. Needed for GetApplicationControlData which returns the raw, unprocessed NACP to the game.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
csrng: Add config option to set RNG seed
|
| | | | | | |
|
| | | | | | |
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Implement GetClockSnapshot, ToPosixTime & ToPosixTimeWithMyRule
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Added instead of using a seperate PR to prevent conflicts
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Needed by megaman 11
|
|\ \ \ \ \
| | | | | |
| | | | | | |
configure_system: Fix compiler warning
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Ability to switch between docked and undocked mode in-game
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Started implementation of the AM message queue mainly used in state getters. Added the ability to switch docked mode whilst in game without stopping emulation. Also removed some things which shouldn't be labelled as stubs as they're implemented correctly
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Updated npad styles on holdtype switches
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Fixes input for megaman
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* svcBreak now dumps information from the debug buffer passed
info1 and info2 seem to somtimes hold an address to a buffer, this is usually 4 bytes or the size of the int and contains an error code. There's other circumstances where it can be something different so we hexdump these to examine them at a later date.
* Addressed comments
|
| | | | | |
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | | |
Needed for Shantae - Half-Genie Hero - Ultimate Edition!
|
|\ \ \ \
| | | | |
| | | | | |
Fixed HID crash when launching more than 1 game & signaled styleset change event
|
| | | | |
| | | | |
| | | | |
| | | | | |
This should fix crashes when launching multiple games in yuzu
|
| |_|_|/
|/| | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
configure_system: Contrain profile usernames to 32 characters
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previously, we would let a user enter an unbounded name and then
silently truncate away characters that went over the 32-character limit.
This is kind of bad from the UX point of view, because we're essentially
not doing what the user intended in certain scenarios.
Instead, we clamp it to 32 characters and make that visually apparent in
the dialog box to provide a name for a user.
|
|\ \ \
| | | |
| | | | |
Port citra-emu/citra#4369: "compatdb: Use a seperate endpoint for testcase submission"
|
| | | | |
|
| |_|/
|/| |
| | |
| | | |
Updated based off information on SwitchBrew.
|
| | |
| | |
| | |
| | | |
Cleans up unused includes and trims off some dependencies on externals.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* get rid of boost::optional
* Remove optional references
* Use std::reference_wrapper for optional references
* Fix clang format
* Fix clang format part 2
* Adressed feedback
* Fix clang format and MacOS build
|
|\ \ \
| | | |
| | | | |
hle_ipc: Make GetDomainMessageHeader return a regular pointer
|
| | | |
| | | |
| | | |
| | | | |
Gets rid of the need to call the getter and then check for null.
|
| | |/
| |/|
| | |
| | |
| | | |
Nothing requires the shared owner ship here, so we can just return a
plain pointer.
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
Many of the Current<Thing> getters (as well as a few others) were
missing const qualified variants, which makes it a pain to retrieve
certain things from const qualified references to System.
|
|\ \
| | |
| | | |
svc: Implement svcGetInfo command 0xF0000002
|
| | |
| | |
| | |
| | | |
Nothing from this enum is intended to be used outside of this function.
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This retrieves:
if (curr_thread == handle_thread) {
result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks);
} else if (curr_thread == handle_thread && sub_id == current_core_index) {
result = hardware_tick_count - last_context_switch_ticks;
}
|
| |
| |
| |
| |
| |
| | |
* remove unnecessary if-statements
* Addressed feedback
|
|\ \
| | |
| | | |
service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive
|
| |/ |
|
|\ \
| | |
| | | |
loader/nsp: Move secondary loader initialization to constructor
|
| |/
| |
| |
| | |
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
|
|/
|
|
| |
Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit.
|
|\
| |
| | |
vfs: Remove InterpretAsDirectory and related functions
|
| |
| |
| |
| | |
When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
|
|\ \
| | |
| | | |
yuzu/main: Notify user of loading errors with Amiibo data
|
| | |
| | |
| | |
| | |
| | | |
We shouldn't silently continue if loading failed, since the general
assumption is that no messages showing up implicitly indicates success.
|
| | |
| | |
| | |
| | | |
- This is an incomplete implementation. It was tested with Super Mario Party.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Prevents a potential bug when using RLE records in an IPS patch.
|
|\ \ \
| | | |
| | | | |
service/usb: Update service function tables
|
| | | |
| | | |
| | | |
| | | | |
Updated based off the information provided by Hexkyz on Switchbrew.
|
|\ \ \ \
| | | | |
| | | | | |
service/acc: Silence compiler truncation warnings
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is just flat data, so it doesn't really need to be in the function
itself. This also allows deduplicating the constant for the backup size
in GetImageSize().
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Silences compiler warnings related to truncation. This also introduces a
small helper function to perform the clamping of the image size.
|
| |/ / /
| | | |
| | | |
| | | | |
Allows unindenting the other branch's code.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/error: Amend error return code values
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Now that we've gotten the innaccurate error codes out of the way, we can
finally toss away a bunch of these, trimming down the error codes to
ones that are actually used and knocking out two TODO comments.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This is more consistent with what the kernel does.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This is what the kernel does in this instance.
|
| | | | |
| | | | |
| | | | |
| | | | | |
These are now entirely unused and can be removed.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Like with the previous change, the kernel doesn't return NOT_AUTHORIZED
here. It returns INVALID_THREAD_PRIORITY.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
All priority checks are supposed to occur before checking the validity
of the thread handle, we're also not supposed to return
ERR_NOT_AUTHORIZED here.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The kernel appears to return 0xE601 for this situation. Particularly in
svcWaitSynchronization, svcReplyAndReceive, and svcGetThreadContext
|
| |/ / /
| | | |
| | | |
| | | | |
The kernel appears to return 0xF601 for this case.
|
|\ \ \ \
| | | | |
| | | | | |
profile_manager: Use std::optional instead of boost::optional
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Now that we can actually use std::optional on macOS, we don't need to
continue using boost::optional here.
|
|\ \ \ \
| | | | |
| | | | | |
npad: Remove unused controller variable from OnInit()
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
This also gets rid of variable shadowing related to the lambda parameter
a little bit below this code as well.
|
|\ \ \ \
| | | | |
| | | | | |
perf_stats: Remove unused variable within DoFrameLimiting()
|
| |/ / /
| | | |
| | | |
| | | | |
This hasn't been used since ba8ff096fdc9f7ab101851c4cd06c3244a7d84c3
|
|\ \ \ \
| | | | |
| | | | | |
aoc_u: Make use of previously-unused CheckAOCTitleIDMatchesBase() function
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We can just call the function instead of duplicating the code here. This
also prevents an unused function warning.
We also don't need to take the lambda capture by reference. It's just a
u64 value, so by value is fine here.
|
|\ \ \ \
| |_|/ /
|/| | | |
file_sys: Remove unused variables
|
| | | |
| | | |
| | | |
| | | | |
Also gets rid of an unused variable.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
qt: Add UI to manage emulated user profiles
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Added break types to svcBreak
|
| | | |
|
| | |
| | |
| | |
| | | |
There seems to be more such as type 1, and 2. Unsure what these currently are but when a game hits them we can investigate and add the rest
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Fixed conflict with nfp
* Few fixups for nfc
* Conflict 2
* Fixed AttachAvailabilityChangeEvent
* Conflict 3
* Fixed byte padding
* Refactored amiibo to not reside in "System"
* Removed remaining references of nfc from system
* used enum for Nfc GetStateOld
* Added missing newline
* Moved file operations to front end
* Conflict 4
* Amiibos now use structs and added mutexes
* Removed amiibo_path
|
|\ \ \
| | | |
| | | | |
patch_manager: Add support for LayeredFS on DLC RomFS
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Prevents a Entry from appearing in the list twice if the user has it installed in two places (e.g. User NAND and SDMC)
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
kernel/process: Make the handle table per-process
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In the kernel, there isn't a singular handle table that everything gets
tossed into or used, rather, each process gets its own handle table that
it uses. This currently isn't an issue for us, since we only execute one
process at the moment, but we may as well get this out of the way so
it's not a headache later on.
|
|\ \ \ \
| | | | |
| | | | | |
psm: Add psm service and stub commands 0 and 1
|
| | | | |
| | | | |
| | | | | |
Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
|
| |/ / /
| | | |
| | | |
| | | | |
Seems to be the power controller. Listed in switchbrew under the category PTM services.
|
|\ \ \ \
| | | | |
| | | | | |
svc: Fix vma boundary check in svcQueryMemory
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
This should be comparing against the queried process' vma_map, not the
current process'. The only reason this hasn't become an issue yet is we
currently only handle one process being active at any time.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Updated based off information provided by Switchbrew.
|
| | | |
| | | |
| | | |
| | | | |
Added based off information provided by Switchbrew.
|
| | | |
| | | |
| | | |
| | | | |
Updated based off information from Switchbrew
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Also introduces the new prepo:a2 service.
Updated based off information provided by Switchbrew.
|
| | | |
| | | |
| | | |
| | | | |
Updated based off information provided by Switchbrew.
|
|/ / /
| | |
| | |
| | | |
This is a subset of the better-hid-2 changes, this fixes input in various games which don't support dual joycons. This pr will search for the next best controller which is supported by the current game
|
|\ \ \
| | | |
| | | | |
svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemory
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Now that the changes clarifying the address spaces has been merged, we
can wrap the checks that the kernel performs when mapping shared memory
(and other forms of memory) into its own helper function and then use
those within MapSharedMemory and UnmapSharedMemory to complete the
sanitizing checks that are supposed to be done.
|
|\ \ \ \
| | | | |
| | | | | |
service: Update function tables
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based off information provided by Switchbrew.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based off information provided by Switchbrew.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based off information provided by Switchbrew.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based off information provided by switchbrew.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based off information provided by Switchbrew.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Added based off information provided by Switchbrew
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based off information provided by Switchbrew.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Updated based on information from Switchbrew.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
aoc_u: Stub GetAddOnContentListChangedEvent
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
This event signals the game when new DLC is purchased from the eShop while the game is running. Since, for the forseeable future, yuzu will not have this ability, it seems safe to stub with a dummy event that will never fire. This is needed to boot Sonic Mania Plus (update v1.04).
|
|\ \ \ \ \
| | | | | |
| | | | | | |
hid: Minor cleanup-related changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
swap.h only needs to be present in the header for the type aliases and
definitions, it's not actually needed in the cpp files though. input.h
is just unused entirely in xpad.h
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given it's unused, we may as well toss it.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is only useful in headers.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is just a lookup table, and since it's private, there's nothing
really stateful about it, so we can just move it into the cpp file.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This literally does nothing.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These classes are non-trivial and are definitely going to be changed in
the future, so we default these to prevent issues with forward
declarations, and to keep the compiler from inlining tear-down code.
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
The destructor doesn't need to be a pure-virtual function.
|
| |/ / /
|/| | |
| | | |
| | | | |
Fixes a fatal crash on start when deriving keys.
|
| |/ /
|/| |
| | |
| | | |
Needed by arms due to new hid rework
|
|\ \ \
| | | |
| | | | |
svc: Add missing error checks in svcArbitrateLock/svcArbitrateUnlock
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The kernel itself checks whether or not the provided addresses are word
aligned before continuing, so we should be doing the same.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Aligning on 4KB pages isn't a Switch-specific thing, so this can be
moved to common so it can be used with other things as well.
|
|\ \ \ \
| | | | |
| | | | | |
content_archive: Minor reorganization changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
std::move doesn't actually dereference the data, so it doesn't matter
whether or not the type is null.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is only ever used within the cpp file, so it can just be an
internal function.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This is the same as using std::any_of with an inverted predicate.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The constructor alone is pretty large, the reading code should be split
into its consistuent parts to make it easier to understand it without
having to build a mental model of a 300+ line function.
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Each header is 512 bytes in size, which is kind of an excessive amount
to copy all the time when it's possible to avoid doing so.
|
|\ \ \ \
| | | | |
| | | | | |
Used better names for mm:u and fixed a bad stub
|
| | |_|/
| |/| |
| | | |
| | | | |
InitializeWithId needs to return an id which is a u32 which should be a non zero value
|
| |_|/
|/| |
| | |
| | |
| | | |
CpuCore already does this sort of checking, so we can just call that
instead of duplicating the assertions.
|
|\ \ \
| |/ /
|/| | |
XCI: Add function for checking the existence of the program NCA
|
| |/
| |
| |
| |
| |
| | |
The only reason the getter existed was to check whether or not the
program NCA was null. Instead, we can just provide a function to query
for the existence of it, instead of exposing it entirely.
|
|\ \
| | |
| | | |
"Better Hid" Rework Part 1
|
| | |
| | |
| | |
| | | |
Reason for the change is to allow both docked and undocked mode to work
|
| | | |
|
| | |
| | |
| | |
| | | |
Kirby input still doesn't work, should fix a lot of other games
|
| | |
| | |
| | |
| | | |
Used by Mario Party
|
| | |
| | |
| | |
| | | |
HandheldVariant is for specific games which expect handheld controllers to be at position 8(kirby), however this doesn't fix all games as some games require handhelds to be at position 0(snipperclips)
|
| | | |
|
| | |
| | |
| | |
| | | |
Fixes arms
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Implement flushing in the rasterizer cache
|
| | |/
| |/|
| | |
| | | |
- This will be used as a catch-all for slow-but-accurate GPU emulation paths.
|
|\ \ \
| | | |
| | | | |
svc: Clarify enum values for AddressSpaceBaseAddr and AddressSpaceSize in svcGetInfo()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
So, one thing that's puzzled me is why the kernel seemed to *not* use
the direct code address ranges in some cases for some service functions.
For example, in svcMapMemory, the full address space width is compared
against for validity, but for svcMapSharedMemory, it compares against
0xFFE00000, 0xFF8000000, and 0x7FF8000000 as upper bounds, and uses
either 0x200000 or 0x8000000 as the lower-bounds as the beginning of the
compared range. Coincidentally, these exact same values are also used in
svcGetInfo, and also when initializing the user address space, so this
is actually retrieving the ASLR extents, not the extents of the address
space in general.
|
|\ \ \ \
| |_|/ /
|/| | | |
savedata_factory: Add DeviceSaveData and fix TemporaryStorage
|
| | | |
| | | |
| | | |
| | | | |
Required for TemporaryStorage saves (in addition to SaveDataType)
|
| | | |
| | | |
| | | |
| | | | |
Uses the same path as SaveData except with UID 0. Adds a warning if UID is not 0.
|
|\ \ \ \
| | | | |
| | | | | |
content_archive/patch_manager: Lower log levels to eliminate some unnecessary logs
|
| | | | |
| | | | |
| | | | |
| | | | | |
Normal Program-type patches will still be logged to aid in debugging, but for others (mainly Control), it was moved to Debug.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids printing live keys in the general log.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Implement VI ConvertScalingMode
* Fixed push enum
* Scale mode now uses Nintendo scale mode as an enum as well
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core: Convert shared_ptr instances into unique_ptr instances where applicable for System and Cpu
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
There's no need for shared ownership here, as the only owning class
instance of those Cpu instances is the System class itself. We can also
make the thread_to_cpu map use regular pointers instead of shared_ptrs,
given that the Cpu instances will always outlive the cases where they're
used with that map.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Like the barrier, this is owned entirely by the System and will always
outlive the encompassing state, so shared ownership semantics aren't
necessary here.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This will always outlive the Cpu instances, since it's destroyed after
we destroy the Cpu instances on shutdown, so there's no need for shared
ownership semantics here.
|
| |_|/ / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The data retrieved in these cases are ultimately chiefly owned by either
the RegisteredCache instance itself, or the filesystem factories. Both
these should live throughout the use of their contained data. If they
don't, it should be considered an interface/design issue, and using
shared_ptr instances here would mask that, as the data would always be
prolonged after the main owner's lifetime ended.
This makes the lifetime of the data explicit and makes it harder to
accidentally create cyclic references. It also makes the interface
slightly more flexible than the previous API, as a shared_ptr can be
created from a unique_ptr, but not the other way around, so this allows
for that use-case if it ever becomes necessary in some form.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
web_service: Make linkage of web_service-related externals and the library private
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Now that all external dependencies are hidden, we can remove
json-headers from the publically linked libraries, as the use of this
library is now completely hidden from external users of the web_service
library. We can also make the web_services library private as well,
considering it's not a requirement. If a library needs to link in
web_service, it should be done explicitly -- not via indirect linking.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids introducing the definition to the whole directory space and
localizes it to being added to the library that needs it.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These are just the size of the data being passed in, so we can specify
that via the size() member function.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
aoc: Fix various bugs in current AOC implementation
|
| | | | | | |
| | | | | | |
| | | | | | | |
Falls back to title ID + 0x1000, which is what HOS does.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
nro/nso: Minor error handling changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
If a malformed NSO is attempted to be loaded, we shouldn't continue
onwards. We should be reporting an error and bailing out.
|
| | | | | | | | |
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This function doesn't need to care about ownership semantics, so we can
just pass it a reference to the file itself, rather than a
std::shared_ptr alias.
|
| |_|_|/ / /
|/| | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
key_manager/partition_data_manager: Minor changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We can just reserve the memory then perform successive insertions
instead of needing to use memcpy. This also avoids the need to zero out
the output vector's memory before performing the insertions.
We can also std::move the output std::vector into the destination so
that we don't need to make a completely new copy of the vector, getting
rid of an unnecessary allocation.
Additionally, we can use iterators to determine the beginning and end
ranges of the std::vector instances that comprise the output vector, as
the end of one range just becomes the beginning for the next successive
range, and since std::vector's iterator constructor copies data within
the range [begin, end), this is more straightforward and gets rid of the
need to have an offset variable that keeps getting incremented to
determine where to do the next std::memcpy.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Aside from emplacing elements into the map, the map itself is never
actually queried for contained data.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These are only ever read from, so we don't need to make a copy of all
the keys here.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given it's only used in one spot and has a fairly generic name, we can
just specify it directly in the function call. This also the benefit of
automatically moving it.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Commented out code shouldn't be left in without a reason indicating why
in a comment.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Instead, we can make it part of the type and make named variables for
them, so they only require one definition (and if they ever change for
whatever reason, they only need to be changed in one spot).
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given the VirtualFile instance isn't stored into the class as a data
member, or written to, this can just be turned into a const reference,
as the constructor doesn't need to make a copy of it.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Orders the members in the exact order they would be initialized. This
also prevents compiler warnings about this sort of thing.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Gets unused includes out of the headers and moves them into the cpp file
if they're used there instead.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
If the data is unconditionally being appended to the back of a
std::vector, we can just directly insert it there without the need to
insert all of the elements one-by-one with a std::back_inserter.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
If a conditional (or it's body) travels more than one line, it should be
braced.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given the filesystem should always be assumed to be volatile, we should
check and bail out if a seek operation isn't successful. This'll prevent
potentially writing/returning garbage data from the function in rare
cases.
This also allows removing a check to see if an offset is within the
bounds of a file before perfoming a seek operation. If a seek is
attempted beyond the end of a file, it will fail, so this essentially
combines two checks into one in one place.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given the file is opened a few lines above and no operations are done,
other than check if the file is in a valid state, the read/write pointer
will always be at the beginning of the file.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
filesystem: Make CreateFactories() and InstallInterface() take a VfsFilesystem by reference
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Neither of these functions alter the ownership of the provided pointer,
so we can simply make the parameters a reference rather than a direct
shared pointer alias. This way we also disallow passing incorrect memory values like
nullptr.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
svc: Implement svcGetProcessInfo
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
A fairly basic service function, which only appears to currently support
retrieving the process state. This also alters the ProcessStatus enum to
contain all of the values that a kernel process seems to be able of
reporting with regards to state.
|
|/ / / /
| | | |
| | | |
| | | | |
This should help diagnose crashes easier and prevent many users thinking that a game is still running when in fact it's just an audio thread still running(this is typically not killed when svcBreak is hit since the game expects us to do this)
|
|\ \ \ \
| | | | |
| | | | | |
crypto: Add support for full key derivation
|
| | | | |
| | | | |
| | | | |
| | | | | |
x
|
| | | | |
| | | | |
| | | | |
| | | | | |
Keeps track of system files for key derivation
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Derives titlekeys
|
| | | | |
| | | | |
| | | | |
| | | | | |
Derives master keys, game encryption keys, and package1/2 keys
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
TSEC, SBK, BIS, and other Sources for proper derivation
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel/process: Make CodeSet a regular non-inherited object
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These only exist to ferry data into a Process instance and end up going
out of scope quite early. Because of this, we can just make it a plain
struct for holding things and just std::move it into the relevant
function. There's no need to make this inherit from the kernel's Object
type.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed incorrect types for svcBreak
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
signal_debugger seems like a more fitting name
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
svcBreak reason should be a u32, not a u64.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Passing an invalid nmap handle to Remap should throw an error
|
| | | | | | |
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
Added error for invalid nmap handles
|
|\ \ \ \ \
| | | | | |
| | | | | | |
thread: Remove unnecessary memset from ResetThreadContext()
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Regular value initialization is adequate here for zeroing out data. It
also has the benefit of not invoking undefined behavior if a non-trivial
type is ever added to the struct for whatever reason.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Added error codes for nvmap
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
HwOpus, Implemented DecodeInterleavedWithPerformance
|
| |/ / /
| | | |
| | | |
| | | | |
Used by sonic ages
|
|\ \ \ \
| | | | |
| | | | | |
svc: Add missing address range sanitizing checks to MapMemory/UnmapMemory
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This adds the missing address range checking that the service functions
do before attempting to map or unmap memory. Given that both service
functions perform the same set of checks in the same order, we can wrap
these into a function and just call it from both functions, which
deduplicates a little bit of code.
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
There's no real need to use a shared pointer in these cases, and only
makes object management more fragile in terms of how easy it would be to
introduce cycles. Instead, just do the simple thing of using a regular
pointer. Much of this is just a hold-over from citra anyways.
It also doesn't make sense from a behavioral point of view for a
process' thread to prolong the lifetime of the process itself (the
process is supposed to own the thread, not the other way around).
|
|\ \ \
| | | |
| | | | |
ips_layer: Silence truncation and conversion warnings
|
| | | |
| | | |
| | | |
| | | | |
Makes type conversions explicit to avoid compiler warnings.
|
|\ \ \ \
| |_|/ /
|/| | | |
patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControlMetadata() instead of a std::shared_ptr
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Neither of these functions require the use of shared ownership of the
returned pointer. This makes it more difficult to create reference
cycles with, and makes the interface more generic, as std::shared_ptr
instances can be created from a std::unique_ptr, but the vice-versa
isn't possible. This also alters relevant functions to take NCA
arguments by const reference rather than a const reference to a
std::shared_ptr. These functions don't alter the ownership of the memory
used by the NCA instance, so we can make the interface more generic by
not assuming anything about the type of smart pointer the NCA is
contained within and make it the caller's responsibility to ensure the
supplied NCA is valid.
|
|\ \ \
| | | |
| | | | |
svcBreak, Signalling to the debugger should not kill execution
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
When loading NROs, svcBreak is called to signal to the debugger that a new "module" is loaded. As no debugger is technically attached we shouldn't be killing the programs execution.
|
|\ \ \ \
| | | | |
| | | | | |
telemetry_session: Minor miscellaneous changes
|
| | | | |
| | | | |
| | | | |
| | | | | |
There's no "func" parameter, so this can just be removed.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Prevents potential compilation issues in the future by including missing
headers for certain functions and types.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This isn't implemented anywhere, so it can just be removed.
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | | |
We don't need to potentially heap-allocate a std::string instance here,
given the data is known ahead of time. We can just place it within an
array and pass this to the mbedtls functions.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We can just compare the existing std::vector instance with a constexpr
std::array containing the desired match. This is lighter resource-wise,
as we don't need to allocate on the heap.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Makes the layout of the array consistent, by making all elements match,
instead of special-casing the first one.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Adds missing includes to prevent potential compilation issues in the
future. Also moves the definition of a struct into the cpp file, so that
some includes don't need to be introduced within the header.
|
|/ / /
| | |
| | |
| | |
| | | |
We don't need to make a copy of the read data, so we can std::move it
into the make_shared call here.
|
|\ \ \
| | | |
| | | | |
fsmitm_romfsbuild: Add support for stubbing and IPS patches in LFS
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
ips_layer: Add support for IPSwitch executable patches
|
| | | |
| | | |
| | | | |
Specifically bugs/crashes that arise when putting them in positions that are legal but not typical, such as midline, between patch data, or between patch records.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
More accurately follows IPSwitch specification.
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Fixed assertion due to CountAddOnContent & Casting warnings
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
Word count should be 3 since we're pushing a result code and a u32.
Also fixed up compiler warnings due to casting
|
|\ \ \
| | | |
| | | | |
Unmapping an unmapped buffer should succeed
|
| |/ /
| | |
| | |
| | | |
Hardware tests show that trying to unmap an unmapped buffer already should always succeed. Hardware test was tested up to 32 iterations of attempting to unmap
|
| | | |
|
| | |
| | |
| | |
| | | |
Uses -p (--program) and following string as args.
|
| | | |
|
|/ /
| |
| |
| | |
Only added if arguments string is non-empty and a pass is requested by loader.
|
|\ \
| | |
| | | |
loader: Add support for packed updates
|
| | | |
|
| | |
| | |
| | |
| | | |
Reads as Update (NSP) in add-ons
|
| | |
| | |
| | |
| | | |
Will prefer any installed update over the packed version.
|
| | |
| | |
| | |
| | | |
Reads the update included with the game if it has one and adds the new ErrorNoPackedUpdate status.
|
| |/
| |
| |
| | |
Fixes errors with certain updates
|
|\ \
| | |
| | | |
Ported #4296 from citra
|
| | | |
|
| | |
| | |
| | |
| | | |
This will allow us to easily remove the use of "NFC" in "System"
|
|\ \ \
| |/ /
|/| | |
Port web_service from Citra
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This was the result of a typo accidentally introduced in
e51d715700a35a8f14e5b804b6f7553c9a40888b. This restores the previous
correct behavior.
The behavior with the reference was incorrect and would cause some games
to fail to boot.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conceptually, it doesn't make sense for a thread to be able to persist
the lifetime of a scheduler. A scheduler should be taking care of the
threads; the threads should not be taking care of the scheduler.
If the threads outlive the scheduler (or we simply don't actually
terminate/shutdown the threads), then it should be considered a bug
that we need to fix.
Attributing this to balika011, as they opened #1317 to attempt to fix
this in a similar way, but my refactoring of the kernel code caused
quite a few conflicts.
|
|\ \ \
| |_|/
|/| | |
kernel/thread: Make all instance variables private
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Many of the member variables of the thread class aren't even used
outside of the class itself, so there's no need to make those variables
public. This change follows in the steps of the previous changes that
made other kernel types' members private.
The main motivation behind this is that the Thread class will likely
change in the future as emulation becomes more accurate, and letting
random bits of the emulator access data members of the Thread class
directly makes it a pain to shuffle around and/or modify internals.
Having all data members public like this also makes it difficult to
reason about certain bits of behavior without first verifying what parts
of the core actually use them.
Everything being public also generally follows the tendency for changes
to be introduced in completely different translation units that would
otherwise be better introduced as an addition to the Thread class'
public interface.
|
|\ \ \
| | | |
| | | | |
file_sys: Add support for loading IPS patches
|
| | | |
| | | |
| | | |
| | | | |
Avoid resource-heavy classes and remove quasi-duplicated code.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
While PatchExeFS operated on the entire directory, this function operates on the uncompressed NSO. Avoids copying decompression code to PatchManager.
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
aoc_u: Fix edge case with DLC that causes breaks
|
| |/ /
| | |
| | |
| | | |
In some games (Splatoon 2 and Splatoon 2 Splatfest World Premiere, notably), pass offset=0 and count=2047 into the ListAddOnContent method which should return all DLCs for the current title. The (presumably) intended behavior is to successfully return a empty array but because of a < v. <= in an if statement, a failure error code was returned causing these games to svcBreak. This fixes that if statement.
|
|\ \ \
| | | |
| | | | |
services/fsp_srv: Amend service function table
|
| | |/
| |/|
| | |
| | |
| | | |
Adds new functions that have been given names to the table. Information
is based off what is provided on Switchbrew.
|
|\ \ \
| | | |
| | | | |
submission_package: Cleanup and bug fixes
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
GetName() returns a std::string by value, not by reference, so after the
std::string_view is constructed, it's not well defined to actually
execute any member functions of std::string_view that attempt to access
the data, as the std::string has already been destroyed. Instead, we can
just use a std::string and erase the last four characters.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
If a ticket file was ever a null pointer, we'd cause a null pointer
dereference, as we were calling GetExtension() on the pointer instance.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When searching for a file extension, it's generally preferable to begin
the search at the end of the string rather than the beginning, as the
whole string isn't going to be walked just to check for something at the
end of it.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
If an error occurs when constructing the PartitionFilesystem instance,
the constructor would be exited early, which wouldn't initialize the
extracted data member, making it possible for other code to perform an
uninitialized read by calling the public IsExtractedType() member
function. This prevents that.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Like the other two bits of factored out code, this can also be put
within its own function. We can also modify the code so that it accepts
a const reference to a std::vector of files, this way, we can
deduplicate the file retrieval.
Now the constructor for NSP isn't a combination of multiple behaviors in
one spot. It's nice and separate.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This too, is completely separate behavior from what is in the
constructor, so we can move this to its own isolated function to keep
everything self-contained.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This behavior is entirely independent of the surrounding code, so it can
be put in its own function to keep the behavior separate.
|
| |/ /
| | |
| | |
| | | |
We can use early continues here to reduce the amount of nesting.
|
|\ \ \
| | | |
| | | | |
service/lbl: Update service function table
|
| | |/
| |/|
| | |
| | |
| | | |
Amends the lbl service table to include new names of functions that were
added to Switchbrew.
|
|\ \ \
| |/ /
|/| | |
card_image: Ensure program_nca_status is always initialized
|
| |/
| |
| |
| |
| |
| | |
If any of the error paths before the NCA retrieval are taken, it'll
result in program_nca_status being left in an inconsistent state. So we
initialize it by default with a value indicating an error.
|
| | |
|
| |
| |
| | |
Command #5
|
| |
| |
| |
| | |
Commands #2, #3, and #7
|
| |
| |
| |
| | |
Previous behavior was to assert. Seems to mirror expected game behavior.
|
|/ |
|
|\
| |
| | |
Implement ISystemDisplayService::GetDisplayMode
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Now that we have all of the rearranging and proper structure sizes in
place, it's fairly trivial to implement svcGetThreadContext(). In the
64-bit case we can more or less just write out the context as is, minus
some minor value sanitizing. In the 32-bit case we'll need to clear out
the registers that wouldn't normally be accessible from a 32-bit
AArch32 exectuable (or process).
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This will be necessary for the implementation of svcGetThreadContext(),
as the kernel checks whether or not the process that owns the thread
that has it context being retrieved is a 64-bit or 32-bit process.
If the process is 32-bit, then the upper 15 general-purpose registers
and upper 16 vector registers are cleared to zero (as AArch32 only has
15 GPRs and 16 128-bit vector registers. not 31 general-purpose
registers and 32 128-bit vector registers like AArch64).
|
| |
| |
| |
| |
| |
| |
| | |
Makes the public interface consistent in terms of how accesses are done
on a process object. It also makes it slightly nicer to reason about the
logic of the process class, as we don't want to expose everything to
external code.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Internally within the kernel, it also includes a member variable for the
floating-point status register, and TPIDR, so we should do the same here to match
it.
While we're at it, also fix up the size of the struct and add a static
assertion to ensure it always stays the correct size.
|
| |
| |
| |
| |
| |
| |
| |
| | |
A process should never require being reference counted in this
situation. If the handle to a process is freed before this function is
called, it's definitely a bug with our lifetime management, so we can
put the requirement in place for the API that the process must be a
valid instance.
|
|\ \
| | |
| | | |
kernel/object: Remove unnecessary std::move from DynamicObjectCast()
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
boost::static_pointer_cast for boost::intrusive_ptr (what SharedPtr is),
takes its parameter by const reference. Given that, it means that this
std::move doesn't actually do anything other than obscure what the
function's actual behavior is, so we can remove this. To clarify, this
would only do something if the parameter was either taking its argument
by value, by non-const ref, or by rvalue-reference.
|
|\ \ \
| | | |
| | | | |
process/vm_manager: Initial modifications to load NPDM metadata
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The locations of these can actually vary depending on the address space
layout, so we shouldn't be using these when determining where to map
memory or be using them as offsets for calculations. This keeps all the
memory ranges flexible and malleable based off of the virtual memory
manager instance state.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously, these were reporting hardcoded values, but given the regions
can change depending on the requested address spaces, these need to
report the values that the memory manager contains.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given games can also request a 32-bit or 39-bit address space, we
shouldn't be hardcoding the address space range as 36-bit.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Rather than hard-code the address range to be 36-bit, we can derive the
parameters from supplied NPDM metadata if the supplied exectuable
supports it. This is the bare minimum necessary for this to be possible.
The following commits will rework the memory code further to adjust to
this.
|
|\ \ \ \
| |_|/ /
|/| | | |
stream: Preserve enum class type in GetState()
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Preserves the meaning/type-safetiness of the stream state instead of
making it an opaque u32. This makes it usable for other things outside
of the service HLE context.
|
|\ \ \
| | | |
| | | | |
FPCR register was uninitialized at start up
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoids making copies of large std::vector instances where it's trivially
avoidable to do so.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Theres no need to do explicit bitwise arithmetic here, when we have a
function that does this with a more descriptive name.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/scheduler: Take ARM_Interface instances by reference
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is only exposed by reference, so we can just make it a unique
pointer to get rid of the need to also use reference counting for the
pointer.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
It doesn't make sense to allow a scheduler to be constructed around a
null pointer.
|
|\ \ \ \
| | | | |
| | | | | |
service: Add missing headers inclusions where applicable
|
| | | | |
| | | | |
| | | | |
| | | | | |
Gets rid of a few indirect inclusions.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids the need to nest code quite a bit by early-exiting in error
cases.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Orders the initializer list members to be in the same order that they
would be initialized in. Avoids compiler warnings.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Cast where explicitly necessary and in other cases we can simply modify
the algorithm to accomodate larger data.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There's no need to duplicate in-class initializers with a constructor
initializer list. std::strings also initialize to empty by default.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The std::vector instances are already initially allocated with all
entries having these values, there's no need to loop through and fill
them with it again when they aren't modified.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
auto x = 0;
auto-deduces x to be an int. This is undesirable when working with
unsigned values. It also causes sign conversion warnings. Instead, we
can make it a proper unsigned value with the correct width that the
following expressions operate on.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Given we just recently had a patch backport this from citra, let's try
and keep the convention uniform.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Given these are only added to the class to allow those functions to
access the private constructor, it's a better approach to just make them
static functions in the interface, to make the dependency explicit.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This converts it into a regular constructor parameter. There's no need
to make this a template parameter on the class when it functions
perfectly well as a constructor argument.
This also reduces the amount of code bloat produced by the compiler, as
it doesn't need to generate the same code for multiple different
instantiations of the same class type, but with a different fill value.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
file_sys: Add support for LayeredFS mods
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Reads multiple dirs through as if a waterfall.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Maps a vector into the VFS interface.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Always returns the template argument byte for all reads. Doesn't support writes.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Maps name string to directory or file.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
svc: Updated svc names
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Implemented fatal:u properly
fatal:u now is properly implemented with all the ipc cmds. Error reports/Crash reports are also now implemented for fatal:u. Crash reports save to yuzu/logs/crash_reports/
The register dump is currently known as sysmodules send all zeros. If there are any non zero values for the "registers" or the unknown values, let me know!
* Fatal:U fixups
* Made fatal:u execution break more clear
* Fatal fixups
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Stubbed IRS
Currently we have no ideal way of implementing IRS. For the time being we should have the functions stubbed until we come up with a way to emulate IRS properly.
* Added IRS to logging backend
* Forward declared shared memory for irs
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
Corrected SSL::SetInterfaceVersion
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Should be a single u32
|
| |_|_|/ /
|/| | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Reduces the use of Process class members externally and keeps most code
related to tearing down a process with the rest of the process code.
|
| |_|/ /
|/| | |
| | | |
| | | |
| | | |
| | | | |
Allows making several members of the process class private, it also
avoids going through Core::CurrentProcess() just to retrieve the owning
process.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Added support for uncompressed NSOs
* Moved compressed section check to NsoHeader
|
|\ \ \ \
| | | | |
| | | | | |
kernel/thread: Use owner_process when setting the page table in SetupMainThread()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The owning process of a thread is required to exist before the thread,
so we can enforce this API-wise by using a reference. We can also avoid
the reliance on the system instance by using that parameter to access
the page table that needs to be set.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
arm_interface: Replace kernel vm_manager include with a forward declaration
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids an unnecessary inclusion and also uncovers three places where
indirect inclusions were relied upon, which allows us to also resolve
those.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file-sys: Default heavy-weight class destructors in the cpp file
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Several classes have a lot of non-trivial members within them, or don't
but likely should have the destructor defaulted in the cpp file for
future-proofing/being more friendly to forward declarations.
Leaving the destructor unspecified allows the compiler to inline the
destruction code all over the place, which is generally undesirable from
a code bloat perspective.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Added IRequest::Submit
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This fixes updated versions of SMO. Currently unable to test as I don't have an updated version
|
| |_|/ / /
|/| | | |
| | | | |
| | | | | |
Even though setting this value to 3 is more correct. We break more games than we fix due to missing implementations. We should keep this as 0 for the time being
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Correct endianness of BRK
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
externals: Update dynarmic to 171d116
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
savedata_factory: Add TemporaryStorage SaveDataType
|
| | |_|/
| |/| |
| | | | |
Seems to be used by NSO NES Emulator
|
|\ \ \ \
| | | | |
| | | | | |
control_metadata: Move language name array definition to the cpp file
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There's no need to indent the code here, given the if case contains a
return statement at the end of it.
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | | |
This was used in two different translation units
(deconstructed_rom_directory and patch_manager). This means we'd be
pointlessly duplicating the whole array twice due to it being defined
within the header.
|
|\ \ \ \
| | | | |
| | | | | |
xts_archive/nax: Minor interface changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These variables aren't used, which still has an impact, as std::vector
cannot be optimized away by the compiler (it's constructor and
destructor are both non-trivial), so this was just wasting memory.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
std::shared_ptr isn't strictly necessary here and is only ever used in
contexts where the object doesn't depend on being shared. This also
makes the interface more flexible, as it's possible to create a
std::shared_ptr from a std::unique_ptr (std::shared_ptr has a
constructor that accepts a std::unique_ptr), but not the other way
around.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
An instance of the NAX apploader already has an existing NAX instance in
memory. Calling directly into IdentifyType() directly would re-parse the
whole file again into yet another NAX instance, only to toss it away
again.
This gets rid of unnecessary/redundant file parsing and allocations.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
AsNCA() allocates an NCA instance every time it's called. In the current
manner it's used, it's quite inefficient as it's making a redundant
allocation.
We can just amend the order of the conditionals to make it easier to
just call it once.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Ensures that the member always has a deterministic value.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Orders the initializer list in the same order the members would be
initialized. Avoids compiler warnings.
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
Needed because of the recent nim fixes
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Reworked incorrect nifm stubs
Need confirmation on `CreateTemporaryNetworkProfile`, unsure which game uses it but according to reversing. It should return a uuid which we currently don't do.
Any 0 client id is considered an invalid client id.
GetRequestState 0 is considered invalid.
* Fixups for nifm
|
|\ \ \
| | | |
| | | | |
Fixed GetAccountId stub, Added error code for OpenDirectory and added ActivateNpadWithRevision
|
| | |/
| |/|
| | |
| | | |
With these, `Nintendo Entertainment System - Nintendo Switch Online` loads
|
| | | |
|
|/ /
| |
| |
| | |
Due to keeping the code style consistent in the yuzu codebase. `rb = rp.MakeBuilder(...)` was replaced with `rb{ctx, ...}`
|
|\ \
| | |
| | | |
Implemented IProfile::GetImageSize
|
| | | |
|
|\ \ \
| | | |
| | | | |
Implemented GetDefaultDisplayResolution
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
core/core_cpu: Replace exclusive monitor include with forward declaration
|
| |/ /
| | |
| | |
| | |
| | | |
We don't need to include this as a dependency within the header. A
regular forward declaration will suffice here.
|
|\ \ \
| | | |
| | | | |
svc_wrap: Convert the PARAM macro into a function
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
This can just be a regular function, getting rid of the need to also
explicitly undef the define at the end of the file. Given FuncReturn()
was already converted into a function, it's #undef can also be removed.
|
|\ \ \
| | | |
| | | | |
Stubbed ActivateConsoleSixAxisSensor & StartConsoleSixAxisSensor
|
| | | | |
|
| | | | |
|
| |/ / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Fix bug where default username value for yuzu_cmd create an userprofile with uninitialize data as username
* Fix format
* Apply code review changes
* Remove nullptr check
|
|\ \ \
| | | |
| | | | |
kernel/svc: Handle invalid address cases within svcArbitrateLock() and svcArbitrateUnlock()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We already have a ResultCode constant for the case of an invalid
address, so we can just use it instead of re-rolling that ResultCode
type.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The kernel does the equivalent of the following check before proceeding:
if (address + 0x8000000000 < 0x7FFFE00000) {
return ERR_INVALID_MEMORY_STATE;
}
which is essentially what our IsKernelVirtualAddress() function does. So
we should also be checking for this.
The kernel also checks if the given input addresses are 4-byte aligned,
however our Mutex::TryAcquire() and Mutex::Release() functions already
handle this, so we don't need to add code for this case.
|
|\ \ \
| | | |
| | | | |
arm_interface: Remove ARM11-isms from the CPU interface
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This modifies the CPU interface to more accurately match an
AArch64-supporting CPU as opposed to an ARM11 one. Two of the methods
don't even make sense to keep around for this interface, as Adv Simd is
used, rather than the VFP in the primary execution state. This is
essentially a modernization change that should have occurred from the
get-go.
|
|/ /
| |
| |
| |
| |
| | |
Previously the second half of the value being written would overwrite
the first half. Thankfully this wasn't a bug that was being encountered,
as the function is currently unused.
|
|\ \
| | |
| | | |
service/vi: Replace includes with forward declarations where applicable
|
| | | |
|
|\ \ \
| | | |
| | | | |
kernel/errors: Amend error code for ERR_NOT_FOUND
|
| |/ /
| | |
| | |
| | |
| | | |
This is the value returned by the kernel for svcConnectToNamedPort() if
the named port cannot be found.
|
|\ \ \
| | | |
| | | | |
services/sm: Amend error code constants
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Courtesy of @ogniK5377.
This also moves them into the cpp file and limits the visibility to
where they're directly used. It also gets rid of unused or duplicate
error codes.
|
|\ \ \
| | | |
| | | | |
kernel/svc: Handle a few error cases within memory-related functions
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The kernel caps the size limit of shared memory to 8589930496 bytes (or
(1GB - 512 bytes) * 8), so approximately 8GB, where every GB has a 512
byte sector taken off of it.
It also ensures the shared memory is created with either read or
read/write permissions for both permission types passed in, allowing the
remote permissions to also be set as "don't care".
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Part of the checking done by the kernel is to check if the given
address and size are 4KB aligned, as well as checking if the size isn't
zero. It also only allows mapping shared memory as readable or
read/write, but nothing else, and so we shouldn't allow mapping as
anything else either.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The kernel checks if the addresses and given size is 4KB aligned before
continuing onwards to map the memory.
|
| |/ /
| | |
| | |
| | |
| | | |
The kernel checks if the given size is a multiple of 2MB and <= to 4GB
before going ahead and attempting to allocate that much memory.
|
|\ \ \
| | | |
| | | | |
Port #4192 from Citra: "svc: change unknown to thread in CreateThread"
|
| | |/
| |/| |
|
|/ / |
|
|\ \
| | |
| | | |
kernel/thread: Include thread-related enums within the kernel namespace
|
| |/
| |
| |
| |
| |
| | |
Previously, these were sitting outside of the Kernel namespace, which
doesn't really make sense, given they're related to the Thread class
which is within the Kernel namespace.
|
|\ \
| | |
| | | |
service: Use nested namespace specifiers where applicable
|
| |/
| |
| |
| |
| |
| | |
There were a few places where nested namespace specifiers weren't being
used where they could be within the service code. This amends that to
make the namespacing a tiny bit more compact.
|
|\ \
| |/
|/| |
services/pl_u: Add missing Korean font to the fallback case for shared fonts
|
| |
| |
| |
| | |
Previously this wasn't using the Korean font at all.
|
|/ |
|
|\
| |
| | |
audio_core: Add audio stretching support
|
| | |
|
|\ \
| | |
| | | |
pl_u: Eliminate mutable file-scope state
|
| | |
| | |
| | |
| | |
| | | |
Converts the PL_U internals to use the PImpl idiom and makes the state
part of the Impl struct, eliminating mutable global/file state.
|
|\ \ \
| | | |
| | | | |
kernel/errors: Amend invalid thread priority and invalid processor ID error codes
|
| | | |
| | | |
| | | |
| | | | |
This is what the kernel does for an out-of-range processor ID.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
While unlikely, it does avoid constructing a std::string and
unnecessarily calling into the memory code if a game or executable
decides to be really silly about their logging.
|
|/ / /
| | |
| | |
| | | |
This should be a u64 to represent size.
|
|\ \ \
| | | |
| | | | |
service/prepo: Move class into the cpp file
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
This doesn't need to be exposed within the header and be kept in the
translation unit, eliminating the need to include anything within the
header.
|
|/ /
| |
| |
| |
| | |
A few headers were including other headers when a forward declaration
can be used instead, allowing the include to be moved to the cpp file.
|
|\ \
| | |
| | | |
hle/service: Default constructors and destructors in the cpp file where applicable
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When a destructor isn't defaulted into a cpp file, it can cause the use
of forward declarations to seemingly fail to compile for non-obvious
reasons. It also allows inlining of the construction/destruction logic
all over the place where a constructor or destructor is invoked, which
can lead to code bloat. This isn't so much a worry here, given the
services won't be created and destroyed frequently.
The cause of the above mentioned non-obvious errors can be demonstrated
as follows:
------- Demonstrative example, if you know how the described error happens, skip forwards -------
Assume we have the following in the header, which we'll call "thing.h":
\#include <memory>
// Forward declaration. For example purposes, assume the definition
// of Object is in some header named "object.h"
class Object;
class Thing {
public:
// assume no constructors or destructors are specified here,
// or the constructors/destructors are defined as:
//
// Thing() = default;
// ~Thing() = default;
//
// ... Some interface member functions would be defined here
private:
std::shared_ptr<Object> obj;
};
If this header is included in a cpp file, (which we'll call "main.cpp"),
this will result in a compilation error, because even though no
destructor is specified, the destructor will still need to be generated by
the compiler because std::shared_ptr's destructor is *not* trivial (in
other words, it does something other than nothing), as std::shared_ptr's
destructor needs to do two things:
1. Decrement the shared reference count of the object being pointed to,
and if the reference count decrements to zero,
2. Free the Object instance's memory (aka deallocate the memory it's
pointing to).
And so the compiler generates the code for the destructor doing this inside main.cpp.
Now, keep in mind, the Object forward declaration is not a complete type. All it
does is tell the compiler "a type named Object exists" and allows us to
use the name in certain situations to avoid a header dependency. So the
compiler needs to generate destruction code for Object, but the compiler
doesn't know *how* to destruct it. A forward declaration doesn't tell
the compiler anything about Object's constructor or destructor. So, the
compiler will issue an error in this case because it's undefined
behavior to try and deallocate (or construct) an incomplete type and
std::shared_ptr and std::unique_ptr make sure this isn't the case
internally.
Now, if we had defaulted the destructor in "thing.cpp", where we also
include "object.h", this would never be an issue, as the destructor
would only have its code generated in one place, and it would be in a
place where the full class definition of Object would be visible to the
compiler.
---------------------- End example ----------------------------
Given these service classes are more than certainly going to change in
the future, this defaults the constructors and destructors into the
relevant cpp files to make the construction and destruction of all of
the services consistent and unlikely to run into cases where forward
declarations are indirectly causing compilation errors. It also has the
plus of avoiding the need to rebuild several services if destruction
logic changes, since it would only be necessary to recompile the single
cpp file.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This places the font data within cpp files, which mitigates the
possibility of the font data being duplicated within the binary if it's
referred to in more than one translation unit in the future. It also
stores the data within a std::array, which is more flexible when it
comes to operating with the standard library.
Furthermore, it makes the data arrays const. This is what we want, as it
allows the compiler to store the data within the read-only segment. As
it is, having several large sections of mutable data like this just
leaves spots in memory that we can accidentally write to (via accidental
overruns, what have you) and actually have it work. This ensures the
font data remains the same no matter what.
|
| |
| |
| |
| |
| |
| | |
* Add open-source shared fonts
* Address review comments
|
| |
| |
| |
| | |
This moves the hot loop into video_core. This refactoring shall reduce the CPU overhead of calling ProcessCommandList.
|
|\ \
| | |
| | | |
hid: Implement ReloadInputDevices
|
| |/ |
|
|/
|
|
|
| |
With the named port functionality all migrated over to the kernel,
there's no need to keep this around anymore.
|
|
|
|
|
|
|
|
|
|
| |
Given we now have the kernel as a class, it doesn't make sense to keep
the current process pointer within the System class, as processes are
related to the kernel.
This also gets rid of a subtle case where memory wouldn't be freed on
core shutdown, as the current_process pointer would never be reset,
causing the pointed to contents to continue to live.
|
|\
| |
| | |
file_sys/{nca_patch, patch_manager}: Amend unnecessary/missing includes.
|
| |
| |
| |
| |
| |
| | |
Orders the elements in the initializer list in the order they're
specified in the class. This prevents compiler warnings about
initialization order.
|
| |
| |
| |
| |
| | |
romfs.h doesn't need to be included in the header, the only real
dependency here is common's swap.h that needs to be included.
|
| |
| |
| |
| | |
These includes were previously being satisfied indirectly.
|
|/
|
|
|
|
|
|
|
|
| |
The only reason this include was necessary, was because the constructor
wasn't defaulted in the cpp file and the compiler would inline it
wherever it was used. However, given Controller is forward declared, all
those inlined constructors would see an incomplete type, causing a
compilation failure. So, we just place the constructor in the cpp file,
where it can see the complete type definition, allowing us to remove
this include.
|
|\
| |
| | |
file_sys/submission_package: Replace includes with forward declarations where applicable
|
| |
| |
| |
| |
| | |
Orders the elements in the sequence to match the order in which they'll
actually be initialized in.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Now display correct error instead of catch-all MissingProgramNCA
|
| | |
|
| | |
|
| |
| |
| |
| | |
Fixes base game read errors
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Right now only includes Updates, but should eventually contain all of the other patches we need.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Aggregates multiple caches into one interface
|
| |
| |
| |
| | |
Reduces code
|
|/
|
|
| |
Issues with block size are fixed by making all reads minimum length of 0x10
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Eliminated duplicate code and adds support for Rev1+ carts
|
| |
|
|
|
|
| |
Previously only loaded from control metadata
|
| |
|
| |
|
|\
| |
| | |
Optimizations
|
| |
| |
| |
| | |
This helper is called very often. The memory ownership shall not be transfered, so just return the raw pointer.
|
|\ \
| | |
| | | |
file_sys: Allow for custom NAND/SD directories
|
| | | |
|
|\ \ \
| | | |
| | | | |
file_sys: Replace includes with forward declarations where applicable
|
| | |/
| |/|
| | |
| | |
| | | |
Cuts down on include dependencies, resulting in less files that need to
be rebuilt when certain things are changed.
|
|\ \ \
| | | |
| | | | |
Update microprofile scopes.
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Blame the subsystems which deserve the blame :)
The updated list is not complete, just the ones I've spotted on random sampling the stack trace.
|
|\ \ \
| |/ /
|/| | |
ssl: Move SSL class to cpp file
|
| | |
| | |
| | |
| | |
| | |
| | | |
This isn't required to be visible to anything outside of the main source
file, and will eliminate needing to rebuild anything else including the
header if the SSL class needs to be changed in the future.
|
|\ \ \
| | | |
| | | | |
service: Migrate global named port map to the KernelCore class
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
Now that we have a class representing the kernel in some capacity, we
now have a place to put the named port map, so we move it over and get
rid of another piece of global state within the core.
|
|/ /
| |
| |
| |
| |
| | |
Eliminates the need to rebuild some source files if the file_util header
ever changes. This also uncovered some indirect inclusions, which have
also been fixed.
|
|\ \
| | |
| | | |
filesystem/maxwell_3d: Various changes to boot Project Octopath Traveller
|
| | | |
|
| |/ |
|
|/
|
|
|
| |
We don't need to do the lookup if the path is considered empty
currently.
|
|
|
|
|
|
|
|
|
|
|
| |
The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which
replaces most of the includes in the core header with forward declarations.
This makes it so that if any of the headers the core header was
previously including change, then no one will need to rebuild the bulk
of the core, due to core.h being quite a prevalent inclusion.
This should make turnaround for changes much faster for developers.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
core.h is kind of a massive header in terms what it includes within
itself. It includes VFS utilities, kernel headers, file_sys header,
ARM-related headers, etc. This means that changing anything in the
headers included by core.h essentially requires you to rebuild almost
all of core.
Instead, we can modify the System class to use the PImpl idiom, which
allows us to move all of those headers to the cpp file and forward
declare the bulk of the types that would otherwise be included, reducing
compile times. This change specifically only performs the PImpl portion.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As means to pave the way for getting rid of global state within core,
This eliminates kernel global state by removing all globals. Instead
this introduces a KernelCore class which acts as a kernel instance. This
instance lives in the System class, which keeps its lifetime contained
to the lifetime of the System class.
This also forces the kernel types to actually interact with the main
kernel instance itself instead of having transient kernel state placed
all over several translation units, keeping everything together. It also
has a nice consequence of making dependencies much more explicit.
This also makes our initialization a tad bit more correct. Previously we
were creating a kernel process before the actual kernel was initialized,
which doesn't really make much sense.
The KernelCore class itself follows the PImpl idiom, which allows
keeping all the implementation details sealed away from everything else,
which forces the use of the exposed API and allows us to avoid any
unnecessary inclusions within the main kernel header.
|
|\
| |
| | |
gpu: Make memory_manager private
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Makes the class interface consistent and provides accessors for
obtaining a reference to the memory manager instance.
Given we also return references, this makes our more flimsy uses of
const apparent, given const doesn't propagate through pointers in the
way one would typically expect. This makes our mutable state more
apparent in some places.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Many containers within the standard library provide different behaviors
based on whether or not a move constructor/assignment operator can be
guaranteed not to throw or not.
Notably, implementations will generally use std::move_if_noexcept (or an
internal implementation of it) to provide strong exception guarantees.
If a move constructor potentially throws (in other words, is not
noexcept), then certain behaviors will create copies, rather than moving
the values.
For example, consider std::vector. When a std::vector calls resize(),
there are two ways the elements can be relocated to the new block of
memory (if a reallocation happens), by copy, or by moving the existing
elements into the new block of memory. If a type does not have a
guarantee that it will not throw in the move constructor, a copy will
happen. However, if it can be guaranteed that the move constructor won't
throw, then the elements will be moved.
This just allows ResultVal to be moved instead of copied all the time if
ever used in conjunction with containers for whatever reason.
|
|\
| |
| | |
kernel/error: Amend several error codes
|
| |
| |
| |
| |
| |
| | |
We can make this error code an alias of the resource limit exceeded
error code, allowing us to get rid of the lingering 3DS error code of
the same type.
|
| |
| |
| |
| |
| | |
We can treat this as an alias of TooLarge for documentation purposes.
This also lets us get rid of another lingering 3DS-related error code.
|
| |
| |
| |
| |
| | |
This replaces the lingering 3DS constant with the proper one, and
utilizes it within HandleTable's Create() member function.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
vfs_real: Remove unused variable in CreateDirectoryRelative()
|
| |/ |
|
|\ \
| | |
| | | |
core: Namespace all code in the arm subdirectory under the Core namespace
|
| | |
| | |
| | |
| | | |
Gets all of these types and interfaces out of the global namespace.
|
|\ \ \
| | | |
| | | | |
registered_cache: Get rid of variable shadowing in ProcessFiles()
|
| | |/
| |/|
| | |
| | | |
Prevents compiler warnings.
|
|\ \ \
| | | |
| | | | |
svc: Return process title ID if queried in GetInfo()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We already have the variable itself set up to perform this task, so we
can just return its value from the currently executing process instead
of always stubbing it to zero.
|
|\ \ \ \
| | | | |
| | | | | |
debug_utils: Minor individual interface changes
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Quite a bit of these aren't necessary directly within the debug_utils
header and can be removed or included where actually necessary.
|
|\ \ \ \
| | | | |
| | | | | |
PL:U Added SharedFonts loading via TTF
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
By having the following TTF files in your yuzu sysdata directory. You can load sharedfonts via TTF files.
FontStandard.ttf
FontChineseSimplified.ttf
FontExtendedChineseSimplified.ttf
FontChineseTraditional.ttf
FontKorean.ttf
FontNintendoExtended.ttf
FontNintendoExtended2.ttf
|
|\ \ \ \ \
| | | | | |
| | | | | | |
hid: Move core include to cpp file
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
This isn't required to be in the header. Instead, directly include what
this header needs and move it to the cpp file where it belongs.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core: Remove always true conditionals in Load()
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
These conditions are always true, since the outer conditional already
checks for these conditions.
|
| |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Rightnow, in games use GetAvailableLanguageCodes(), there is a WriteBuffer() with size larger than the buffer_size. (Core Critical core\hle\kernel\hle_ipc.cpp:WriteBuffer:296: size (0000000000000088) is greater than buffer_size (0000000000000078))
0x88 = 17(languages) * 8
0x78 = 15(languages) * 8
GetAvailableLanguageCodes() can only support 15 languages.
After firmware 4.0.0 there are 17 supported language instead of 15, to enable this GetAvailableLanguageCodes2() need to be used.
So GetAvailableLanguageCodes() will be caped at 15 languages.
Reference:
http://switchbrew.org/index.php/Settings_services
|
|\ \ \ \
| |_|_|/
|/| | | |
filesystem: Fix typo in log message
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
file_sys: Add support for NAX archives
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This is needed because the title IDs of update NCAs will not use the update title ID. The only sure way to tell is to look for a partition with BKTR crypto.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
On call to WriteKeyToFile, so that the autogenerated file can be written.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Stored in a separate file than manual keys.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Should make key gets marginally faster.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Returns the file before calling parser on it.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Allows frontend to create registration caches for use before a game has booted.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
XTS with Nintendo Tweak will fail mysteriously if the sector size is not 0x4000. Upgrade the critical log to an assert to prevent undefined behavior.
|
| | | |
| | | |
| | | |
| | | | |
Fixes a bug where data lengths of less than size 0x10 will fail or have misleading return values.
|
| | |/
| |/|
| | |
| | | |
Prevents NCA-related errors from being masked into MissingProgramNCA or MissingKeyFile
|
|\ \ \
| |_|/
|/| | |
qt: Add filename and title id to window title while running
|
| |/ |
|
|/
|
|
|
|
|
|
| |
* Added GetBootMode
Used by homebrew
* Added enum for GetBootMode
|
|\
| |
| | |
qt/main: Port part of citra(#3411), open savedata works
|
| | |
|
|\ \
| | |
| | | |
Port #3353 from Citra: "citra-qt: Add customizable speed limit target "
|
| | | |
|
| | |
| | |
| | |
| | | |
Should fix any compile errors
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Added bfttf loading
We can now load system bfttf fonts from system archives AND shared memory dumps. This allows people who have installed their system nand dumps to yuzu to automatically get shared font support. We also now don't hard code the offsets or the sizes of the shared fonts and it's all calculated for us now.
* Addressed plu fixups
* Style changes for plu
* Fixed logic error for plu and added more error checks.
|
|\ \ \
| | | |
| | | | |
vfs: Replace mode.h include with forward declarations where applicable
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoids the need to rebuild these source files if the mode header
changes.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Gets rid of the potential for C array-to-pointer decay, and also makes
pointer arithmetic to get the end of the copy range unnecessary. We can
just use std::array's begin() and end() member functions.
|
|\ \ \
| | | |
| | | | |
sdmc_factory: Remove unnecessary core include
|
| | |/
| |/|
| | |
| | |
| | | |
This doesn't require the central core header to be included, it just
needs the vfs headers.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
25us is far too small, and would result in std::this_thread::sleep_for
being called with this as a maximum value. This means that a guest
application that produces frames instantly would only be limited to
40 kHz.
25ms is a more appropriate value, as it allows for a 60 Hz refresh
rate while providing enough slack in the negative region.
|
|\ \
| | |
| | | |
romfs_factory, service/filesystem: Use forward declarations where applicable
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids the need to rebuild multiple source files if the filesystem code
headers change.
This also gets rid of a few instances of indirect inclusions being
relied upon
|
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids the need to rebuild whatever includes the romfs factory header if
the loader header ever changes. We also don't need to include the main
core header. We can instead include the headers we specifically need.
|
|\ \ \
| | | |
| | | | |
telemetry_session: Don't allocate std::string instances for program lifetime in GetTelemetryId() and RegenerateTelemetryId()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Given these functions aren't intended to be used frequently, there's no
need to keep the std::string instances allocated for the whole lifetime
of the program. It's just a waste of memory.
|
|\ \ \ \
| |_|/ /
|/| | | |
acc/profile_manager: General cleanup
|
| | | |
| | | |
| | | |
| | | | |
This is only used in a shared_ptr, so we can forward declare it.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We have an overload of WriteBuffer that accepts containers that satisfy
the ContiguousContainer concept, which std::array does, so we only need
to pass in the array itself.
|
| | | |
| | | |
| | | |
| | | | |
Arranges them in the order the members would be initialized
|
| | | |
| | | |
| | | |
| | | | |
This is no longer used, so it can be removed.
|
| | | |
| | | |
| | | |
| | | | |
Makes it a little bit more self-documenting.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given the source and destination types are the same std::array type, we
can simply use regular assignment to perform the same behavior.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoids the need to repeatedly specify the whole array type in multiple
places.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
ProfileInfo is quite a large struct in terms of data, and we don't need
to perform a copy in these instances, so we can just pass constant
references instead.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This doesn't modify the passed in array, so this can be a const
reference.
|
| | | |
| | | |
| | | |
| | | | |
This can just be constexpr like the others
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We can use the constructor initializer list and just compare the
contained u128's together instead of comparing each element
individually. Ditto for comparing against an invalid UUID.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This avoids needing to dump the contents of <random> into other files
that include the profile manager header.
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
Moving a const reference isn't possible, so this just results in a copy
(and given ProfileInfo is composed of trivial types and aggregates, a
move wouldn't really do anything).
|
|\ \ \
| |_|/
|/| | |
filesystem: Add support for loading of system archives
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
common/telemetry: Migrate core-independent info gathering to common
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previously core itself was the library containing the code to gather
common information (build info, CPU info, and OS info), however all of
this isn't core-dependent and can be moved to the common code and use
the common interfaces. We can then just call those functions from the
core instead.
This will allow replacing our CPU detection with Xbyak's which has
better detection facilities than ours. It also keeps more
architecture-dependent code in common instead of core.
|
|\ \ \
| | | |
| | | | |
Added CheckFreeCommunicationPermission
|
| | |/
| |/|
| | |
| | | |
This fixes save files not loading in splatoon 2
|
|\ \ \
| |/ /
|/| | |
New account backend to allow for future extended support
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This commit verified working on puyo
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | | |
* Used by Mario Tennis Aces
|
|\ \ \ \
| | | | |
| | | | | |
core: Delete System copy/move constructors and assignment operators
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Prevents potentially making copies or doing silly things by accident
with the System instance, particularly given our current core is
designed (unfortunately) around one instantiable instance.
This will prevent the accidental case of:
auto instance = System::Instance();
being compiled without warning when it's supposed to be:
auto& instance = System::Instance();
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement GetDefaultDisplayResolutionChangeEvent
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Require by Toki Tori and Toki Tori 2+
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
dynarmic: Update to 550d662
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
550d662 load_store_exclusive: Define s == t state to be Constraint_NONE
0b69381 A64/translate: Allow for unpredictable behaviour to be defined
6d236d4 system: Implement MRS CNTFRQ_EL0
6cbb6fb A32/testenv: Add missing headers
6729328 externals: Update xbyak to v5.67
1812bd2 Squashed 'externals/xbyak/' changes from 2794cde7..671fc805
9a95802 externals: Document subtrees
714a840 A64: Implement SQ{ADD, SUB}, and UQ{ADD, SUB}'s vector variants
8cab459 A64: Implement UQADD/UQSUB's scalar variants
18a8151 ir: Add opcodes for unsigned saturating add and subtract
a5660ee x64/reg_alloc: Use type alias for array returned by GetArgumentInfo()
29489b5 ir/value: Use type alias CoprocessorInfo for std::array<u8, 8>
e23ba26 status_register_access: Add support for bits 0 and 1 of mask to MSR
55190bd fuzz_with_unicorn: Split utility functions into fuzz_util
23b049d A32/translate/load_store: Correct detection of writeback
7ec9f15 A32/translate: Add TranslateSingleInstruction
efeecb4 A32/ir_emitter: Bug fix: IREmitter::ExceptionRaised using incorrect opcode
08d1d19 A32/decoders: Split instruction list into include file
2d929cc tests: Refactor unicorn_emu to allow for A32 unicorn
f672368 microinstruction: Improve assert messages
7ebff50 emit_x64_vector: EmitVectorNarrow16: AVX512 implementation
edce230 emit_x64_vector: EmitVectorNarrow32: prefer pblendw to loading constant
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
common: Namespace hex_util.h/.cpp
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
It's in the common code, so it should be under the Common namespace like
everything else.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
loader/{nca, xci}: Remove unnecessary includes and unused member variables
|
| | | | | |
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Many of these aren't necessary and will cause this file to be required
to be recompiled whenever any changes to those files are made, which
lengthens compile times for no reason.
This also removes an unused metadata variable from AppLoader_XCI
|
|\ \ \ \
| | | | |
| | | | | |
file_sys: Add support for registration format
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fix logic in RealVfsFilesystem Create methods
Remove magic numbers
Fix regex errors
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Instead of defaulting to VfsRawCopy
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Prompts for title type on NCA files.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Manages NAND NCA get and install.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes bugs with calling CreateFile when the immediate directory does not exist.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Creates and stores RegisteredCaches for user and system NAND, as creation of a RegisteredCache is expensive.
|
| | | | |
| | | | |
| | | | |
| | | | | |
i.e. Load the concatenated 00+01 if 01 exists as well. Needed for split NAND NCAs.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Needed to avoid mismatch filetype warnings on split NAND NCAs
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Move to hex_util.h in common
|
|\ \ \ \ \
| | | | | |
| | | | | | |
lm: Handle threads and modules within the logger
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Using LOG_TRACE here isn't a good idea because LOG_TRACE is only enabled
when yuzu is compiled in debug mode. Debug mode is also quite slow, and
so we're potentially throwing away logging messages that can provide
value when trying to boot games.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The thread field serves to indicate which thread a log is related to and
provides the length of the thread's name, so we can print that out,
ditto for modules.
Now we can know what threads are potentially spawning off logging
messages (for example Lydie & Suelle bounces between MainThread and
LoadingThread when initializing the game).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
loader: Make ResultStatus directly compatible with fmt
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can make the enum class type compatible with fmt by providing an
overload of operator<<.
While we're at it, perform proper bounds checking. If something exceeds
the array, it should be a hard fail, because it's, without a doubt, a
programmer error in this case.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Core::CoreTiming: add UnscheduleEventThreadsafe
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
sm/controller: Correct return value of QueryPointerBufferSize
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
This should be returning a u16 according to Switch Brew.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allows querying the inverse of IsDomain() to make things more readable.
This will likely also be usable in the event of implementing
ConvertDomainToSession().
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
emu_window: Ensure WindowConfig members are always initialized
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Previously we weren't always initializing all members of the struct.
Prevents potentially wonky behavior from occurring.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
loader: Remove address mapping remnants from citra
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
These mappings are leftovers from citra and don't apply to the Switch.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/svc: Log svcBreak parameters
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given if we hit here all is lost, we should probably be logging the
break reason code and associated information to distinguish between the
causes.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
mm_u: Move interface class into the cpp file
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Ensures both variants go through the same interface, and while we're at
it, add Finalize to provide the inverse of Initialize for consistency.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Now if changes are ever made to the behavior of the class, it doesn't
involve rebuilding everything that includes the mm_u header.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
audout_u: Correct IAudioOut initializer list order
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Orders elements in the precise order they'll be initialized.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Added missing channel devices
|
| | | | | | |
|
| | | | | | |
|
| |/ / / /
|/| | | |
| | | | |
| | | | | |
No longer required. HaltExecution is a no-op if it is not currently executing.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
vfs: Use sanitized paths within MoveFile() and MoveDirectory()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously these were being unused (or partially unused). While we're at
it, use better naming to make it visibly obvious which variant of the
path is being used.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
card_image: Simplify return statement of GetSubdirectories()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We have the aliases, so we may as well use 'em.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We don't need to write out the construction long-form, we can just let
the language itself work it out off the return type.
|
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Despite being covered by a global mutex, we should still ensure that the
class handles its reference counts properly. This avoids potential
shenanigans when it comes to data races.
Given this is the root object that drives quite a bit of the kernel
object hierarchy, ensuring we always have the correct behavior (and no
races) is a good thing.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Use an approximated amortized amount of ticks when advancing timing.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We divide the number of ticks to add by the number of cores (4) to obtain a more or less rough estimate of the actual number of ticks added. This assumes that all 4 cores are doing similar work. Previously we were adding ~4 times the number of ticks, thus making the games think that time was going way too fast.
This lets us bypass certain hangs in some games like Breath of the Wild.
We should modify our CoreTiming to support multiple cores (both running in a single thread, and in multiple host threads).
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
The current core may have nothing to do with the core where the new thread was scheduled to run. In case it's the same core, then the following PrepareReshedule call will take care of that.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
scheduler: Make HaveReadyThreads() a const member function
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This function doesn't modify instance state, so the const qualifier can
be added to it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed a bunch of race conditions when running in multicore mode.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Another thread may write to this variable while the core in question is in the middle of checking for a reschedule request.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Another thread might be in the middle of an SVC, thus altering the state of the schedulers.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Another thread might be in the middle of a reschedule, thus altering the state of the schedulers.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
WakeAfterDelay might be called from any host thread, so err on the side of caution and use the thread-safe CoreTiming::ScheduleEventThreadsafe.
Note that CoreTiming is still far from thread-safe, there may be more things we have to work on for it to be up to par with what we want.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Kernel/Mutex: Don't duplicate threads in the mutex waiter list.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Exit from AddMutexWaiter early if the thread is already waiting for a mutex owned by the owner thread.
This accounts for the possibility of a thread that is waiting on a condition variable being awakened twice in a row.
Also added more validation asserts.
This should fix one of the random crashes in Breath Of The Wild.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Makes it consistent with the other VFS interfaces and prevents implicit
construction.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
struct should be used when the data type is very simple or otherwise has
no invariants associated with it. Given these are used to form a
hierarchy, class should be used instead.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed invalid cast in loader
|
| | | | | | |
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
GetMessageForResultStatus takes a u16, not a size_t.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GetAudioDeviceServiceWithRevisionInfo (Used by Bloodstained: Curse of the Moon)
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
As we're not handling any anything about the revision data for GetAudioDeviceServiceWithRevisionInfo, it's currently marked as stubbed. However for games this shouldn't affect the result. Proper revision info would be more for homebrew.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Added GetAudioRendererSampleRate, GetAudioRendererSampleCount & GetAudioRendererMixBufferCount
|
| | | | | | |
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
GetAudioRendererSampleRate is set as a "STUB" as a game could check if the sample rate it sent and the sample rate it wants don't match. Just a thought of something which could happen so keeping it as stub for the mean time
|
| | | | |
| | | | |
| | | | |
| | | | | |
Prevents clang-format from butchering them.
|
| |/ / /
|/| | |
| | | |
| | | | |
This is required by ARMS.
|
|/ / /
| | |
| | |
| | | |
Needed for Retro City Rampage to go in game
|
|\ \ \
| | | |
| | | | |
Several Friend service fixes
|
| | | |
| | | |
| | | |
| | | | |
- Used by Splatoon 2.
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
Gets the class out of the global namespace.
|
|\ \ \
| | | |
| | | | |
loader: Add more descriptive errors
|
| | |/
| |/|
| | | |
Full list of new errors and descriptions in core/loader/loader.h
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| | |
Instead, we make a struct for renderer settings and allow the renderer
to update all of these settings, getting rid of the need for
global-scoped variables.
This also uncovered a few indirect inclusions for certain headers, which
this commit also fixes.
|
|\ \
| | |
| | | |
core: Make function reference parameters const where applicable
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is simply copied by value, so there's no need to make it a
modifiable reference.
While we're at it, make the names of the parameters match its
definition.
|
| | |
| | |
| | |
| | |
| | | |
This function doesn't modify anything within the reference Thread
instance.
|
|\ \ \
| | | |
| | | | |
fsp_srv: Emplace entries first when building index instead of emplacing last
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Given elements inserted into a vector are zeroed out, we can just copy
MAX_LEN - 1 elements and the data will already be properly null
terminated.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The current way were doing it would require copying a 768 character
buffer (part of the Entry struct) to the new element in the vector.
Given it's a plain array, std::move won't eliminate that.
Instead, we can emplace an instance directly into the destination buffer
and then fill it out, avoiding the need to perform any unnecessary
copies.
Given this is done in a loop, we can request the destination to allocate
all of the necessary memory ahead of time, avoiding the need to
potentially keep reallocating over and over on every few insertions into
the vector.
|
|\ \ \ \
| |_|/ /
|/| | | |
vfs: Add VfsFilesystem and fix RealVfs* implementations
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Service/Account: stub LoadImage function
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
nvhost_gpu: Don't over copy IoctlSubmitGpfifo.
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
am: Stub SetScreenShotImageOrientation.
|
| |/ /
| | |
| | |
| | | |
- Used by Super Mario Odyssey.
|
|\ \ \
| | | |
| | | | |
Add Icons and Metadata Support
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
nvdrv: Get rid of global std::weak_ptr
|
| | |/
| |/|
| | |
| | |
| | | |
Rather than use global state, we can simply pass the instance into the
NVFlinger instance directly.
|
|\ \ \
| | | |
| | | | |
hle: Remove unused romfs.cpp/.h
|
| |/ /
| | |
| | |
| | | |
These files are no longer used, so we can get rid of them.
|
|\ \ \
| | | |
| | | | |
acc: Add missing function table entries for GetUserCount
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given this is stubbed within the common module in
5ac7b84, it should be added to the other relevant tables as well.
|
|/ / / |
|
|/ /
| |
| | |
- Used by Pokken Tournament DX.
|
|\ \
| | |
| | | |
content_archive: Add support for titlekey cryptography
|
| | | |
|
|\ \ \
| | | |
| | | | |
nvflinger: Correct typo in name of composition event
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
services/hid: Add ActivateNpadWithRevision() to the hid function info array
|
| |/ /
| | |
| | |
| | | |
Updated based off the information on Switch Brew.
|
|\ \ \
| | | |
| | | | |
service/apm: Add the apm:sys service
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the basic skeleton of the apm:sys service based off the information
on Switch Brew.
|
|\ \ \
| | | |
| | | | |
nvflinger: Use std::string_view in OpenDisplay()
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
We don't need to use a std::string here, given all that's done is
comparing the character sequence against another. This allows passing
regular const char* without needing to heap allocate.
|
|\ \ \
| | | |
| | | | |
service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()
|
| |/ /
| | |
| | |
| | | |
Updates the ID of these based off the information on Switch Brew.
|
|\ \ \
| | | |
| | | | |
nvdrv: Get rid of indirect inclusions
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The only reason this wasn't a compilation error is because we use
little-endian systems.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
service: Add usb services
|
| |/ /
| | |
| | |
| | | |
Adds basic skeleton for the usb services based off the information provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
client_port: Make all data members private
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These members don't need to be entirely exposed, we can instead expose
an API to operate on them without directly needing to mutate them
We can also guard against overflow/API misuse this way as well, given
active_sessions is an unsigned value.
|
|/ / |
|
|\ \
| | |
| | | |
loader: Make AppLoader_NCA rely on directory loading code
|
| | |
| | |
| | | |
Eliminates duplicate code shared between their Load methods, after all the only difference is how the romfs is handled.
|
| | |
| | |
| | |
| | |
| | |
| | | |
* GDBStub works with both Unicorn and Dynarmic now
* Tidy up
|
|\ \ \
| | | |
| | | | |
kernel/event: Make data members private
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Instead we can simply provide accessors to the required data instead of
giving external read/write access to the variables directly.
|
|\ \ \ \
| |/ / /
|/| | | |
core_timing: Make GetGlobalTimeUs() return std::chrono::microseconds
|
| | | |
| | | |
| | | |
| | | |
| | | | |
ms is shorthand for milliseconds, not microseconds, and given there's no
comment indicating that this was intentional, it probably wasn't.
|
| |/ /
| | |
| | |
| | |
| | | |
Enforces the time unit being returned and also allows using the standard
time utilities to manipulate it.
|
|\ \ \
| | | |
| | | | |
memory: Correct prototype of ZeroBlock
|
| | | |
| | | |
| | | |
| | | | |
Keeps the code consistent.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously, the prototype wasn't matching the definition, which has a
Processor parameter before the destination address.
|
| |/ /
| | |
| | |
| | |
| | | |
These aren't necessary, as value-wise const only matters in the
definition.
|
| | | |
|
|\ \ \
| | | |
| | | | |
core_timing: Use transparent functors where applicable
|
| | | |
| | | |
| | | |
| | | | |
Makes the alias a little more readable from left-to-right.
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Gets rid of the need to hardcode the type in multiple places. This will
now be deduced automatically, based off the elements in the container
being provided to the algorithm.
|
|\ \ \
| | | |
| | | | |
gdbstub: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Rather than having to type out the full std::map type signature, we can
just use a straightforward alias. While we're at it, rename
GetBreakpointList to GetBreakpointMap, which makes the name more
accurate. We can also get rid of unnecessary u64 static_casts, since
VAddr is an alias for a u64.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Keeps everything under the same namespace. While we're at it, enclose
them all within an inner anonymous namespace.
|
| | | |
| | | |
| | | |
| | | | |
In all cases, a virtual address is being passed in, not a physical one.
|
|\ \ \ \
| | | | |
| | | | | |
address_arbiter: Return by value from GetThreadsWaitingOnAddress()
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
In all cases the vector being supplied is empty, so we can just return
by value in these instances.
|
|\ \ \ \
| |_|/ /
|/| | | |
Implement audren audio output
|
| | | | |
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| |_|/
|/| | |
video_core: Eliminate the g_renderer global variable
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
All calling code assumes that the rasterizer will be in a valid state,
which is a totally fine assumption. The only way the rasterizer wouldn't
be is if initialization is done incorrectly or fails, which is checked
against in System::Init().
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We move the initialization of the renderer to the core class, while
keeping the creation of it and any other specifics in video_core. This
way we can ensure that the renderer is initialized and doesn't give
unfettered access to the renderer. This also makes dependencies on types
more explicit.
For example, the GPU class doesn't need to depend on the
existence of a renderer, it only needs to care about whether or not it
has a rasterizer, but since it was accessing the global variable, it was
also making the renderer a part of its dependency chain. By adjusting
the interface, we can get rid of this dependency.
|
|\ \ \
| | | |
| | | | |
service: Add arp services
|
| | |/
| |/|
| | |
| | |
| | | |
Adds the basic skeleton of the arp services based off the information
provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
core/crypto: Minor changes
|
| | | |
| | | |
| | | |
| | | | |
These functions should only be given trivially-copyable types.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This function doesn't directly depend on class state, so it can be
hidden entirely from the interface in the cpp file.
|
| | | |
| | | |
| | | |
| | | | |
This doesn't modify member state, so it can be made const.
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
The benefit of std::string_view comes from the idea of avoiding copies
(essentially acting as a non-owning view), however if we're just going
to copy into a local variable immediately, there's not much benefit
gained here.
|
|/ /
| |
| |
| |
| | |
These don't do anything within .cpp files (we don't include cpp files,
so...)
|
|\ \
| |/
|/| |
XCI and Encrypted NCA Support
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
memory: Remove unused GetSpecialHandlers() function
|
| | |
| | |
| | |
| | | |
This is just unused code, so we may as well get rid of it.
|
|\ \ \
| | | |
| | | | |
kernel/process: Use accessors instead of class members for referencing segment array
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
Using member variables for referencing the segments array increases the
size of the class in memory for little benefit. The same behavior can be
achieved through the use of accessors that just return the relevant
segment.
|
|/ /
| |
| |
| |
| |
| | |
This amends cases where crashes can occur that were missed due to the
odd way the previous code was set up (using 3DS memory regions that
don't exist).
|
|\ \
| | |
| | | |
core/memory: Get rid of 3DS leftovers
|
| | |
| | |
| | |
| | | |
Removes leftover code from citra that isn't needed.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
service: Add migration services
|
| | |
| | |
| | |
| | |
| | | |
Adds the basic skeleton for the mig:usr service based off information
provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
video_core: Make global EmuWindow instance part of the base renderer …
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Makes the global a member of the RendererBase class. We also change this
to be a reference. Passing any form of null pointer to these functions
is incorrect entirely, especially given the code itself assumes that the
pointer would always be in a valid state.
This also makes it easier to follow the lifecycle of instances being
used, as we explicitly interact the renderer with the rasterizer, rather
than it just operating on a global pointer.
|
|\ \ \ \
| | | | |
| | | | | |
kernel: Move object class to its own source files
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | | |
General moving to keep kernel object types separate from the direct
kernel code. Also essentially a preliminary cleanup before eliminating
global kernel state in the kernel code.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/thread: Minor changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids using a u32 to compare against a range of size_t, which can be a
source of warnings. While we're at it, compress a std::tie into a
structured binding.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This function only reads the data being referenced, it doesn't modify
it, so we can turn the reference into a const reference.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
This function isn't used outside of this translation unit, so we can
make it internally linked.
|
|\ \ \ \
| | | | |
| | | | | |
kernel/vm_manager: Minor changes
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Makes our immutable state explicit.
|
| |/ / /
| | | |
| | | |
| | | | |
These two variables correspond to address ranges.
|
|\ \ \ \
| | | | |
| | | | | |
vfs_vector: Minor changes
|
| | | | |
| | | | |
| | | | |
| | | | | |
This wasn't being used for anything, so it can be removed.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
The lambda elements should be taken by const reference here, and we can
move the virtual directory passed to ReplaceFileWithSubdirectory()
|
|\ \ \ \
| | | | |
| | | | | |
hw: Remove unused files
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
None of these files are used in any meaningful way. They're just
leftovers from citra. Also has the benefit of getting rid of an unused
global variable.
|
|\ \ \ \
| | | | |
| | | | | |
service/ns: Add missing ns services
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | | |
Implements the basic skeleton of ns:am2, ns:ec, ns:rid, ns:rt, ns:su,
ns:vm, and ns:web based off the information provided by Switch Brew and
SwIPC.
|
| |/ /
|/| |
| | |
| | |
| | | |
Adds the basic skeleton for the psc services based off the information
provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add capture services
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the basic skeleton for the capture services based off information
provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
lm: Amend name of ILogger
|
| |/ /
| | |
| | |
| | |
| | | |
Previously this was being registered with the name "Logger". While we're
at it, also change the name of the class to match it.
|
|\ \ \
| | | |
| | | | |
service/filesystem: Add fsp:ldr and fsp:pr services
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the basic skeleton for the remaining fsp services based off
information provided by Switch Brew.
|
|/ /
| |
| |
| |
| | |
Adds the basic skeleton for the remaining pcv-related services based off
information on Switch Brew.
|
|\ \
| |/
|/| |
kernel/thread: Remove unimplemented function prototype
|
| |
| |
| |
| |
| | |
Given there's no implementation, we may as well remove the code
entirely.
|
|\ \
| |/
|/| |
audio_core: Add configuration settings.
|
| | |
|
|\ \
| | |
| | | |
kernel: Remove unused object_address_table.cpp/.h
|
| | |
| | |
| | |
| | |
| | |
| | | |
These source files were entirely unused throughout the rest of the
codebase. This also has the benefit of getting rid of a global variable
as well.
|
|\ \ \
| |_|/
|/| | |
service/audio: Add missing services
|
| | |
| | |
| | |
| | |
| | | |
Adds the missing audctl service, as well as the :a and :d services for
audin, audout, audrec, and audren.
|
|\ \ \
| | | |
| | | | |
kernel: Remove unnecessary includes
|
| | |/
| |/|
| | |
| | |
| | | |
Removes unnecessary direct dependencies in some headers and also gets
rid of indirect dependencies that were being relied on to be included.
|
|\ \ \
| |_|/
|/| | |
audout_u: Remove std::move in OpenAudioOutImpl()
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previously the code was using the values from params further below after
it was std::moved. Thankfully, given AudoutParams is a trivially
copyable struct, the values would have simply been copied in this
instance and not invalidated to garbage values.
|
|\ \ \
| | | |
| | | | |
Corrected a few error cases detected by asan/ubsan
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Passing nullptr to memcpy is undefined behavior.
|
|\ \ \ \
| | | | |
| | | | | |
service: Add fgm services
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Adds the basic skeleton for the fgm services based off the information
provided by Switch Brew.
|
|\ \ \ \
| |_|_|/
|/| | | |
service/am: Add missing am services
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the basic skeleton for missing am services idle:sys, omm, and spsm
based off the information provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
arm_dynarmic: Correct initializer list order
|
| | | |
| | | |
| | | |
| | | | |
Makes the definition use the same type aliases as in its prototype.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given the ARM_Dynarmic class inherits from ARM_Interface, we don't need
to qualify here.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Amends the initializer list to be in the same order that each variable
would be initialized in. We also do this to ensure we don't use a bogus
uninitialized instance of the exclusive monitor within MakeJit()
We can also remove the jit member from the initializer list as this is
initialized by PageTableChanged()
|
|/ /
| |
| |
| |
| | |
Adds the basic skeleton of the pcie service based off information on
Switch Brew.
|
| |
| |
| |
| | |
- This is necessary so streams are created on the same thread.
|
| | |
|
|\ \
| | |
| | | |
partition_filesystem: Remove dynamic_cast in PrintDebugInfo()
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We shouldn't be upcasting our file instances. Given a
PartitionFilesystem is currently designed to accept any arbitrary
VfsFile instances, casting to a more specific type than that is just bad
design, and shows an interface design issue.
|
|\ \ \
| | | |
| | | | |
service: Add wlan services
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the basic skeleton for the wlan services based off the information
on Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add btm services
|
| | | |
| | | |
| | | |
| | | | |
Based off information on SwIPC and Switch Brew.
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the skeleton for the btm services based off the information on
Switch Brew.
|
|/ /
| |
| |
| |
| |
| | |
* Added some HID commands
* Addressed comments
|
|\ \
| | |
| | | |
service: Add ncm services
|
| | |
| | |
| | |
| | |
| | | |
Adds the basic skeleton for the ncm services based off information on
Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add mii services
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Adds the skeleton for the mii services based off information provided by
Switch Brew
|
|\ \ \ \
| | | | |
| | | | | |
Initial implementation of Audio Core
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
service: Add nfc services
|
| | | |
| | | |
| | | |
| | | | |
These simply return the respective interface.
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the skeleton of the nfc service based off the information provided
on Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add the lbl service
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Implements these functions according to the information available on
Switch Brew.
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the skeleton of the lbl service based off the information provided
by Switch Brew.
|
|\ \ \
| |/ /
|/| | |
service: Add the btdrv service
|
| | |
| | |
| | |
| | | |
Adds the skeleton for the btdrv service based off the information provided by Switch Brew
|
|\ \ \
| | | |
| | | | |
kernel/timer: Make data members private where applicable
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Instead, we can just expose functions that return the queryable state
instead of letting anything modify it.
|
| | | | |
|
| | | | |
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
service: Add the grc:c service
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the basic skeleton for the grc:c service based off the information
provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add the nim services
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the skeleton for the nim services based off information from Switch
Brew.
|
|\ \ \
| | | |
| | | | |
service: Add ldn services
|
| |/ /
| | |
| | |
| | | |
Adds ldn services based off information provided by Switch Brew.
|
|\ \ \
| |_|/
|/| | |
service/sockets: Add missing socket services
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
service/lm: Minor changes
|
| |
| |
| |
| |
| | |
This isn't used directly outside of this translation unit, so we can
hide it from external use.
|
| |
| |
| |
| | |
Amends these to match the information on Switch Brew.
|
| | |
|
|\ \
| | |
| | | |
service: Add ldr services
|
| | |
| | |
| | |
| | |
| | | |
Adds the skeleton for the ldr-related services based off the information
provided on Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add erpt and eupld services
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Adds the skeleton for the eupld services based off information on Switch
Brew.
|
| | |/
| |/|
| | |
| | |
| | | |
Adds the basic skeleton of the erpt service based off information on
Switch Brew.
|
|\ \ \
| |_|/
|/| | |
service/nifm: Deduplicate interface code
|
| | |
| | |
| | |
| | |
| | | |
Rather than having the same code for each nifm service variant, we can
centralize it on one class and get rid of a bit of extra code.
|
|\ \ \
| | | |
| | | | |
service/nvdrv: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoids copies from being made, since the string is only ever used for
lookup, the data is never transfered anywhere.
Ideally, we'd use a std::string_view here, but devices is a
std::unordered_map, not a std::map, so we can't use heterogenous lookup
here.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids unnecessary reference count increments and decrements.
In one case, we don't need to make a shared_ptr copy at all,
just to call a member function.
|
|\ \ \
| |_|/
|/| | |
service: Add pm services
|
| |/
| |
| |
| |
| | |
Adds the skeleton for the process management services based off
information on Switch Brew.
|
|/
|
|
|
| |
Adds the skeleton for the ETicket service based off the information on
Switch Brew
|
|\
| |
| | |
time: Add the time:a service
|
| |
| |
| |
| | |
Given we already have time:s and time:u, we should also have time:a
|
| |
| |
| |
| | |
We can use one instance of the interface instead of duplicating code.
|
|\ \
| | |
| | | |
svc: Log parameters in SetMemoryAttribute()
|
| | |
| | |
| | |
| | | |
Provides slightly more context than only logging out the address value.
|
|\ \ \
| | | |
| | | | |
core_timing: Split off utility functions into core_timing_util
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
set_sys: Implement SetColorSetId()
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
friend: Deduplicate interfaces
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Given we already have friend:a and friend:u, we should add the remaining
services as well.
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
svc: Resolve sign comparison warnings in WaitSynchronization()
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
The loop's induction variable was signed, but we were comparing against
an unsigned variable.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
arm_dynarmic: Make MakeJit() a const member function
|
| |/ /
| | |
| | |
| | |
| | | |
This functions doesn't modify instance state, so it can be a made a
const member function.
|
|\ \ \
| | | |
| | | | |
core: Make converting constructors explicit where applicable
|
| |/ /
| | |
| | |
| | |
| | | |
Avoids unwanted implicit conversions. Thankfully, given the large amount
of cleanup in past PRs, only this tiny amount is left over to cover.
|
|\ \ \
| | | |
| | | | |
apm/interface: Remove redundant declaration of InstallInterfaces()
|
| |/ /
| | |
| | |
| | | |
This is already declared in apm/apm.h
|
|\ \ \
| |_|/
|/| | |
mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference
|
| | |
| | |
| | |
| | |
| | | |
The pointed to thread's members are simply observed in this case, so we
don't need to copy it here.
|
|\ \ \
| | | |
| | | | |
ipc_helpers: Make member variables of ResponseBuilder private
|
| | | | |
|
| |/ /
| | |
| | |
| | | |
These aren't used externally at all, so they can be made private.
|
|\ \ \
| |_|/
|/| | |
partition_filesystem: Use std::move where applicable
|
| | |
| | |
| | |
| | |
| | | |
Avoids copying a std::string instance and avoids unnecessary atomic
reference count incrementing and decrementing.
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Regression and Mode Fixes
* Review Fixes
* string_view correction
* Add operator& for FileSys::Mode
* Return std::string from SanitizePath
* Farming Simulator Fix
* Use != With mode operator&
|
|\ \
| | |
| | | |
exclusive_monitor: Use consistent type alias for u64
|
| |/
| |
| |
| |
| | |
Uses the same type aliases we use for virtual addresses, and converts
one lingering usage of std::array<uint64_t, 2> to u128 for consistency.
|
|\ \
| | |
| | | |
loader: Minor cleanup
|
| |/
| |
| |
| |
| |
| | |
RealVfsFile inherits from VfsFile, the instance from std::make_shared is
already compatible with the function argument type, making the copy
constructor call unnecessary.
|
|\ \
| | |
| | | |
linker: Remove unused parameter from WriteRelocations()
|
| |/
| |
| |
| |
| | |
is_jump_relocation is never used within the function, so we can just
remove it.
|
|\ \
| | |
| | | |
loader/nro: Minor changes
|
| | |
| | |
| | |
| | |
| | | |
It's sufficient to use a forward declaration instead of a direct
inclusion here.
|
| | |
| | |
| | |
| | |
| | | |
Makes the code more uniform, and also braces cases where the body of an
unbraced conditional travels more than one line.
|
| | |
| | |
| | |
| | |
| | | |
Makes it consistent with the other Apploader constructors, and prevents
implicit conversions.
|
| |/
| |
| |
| | |
This isn't used anywhere in the header.
|
|\ \
| | |
| | | |
vi: Minor changes
|
| | |
| | |
| | |
| | |
| | |
| | | |
It's undefined behavior to memcpy an object that isn't considered
trivially copyable, so put a compile-time check in to make sure this
doesn't occur.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Allows avoiding unnecessary copies of the vector depending on the
calling code.
While we're at it, remove a redundant no-parameter base constructor call
|
|\ \ \
| |_|/
|/| | |
hle: Remove unused config_mem and shared_page source files
|
| | |
| | |
| | |
| | |
| | | |
This is just an unused hold-over from citra, so we can get rid of this
to trim off an exposed global, among other things.
|
| |/
| |
| |
| | |
This is a holdover from citra that's essentially unused.
|
|\ \
| | |
| | | |
NRO Assets and NACP File Format
|
| | |
| | |
| | |
| | |
| | |
| | | |
Cleanup
Review fixes
|
| |/
|/|
| |
| | |
Forgot to include this in 22f448b6327044076959e338811ee576f3dcf093
|
|\ \
| |/
|/| |
set: Amend return value of GetAvailableLanguageCodes()
|
| |
| |
| |
| | |
This just returns the size of the language code buffer.
|
| |
| |
| |
| | |
The return code should be 32-bit in size.
|
|\ \
| |/
|/| |
Kernel/SVC: Perform atomic accesses in SignalProcessWideKey as per the real kernel.
|
| | |
|
|\ \
| |/
|/| |
file_util, vfs: Use std::string_view where applicable
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
ReplaceFileWithSubdirectory() takes a VirtualFile and a VirtualDir, but
it was being passed a string as one of its arguments. The only reason
this never caused issues is because this template isn't instantiated
anywhere yet.
This corrects an issue before it occurs.
|
| |
| |
| |
| |
| | |
Avoids unnecessary construction of std::string instances where
applicable.
|
|/ |
|
|
|
|
|
| |
This avoids a truncating cast on size. I doubt we'd ever traverse a
directory this large, however we also shouldn't truncate sizes away.
|
|\
| |
| | |
file_util: Use an enum class for GetUserPath()
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Instead of using an unsigned int as a parameter and expecting a user to
always pass in the correct values, we can just convert the enum into an
enum class and use that type as the parameter type instead, which makes
the interface more type safe.
We also get rid of the bookkeeping "NUM_" element in the enum by just
using an unordered map. This function is generally low-frequency in
terms of calls (and I'd hope so, considering otherwise would mean we're
slamming the disk with IO all the time) so I'd consider this acceptable
in this case.
|
|/
|
|
|
| |
This behaves quite similarly to the SubmitGPFIFO command. Referenced from Ryujinx.
Many thanks to @gdkchan for investigating this!
|
|\
| |
| | |
partition_filesystem, vfs_real: Minor changes
|
| |
| |
| |
| |
| | |
We already return by value, so we don't explicitly need to make the
copy.
|
| | |
|
| |
| |
| |
| | |
Avoids unnecessary atomic increment and decrement operations.
|
| |
| |
| |
| | |
This is a little bit more self-documenting on what is being done here.
|
|\ \
| | |
| | | |
arm_interface: Remove unused tls_address member of ThreadContext
|
| |/
| |
| |
| |
| | |
Currently, the TLS address is set within the scheduler, making this
member unused.
|
|\ \
| | |
| | | |
file_sys/errors: Remove redundant object constructor calls
|
| |/
| |
| |
| |
| | |
Given we're already constructing the error code, we don't need to call
the constructor inside of it.
|
|\ \
| | |
| | | |
CPU: Save and restore the TPIDR_EL0 system register on every context switch
|
| | |
| | |
| | |
| | | |
Note that there's currently a dynarmic bug preventing this register from being written.
|
|\ \ \
| | | |
| | | | |
vfs: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
We can simply use std::clamp() here, instead of using an equivalent
with std::max() and std::min().
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given the data is intended to be directly written, there's no need to
take the std::vector by value and copy the data.
|
| | | |
| | | |
| | | |
| | | | |
Provides the same behavior, but with less writing
|
| | |/
| |/|
| | |
| | |
| | | |
These functions don't modify the data being pointed to, so these can be
pointers to const data
|
|\ \ \
| |/ /
|/| | |
Loader: Only print the module names and addresses if they actually exist.
|
| |/ |
|
|\ \
| | |
| | | |
apm: Improve stub for GetPerformanceConfiguration.
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Allows pushing strongly-typed enum members without the need to always
cast them at the call sites.
Note that we *only* allow strongly-typed enums in this case. The reason
for this is that strongly typed enums have a guaranteed defined size, so
the size of the data being pushed is always deterministic. With regular
enums this can be a little more error-prone, so we disallow them.
This function simply uses the underlying type of the enum to determine
the size of the data. For example, if an enum is defined as:
enum class SomeEnum : u16 {
SomeEntry
};
if PushEnum(SomeEnum::SomeEntry); is called, then it will push a
u16-size amount of data.
|
|\ \
| | |
| | | |
HLE/ACC: Stub IManagerForApplication::GetAccountId to return an error.
|
| |/
| |
| |
| |
| |
| | |
And make IManagerForApplication::CheckAvailability always return false.
Returning a bogus id from GetAccountId causes games to crash on boot.
We should investigate this with a hwtest and either stub it properly or implement it.
|
|\ \
| | |
| | | |
filesys/loader: std::move VirtualFile instances in constructors where applicable
|
| | |
| | |
| | |
| | | |
This avoids unnecessary atomic reference count increments and decrements
|
| | |
| | |
| | |
| | |
| | | |
Avoids potentially unnecessary atomic reference count incrementing and
decrementing, as well as string copying.
|
|\ \ \
| | | |
| | | | |
audout_u/audren_u: Ensure null terminators are written out in ListAudioOutsImpl(), ListAudioDeviceName(), and GetActiveAudioDeviceName()
|
| | | |
| | | |
| | | |
| | | |
| | | | |
std::string doesn't include the null-terminator in its data() + size()
range. This ensures that the null-terminator will also be written to the buffer
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Uses a type that doesn't potentially dynamically allocate, and ensures
that the name of the interface is properly null-terminated when writing
it to the buffer.
|
|\ \ \
| | | |
| | | | |
thread: Convert ThreadStatus into an enum class
|
| |/ /
| | |
| | |
| | |
| | | |
Makes the thread status strongly typed, so implicit conversions can't
happen. It also makes it easier to catch mistakes at compile time.
|
|\ \ \
| | | |
| | | | |
partition_filesystem: Return pfs_dirs member variable within GetSubdirectories()
|
| |/ /
| | |
| | |
| | |
| | | |
This should be returned here, otherwise pfs_dirs is effectively only
ever added to, but never read.
|
|\ \ \
| |_|/
|/| | |
nso: Minor changes
|
| | | |
|
| |/ |
|
|/
|
|
| |
With the new overload, we can simply pass the container directly.
|
|\
| |
| | |
hle_ipc: Introduce generic WriteBuffer overload for multiple container types
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This introduces a slightly more generic variant of WriteBuffer().
Notably, this variant doesn't constrain the arguments to only accepting
std::vector instances. It accepts whatever adheres to the
ContiguousContainer concept in the C++ standard library.
This essentially means, std::array, std::string, and std::vector can be
used directly with this interface. The interface no longer forces you to
solely use containers that dynamically allocate.
To ensure our overloads play nice with one another, we only enable the
container-based WriteBuffer if the argument is not a pointer, otherwise
we fall back to the pointer-based one.
|
|\ \
| | |
| | | |
pl_u: Specify correct size for buffers in GetSharedFontInOrderOfPriority()
|
| |/
| |
| |
| |
| | |
This WriteBuffer overload expects its size argument to be in bytes, not
elements.
|
|\ \
| | |
| | | |
HLE/ACC: Change the default user id and small improvements to the way we handle profiles
|
| | |
| | |
| | |
| | |
| | | |
The default username for now is "yuzu".
We should eventually allow the creation of users in the emulator and have the ability to modify their parameters.
|
| | |
| | |
| | |
| | | |
In IApplicationFunctions::PopLaunchParameter we tell the games that they were launched as user id 1.
|
|\ \ \
| | | |
| | | | |
HLE/ACC: Write a single whole user id in ListAllUsers and ListOpenUsers.
|
| |/ /
| | |
| | |
| | | |
We only emulate a single user id for now.
|
|\ \ \
| | | |
| | | | |
pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()
|
| | |/
| |/|
| | |
| | | |
This can just use the fmt specifiers and be type-agnostic.
|
|\ \ \
| | | |
| | | | |
gdbstub: Get rid of a few signed/unsigned comparisons
|
| | | |
| | | |
| | | |
| | | | |
Ensures both operands in comparisons are the same signedness.
|
|\ \ \ \
| | | | |
| | | | | |
hid: Resolve a signed/unsigned comparison warning
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Modernizes the loops themselves while also getting rid of a signed/unsigned
comparison in a loop condition.
|
| |/ / /
| | | |
| | | |
| | | | |
Gets rid of the use of a magic constant
|
|\ \ \ \
| | | | |
| | | | | |
svc: Correct always true assertion case in SetThreadCoreMask
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The reason this would never be true is that ideal_processor is a u8 and
THREADPROCESSORID_DEFAULT is an s32. In this case, it boils down to how
arithmetic conversions are performed before performing the comparison.
If an unsigned value has a lesser conversion rank (aka smaller size)
than the signed type being compared, then the unsigned value is promoted
to the signed value (i.e. u8 -> s32 happens before the comparison). No
sign-extension occurs here either.
An alternative phrasing:
Say we have a variable named core and it's given a value of -2.
u8 core = -2;
This becomes 254 due to the lack of sign. During integral promotion to
the signed type, this still remains as 254, and therefore the condition
will always be true, because no matter what value the u8 is given it
will never be -2 in terms of 32 bits.
Now, if one type was a s32 and one was a u32, this would be entirely
different, since they have the same bit width (and the signed type would
be converted to unsigned instead of the other way around) but would
still have its representation preserved in terms of bits, allowing the
comparison to be false in some cases, as opposed to being true all the
time.
---
We also get rid of two signed/unsigned comparison warnings while we're
at it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
loader: Amend Doxygen comments
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
These weren't adjusted when VFS was introduced
|
|\ \ \ \ \
| | | | | |
| | | | | | |
loader/nso: Check if read succeeded in IdentifyFile() before checking magic value
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We should always assume the filesystem is volatile and check each IO
operation. While we're at it reorganize checks so that early-out errors
are near one another.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hle/service: Make constructors explicit where applicable
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents implicit construction and makes these lingering non-explicit
constructors consistent with the rest of the other classes in services.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
nvflinger: Emplace Display instances directly
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can use emplace_back to construct the Display instances directly,
instead of constructing them separately and copying them, avoiding the
need to copy std::string and std::vector instances that are part of the
Display struct.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
nvdrv: Take std::string by const reference in GetDevice()
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This is only ever used as a lookup into the device map, so we don't need to
take the std::string instance by value here.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
Filesystem: Return EntryType::Directory for the root directory.
|
| | | | |
| | | | |
| | | | |
| | | | | |
It is unknown if this is correct behavior, but it makes sense and fixes a regression with Stardew Valley.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
hle_ipc: Amend usage of buffer_index within one of HLERequestContext's WriteBuffer() overloads
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously, the buffer_index parameter was unused, causing all writes to
use the buffer index of zero, which is not necessarily what is wanted
all the time.
Thankfully, all current usages don't use a buffer index other than zero,
so this just prevents a bug before it has a chance to spring.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
fsp_srv: Misc individual changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can avoid constructing a std::vector here by simply passing a pointer
to the original data and the size of the copy we wish to perform to the
backend's Write() function instead, avoiding copying the data where it's
otherwise not needed.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We were using a second std::vector as a buffer to convert another
std::vector's data into a byte sequence, however we can just use
pointers to the original data and use them directly with WriteBuffer,
which avoids copying the data at all into a separate std::vector.
We simply cast the pointers to u8* (which is allowed by the standard,
given std::uint8_t is an alias for unsigned char on platforms that we
support).
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents implicit conversions.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Gets rid of relying on indirect inclusions.
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously we were just copying the data whole-sale, even if the length
was less than the total data size. This effectively makes the
actual_data vector useless, which is likely not intended.
Instead, amend this to only copy the given length amount of data.
At the same time, we can avoid zeroing out the data before using it by
passing iterators to the constructor instead of a size.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
filesystem: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids unnecessary atomic reference count incrementing and decrementing
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is simply a basic value check as opposed to potentially doing
string based operations (unlikely, but still, avoiding it is free).
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
This was just an artifact missed during PR review.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
loader/{nro, nso}: Resolve compilation warnings
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
We can just initialize these vectors directly via their constructor.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
savedata_factory: Make SaveDataDescriptor's DebugInfo() function a const member function
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This function doesn't alter class state.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
partition_filesystem: Ensure all class members of PartitionFilesystem are initialized
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously is_hfs and pfs_header members wouldn't be initialized in the
constructor, as they were stored in locals instead. This would result in
things like GetName() and PrintDebugInfo() behaving incorrectly.
While we're at it, initialize the members to deterministic values as
well, in case loading ever fails.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
content_archive: Minor changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There's no need to take this by value when it's possible to avoid
unnecessary copies entirely like this.
|
| | | | | |
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Gets rid of unnecessary atomic reference count incrementing and
decrementing.
|
|\ \ \ \
| |_|_|/
|/| | | |
vfs: Deduplicate accumulation code in VfsDirectory's GetSize()
|
| |/ /
| | |
| | |
| | | |
We can just use a generic lambda to avoid writing the same thing twice.
|
|\ \ \
| | | |
| | | | |
address_arbiter: Correct assignment within an assertion statement in WakeThreads()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This was introduced within 4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0, and
considering there's no comment indicating that this is intentional, this
is very likely a bug.
|
|\ \ \ \
| |_|/ /
|/| | | |
core/memory, core/hle/kernel: Use std::move where applicable
|
| | | |
| | | |
| | | |
| | | | |
Avoids pointless copies
|
|\ \ \ \
| |_|_|/
|/| | | |
service/prepo: Add missing header guard
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
vm_manager: Add missing commas to string literal array elements in GetMemoryStateName()
|
| | |/
| |/|
| | |
| | |
| | | |
Without these, this would perform concatenation, which is definitely not
what we want here.
|
|\ \ \
| | | |
| | | | |
core/memory: Remove unused function GetSpecialHandlers() and an unused variable in ZeroBlock()
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
core: Don't construct instance of Core::System, just to access its live instance
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This makes it a compilation error to construct additional instances of
the System class directly, preventing accidental wasteful constructions
over and over.
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This would result in a lot of allocations and related object
construction, just to toss it all away immediately after the call.
These are definitely not intentional, and it was intended that all of
these should have been accessing the static function GetInstance()
through the name itself, not constructed instances.
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| | |
* Virtual Filesystem
* Fix delete bug and documentate
* Review fixes + other stuff
* Fix puyo regression
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
scheduler: Clear exclusive state when switching contexts
|
| | |
|
|\ \
| | |
| | | |
svc:: Fix bug in svcWaitForAddress
|
| |/ |
|
|/ |
|
| |
|
|\
| |
| | |
Services/BSD: Corrected the return for StartMonitoring according to SwIPC
|
| | |
|
|\ \
| | |
| | | |
FileSys: Append the requested path to the filesystem base path in DeleteFile
|
| |/
| |
| |
| | |
We were trying to delete things in the current directory instead of the actual filesystem directory. This may fix some savedata issues in some games.
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
| |
* More improvements to GDBStub
- Debugging of threads should work correctly with source and assembly level stepping and modifying registers and memory, meaning threads and callstacks are fully clickable in VS.
- List of modules is available to the client, with assumption that .nro and .nso are backed up by an .elf with symbols, while deconstructed ROMs keep N names.
- Initial support for floating point registers.
* Tidy up as requested in PR feedback
* Tidy up as requested in PR feedback
|
| |
|
| |
|
|\
| |
| | |
Let games/application know that we're offline
|
| |
| |
| |
| | |
Since we have no socket implementation we should be returning 0 to indicate we're currently offline.
|
|/
|
|
| |
Audout autos are identical to their counterpart except for the buffer type which yuzu already handles for us.
|
|\
| |
| | |
Services/FS: Return the correct error code when trying to mount a nonexistent savedata.
|
| | |
|
| |
| |
| |
| | |
- This fixes user input in SMO.
|
|\ \
| | |
| | | |
NvOsGetConfigU32 production impl
|
| | |
| | |
| | |
| | |
| | | |
Settings are only used when RMOS_SET_PRODUCTION_MODE is set to 0.
If production mode is set, the error code 0x30006 is returned instead
|
|\ \ \
| |/ /
|/| | |
savedata_factory: Always create a save directory for games.
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Add VfsFile and VfsDirectory classes
* Finish abstract Vfs classes
* Implement RealVfsFile (computer fs backend)
* Finish RealVfsFile and RealVfsDirectory
* Finished OffsetVfsFile
* More changes
* Fix import paths
* Major refactor
* Remove double const
* Use experimental/filesystem or filesystem depending on compiler
* Port partition_filesystem
* More changes
* More Overhaul
* FSP_SRV fixes
* Fixes and testing
* Try to get filesystem to compile
* Filesystem on linux
* Remove std::filesystem and document/test
* Compile fixes
* Missing include
* Bug fixes
* Fixes
* Rename v_file and v_dir
* clang-format fix
* Rename NGLOG_* to LOG_*
* Most review changes
* Fix TODO
* Guess 'main' to be Directory by filename
|
| |
| |
| |
| |
| |
| |
| |
| | |
* voice section updating
* fixed slight offset miscalculation
* fixed overflow
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
This behavior is confirmed by reverse engineering.
|
|\ \
| | |
| | | |
Rewrite the OpenGL rasterizer cache
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Service/Audio: add hwopus service, stub GetWorkBufferSize function
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
* We should be returning our revision instead of what is requested.
Hardware test on a 5.1.0 console
* Added sysversion comment
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Removed duplicate structs, changed AudioRendererResponse -> UpdateDataHeader
According to game symbols(SMO), there's references to UpdateDataHeader which seems to be what AudioRendererResponse actually is
* oops
* AudioRendererParameters should be AudioRendererParameter according to SMO
|
| |
| |
| |
| |
| | |
* Fixed RequestUpdateAudioRenderer deadlocks and calculated section sizes properly
This fixes RequestUpdateAudioRenderer deadlocks in games like Puyo Puyo Tetris and games which require a proper section size in games such as Retro City Rampage. This fixes causes various games to start rendering or trying to render
|
|\ \
| | |
| | | |
svc: Fully implement svcSignalToAddress and svcWaitForAddress
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
prevent yuzu crash, if games, like Axiom Verge, trying to read 0 bytes from file
|
|\ \ \
| | | |
| | | | |
Service/Audio: update audren:u service
|
| |/ / |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Start to add NCA support in loader
* More nca stuff
* More changes to nca.cpp
* Now identifies decrypted NCA cont.
* Game list fixes and more structs and stuff
* More updates to Nca class
* Now reads ExeFs (i think)
* ACTUALLY LOADS EXEFS!
* RomFS loads and games execute
* Cleanup and Finalize
* plumbing, cleanup and testing
* fix some things that i didnt think of before
* Preliminary Review Changes
* Review changes for bunnei and subv
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Implement GetAvailableLanguageCodes2
* Revert "Implement GetAvailableLanguageCodes2"
This reverts commit caadd9eea3497ae2a13382aecb8ca29e1c02c5af.
* Implement GetAvailableLanguageCodes2
* Implement GetAvailableLanguageCodes2
|
|\ \
| | |
| | | |
Avoid initializing single-joycon layouts with handheld controller
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
svc: Add a stub for UserExceptionContextAddr.
|
| | | |
|
| |/
|/| |
|
| |
| |
| |
| | |
convert input buffer (std::vector<u8>) to string, stripping zero chars
|
|\ \
| | |
| | | |
Service/MM: add service and stub some functions
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Service/nfp:user : stub some functions.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Used by Zelda: BoTW
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* add IoctlCommands with their params in nvidia_ctrl_gpu.h
* add function related to the changes done previously
* fix clang-format
* delete trailing whitespace
* correct mistake
|
|\ \ \ \
| | | | |
| | | | | |
Stub SetConnectionConfirmationOption, GetPseudoDeviceId
|
| | | | | |
|
| | |/ /
| |/| | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* GDB Stub should work now.
* Applied clang-format.
* Replaced htonll with swap64.
* Tidy up.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Add some IoctlCommand with their params to nvhost_gpu
* fix clang-format
* delete trailing whitespace
* fix some clang-format
* delete one other trailing whitespace
* last clang-format fix
|
| | | |
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Services/nvdrv: add '/dev/nvhost-nvdec' device
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This situation may happen like so:
Thread 1 with low priority calls WaitProcessWideKey with timeout.
Thread 2 with high priority calls WaitProcessWideKey without timeout.
Thread 3 calls SignalProcessWideKey
- Thread 2 acquires the lock and awakens.
- Thread 1 can't acquire the lock and is put to sleep with the lock owner being Thread 2.
Thread 1's timeout expires, with the lock owner still being set to Thread 2.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Kernel/SVC: Corrected the behavior of svcSetThreadCoreMask for core values -2 and -3.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Also added some proper error handling.
|
| |/ / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* add some CommandType
* add some hid FunctionInfo
* add some other HID FunctionInfo
* delete non useful comments
|
| | | |
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
NvOsGetConfigU32 should return null instead of 0 for default output value
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* add some InfoType
* correct OpenApplicationProxy cmd number
* add IDisplayController functions
* fix clang-format
* add more system languages
|
|\ \
| | |
| | | |
Stub NVGPU_IOCTL_CHANNEL_SET_TIMEOUT
|
| | |
| | |
| | |
| | | |
Used in Nintendo Labo ToyCon 1&2
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* GetAudioRendererWorkBufferSize impl
Impl of GetAudioRendererWorkBufferSize based on RE, if this can be cleaned up, please contribute!
* Naming conventions
* Removed unneeded placeholder
* lioncache changes
* fixed const
* switched to Common::AlignUp
|
|/ /
| |
| | |
We have no clue on what this actually does yet so stubbing it since it's just input only should be fine for now
|
| |
| |
| |
| | |
Games such as SMO deadlock if we have more than 2 layouts
|
|\ \
| | |
| | | |
Add & correct some error modules
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add ioctl commands with their params and size check
|
| | | |
| | | |
| | | | |
according to the changes made previously
|
| | | | |
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Kernel/SVC: Signal the highest priority threads first in svcSignalProcessWideKey
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Implemented NVHOST_IOCTL_CHANNEL_GET_WAITBASE
struct + 4 seems to be hard coded at 0 and struct + 0 seems to be ignored?
* IocGetWaitbase -> IocChannelGetWaitbaseCommand
* Added super late fixes
|
|\ \ \
| | | |
| | | | |
Implemented nvhost-as-gpu's UnmapBuffer and nvmap's Free ioctls.
|
| | | |
| | | |
| | | |
| | | | |
It releases a reference to an nvmap object
|
| |/ /
| | |
| | |
| | | |
It removes a mapping previously created with the MapBufferEx ioctl.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Add unknown function at the number command 2
* correct audout:u commands numbers
* correct audrec:u cmd number & add Unknown function
* correct IAudioDevice command numbers
* correct codecctl cmd numbers & rename the 8 function
* correct place of unknown function & fix clang-format
|
|\ \ \
| | | |
| | | | |
Mutex: Do not assert when the mutex waiting threads list isn't empty on mutex release.
|
| |/ /
| | |
| | |
| | | |
A thread may own multiple mutexes at the same time, and only release one of them while other threads are waiting for the other mutexes.
|
|\ \ \
| | | |
| | | | |
Properly rename functions of Fatal Module & add ThrowFatal to this module
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Added IPC RequestWithContext & ControlWithContext
|
| |/ / |
|
| | |
| | |
| | |
| | | |
* Add and correct some Error Modules
|
|/ / |
|
|\ \
| | |
| | | |
Initial support for multi-core
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Stubs for QLaunch
* Wiped unrelated stuff
* Addressed comment
* Dropped GetPopFromGeneralChannelEvent
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* hid: Update mouse/keyboard state
* hid: Working analog sticks
* hid: Nits
* hid: Nits
* hid: Update mystery sections
* hid: Tweaks
|
|\ \
| | |
| | | |
memory_hook: Default virtual destructor in the cpp file
|
| | |
| | |
| | |
| | |
| | | |
Prevents creating multiple copies of the vtable in every translation unit that uses the class.
Also silences a -Wweak-vtables warning
|
|/ /
| |
| |
| |
| | |
Avoids propagating logging macros and facilities to files that may not need them.
This also allows hiding an internal constant.
|
|\ \
| | |
| | | |
general: Make formatting of logged hex values more straightforward
|
| | |
| | |
| | |
| | |
| | |
| | | |
This makes the formatting expectations more obvious (e.g. any zero padding specified
is padding that's entirely dedicated to the value being printed, not any pretty-printing
that also gets tacked on).
|
|/ /
| |
| |
| | |
- This can be used for domain objects as inputs to service functions.
|
|\ \
| | |
| | | |
GPU: Don't write to invalid memory locations when handling ioctls that don't have an output.
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* GetSharedFontInOrderOfPriority
* Update pl_u.cpp
* Ability to use ReadBuffer and WriteBuffer with different buffer indexes, fixed up GetSharedFontInOrderOfPriority
* switched to NGLOG
* Update pl_u.cpp
* Update pl_u.cpp
* language_code is actually language code and not index
* u32->u64
* final cleanups
|
| |
| |
| |
| | |
All of these variables and functions are related to timings and should be within the namespace.
|
| |
| |
| |
| | |
Given we utilize fmt, we don't need to provide our own functions for formatting anymore
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Implemented some useful interfaces needed for games.
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | | |
LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from
interface changes, as it will require removing a parameter from the relevant function
in the VMManager class.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
kernel: Migrate logging macros to fmt-compatible ones
|
| | | |
| | | |
| | | |
| | | | |
Functions don't need to be terminated by semicolons.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Partially implemented the 2D surface copy engine
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
file-sys: Move logging macros over to the new fmt-capable ones
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Lessens the amount to read and gets rid of the PRIX64 macro, allowing us to use a single string
for the whole path, making it easier to read.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Service/PCTL: convert to module, add services, stub
|
| |/ / /
| | | |
| | | |
| | | | |
PCTL::CreateServiceWithoutInitialize and IParentalControlService::Initialize, required by Kirby Star Allies
|
| | | |
| | | |
| | | |
| | | | |
Addresses are 64-bit, these formatting specifiers are simply holdovers from citra. Adjust them to be the correct width.
|
|/ / /
| | |
| | |
| | | |
While we're at it, correct addresses to print all 64 bits where applicable, which were holdovers from citra.
|
|\ \ \
| | | |
| | | | |
Refactor rasterizer cache
|
| | | | |
|
|/ / / |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Kernel: Reworked the new kernel synchronization primitives.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Verified with a hwtest and implemented based on reverse engineering.
Thread A's priority will get bumped to the highest priority among all the threads that are waiting for a mutex that A holds.
Once A releases the mutex and ownership is transferred to B, A's priority will return to normal and B's priority will be bumped.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
They work in tandem with guest code to provide synchronization primitives along with svcArbitrateLock/Unlock
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Switch mutexes are no longer kernel objects, they are managed in userland and only use the kernel to handle the contention case.
Mutex addresses store a special flag value (0x40000000) to notify the guest code that there are still some threads waiting for the mutex to be released. This flag is updated when a thread calls ArbitrateUnlock.
TODO:
* Fix svcWaitProcessWideKey
* Fix svcSignalProcessWideKey
* Remove the Mutex class.
|
|\ \ \ \
| | | | |
| | | | | |
Nvdrv/nvhost-as-gpu: Implemented the ioctl REMAP command.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Also added a consistency check and a comment for the case when the object id is different than its handle. The real nvservices doesn't make a distinction between ids and handles, each object gets an unique handle which doubles as its id.
|
| | |/ /
| |/| |
| | | |
| | | | |
It takes a previously-reserved (AllocateSpace) GPU memory address and maps it to the address of the nvmap object passed to Remap.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
resource_limit: Make ResourceTypes an enum class
|
| | | |
| | | |
| | | |
| | | | |
Prevents enum identifiers from leaking into the surrounding scope.
|
|/ / /
| | |
| | |
| | |
| | | |
Converts the service manager from a global into an instance-based
variable.
|
|\ \ \
| |/ /
|/| | |
Service/VI: stub SetLayerVisibility, fix GetDisplayResolution output
|
| | |
| | |
| | |
| | |
| | | |
both SetLayerVisibility() functions used in Lego games, GetDisplayResolution()
fixed according switchbrew.org
|
|\ \ \
| | | |
| | | | |
math_util: Remove the Clamp() function
|
| | | |
| | | |
| | | |
| | | |
| | | | |
C++17 adds clamp() to the standard library, so we can remove ours in
favor of it.
|
|\ \ \ \
| | | | |
| | | | | |
service: Use nested namespace specifiers where applicable
|
| |/ / /
| | | |
| | | |
| | | | |
Tidies up namespace declarations
|
|\ \ \ \
| | | | |
| | | | | |
common_funcs: Remove ARRAY_SIZE macro
|
| |/ / /
| | | |
| | | |
| | | | |
C++17 has non-member size() which we can just call where necessary.
|
|\ \ \ \
| | | | |
| | | | | |
disk_filesystem: Minor changes
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|/ / / |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
file_sys: Add HFS/PFS helper component
|
| | | |
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Updated ACC with more service names
* Updated SVC with more service names
* Updated set with more service names
* Updated sockets with more service names
* Updated SPL with more service names
* Updated time with more service names
* Updated vi with more service names
|
|\ \
| | |
| | | |
pl_u: Use empty shared font if none is available.
|
| | |
| | |
| | |
| | | |
- Makes games work in lieu of shared_font.bin.
|
|/ /
| |
| |
| | |
- Used by Binding of Isaac.
|
|\ \
| | |
| | | |
vm_manager: Increase GetTotalMemoryUsage value.
|
| | |
| | |
| | |
| | | |
- Gets Binding of Isaac running.
|
|/ / |
|
|\ \
| | |
| | | |
Service/HID: Stubbed out GetPlayerLedPattern
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Various service name fixes - part 1
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| | |
|
| |
| |
| |
| |
| |
| | |
* core, main.h: Abort on 32Bit ROMs
* main.cpp: Fix Grammar
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Change Telemetry Names to yuzu and remove links to citra
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix build on OpenBSD
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Versions prior to this didn't compile on OpenBSD due to unconditional
use of the non-standard strtod_l() function.
The fmt::MemoryWriter API has been removed in the intervening
versions, so replace its use with fmt::memory_buffer and fmt::format_to.
The library also no longer provides the fmt::fmt ALIAS, so define
it in externals/CMakeLists.txt.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
hid: Write empty touch screen state.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
service: Initialize NFP service.
Log: Add NFP service as a log subtype.
|
| | |
| | |
| | |
| | | |
Avoids doing work that doesn't need to be done.
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Minor changes to VI, PL, HID, and AUDREN
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
GPU: Added code to unswizzle textures and ported the surface viewer from citra
|
| |/ / |
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
Tegra progress 2
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
- Workaround for texture forwarding until we have a better place.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
FS: Implemented access to the SD card
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Note that the filter parameter is not yet implemented.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ /
|/| | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Implement Pull #3184 from citra: core/arm: Improve timing accuracy before service calls in JIT (Rebased)
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
FS: Make EnsureSaveData create the save data if it doesn't already exist.
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Vi: Signal the BufferQueue's Native Handle right after ReleaseBuffer is called
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This prevents a thread starvation issue in Puyo Puyo Tetris.
We should hwtest this behavior and figure out where exactly this event is signaled.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Implemented the SaveData archive and MountSaveData.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
There may be many CodeSets per Process, so it's wasteful and overcomplicated to store the program id in each of them.
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
|/ / |
|
|\ \
| | |
| | | |
IPC: add domain header to response if only it exists in request
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
UnmapSharedMemory
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
C++11 requires spaces on the Identifier
Add inttypes include
clang
|
| | | |
| | | |
| | | |
| | | | |
Asdf
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Stub some functions
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
time: Add missing time:s functions, used for libnx
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
arm_dynarmic: Implement system registers and provide more hooks
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
6b4c6b0 impl: Update PC when raising exception
7a1313a A64: Implement FDIV (vector)
b2d781d system: Raise exception for YIELD, WFE, WFI, SEV, SEVL
b277bf5 Correct FPSR and FPCR
7673933 A64: Implement USHL
8d0e558 A64: Implement UCVTF (vector, integer), scalar variant
da9a4f8 A64: Partially implement FCVTZU (scalar, fixed-point) and FCVTZS (scalar, fixed-point)
7479684 A64: Implement system register TPIDR_EL0
0fd75fd A64: Implement system registers FPCR and FPSR
31e370c A64: Implement system register CNTPCT_EL0
9a88fd3 A64: Implement system register CTR_EL0
1d16896 A64: Implement NEG (vector)
3184edf IR: Add IR instruction ZeroVector
31f8fbc emit_x64_floating_point: Add maybe_unused to preprocess parameter
567eb1a A64: Implement FMINNM (scalar)
c6d8fa1 A64: Implement FMAXNM (scalar)
616056d constant_pool: Add frame parameter
a3747cb A64: Implement ADDP (scalar)
5cd5d9f reg_alloc: Only exchange GPRs
dd0452a A64: Implement DUP (element), scalar variant
e5732ea emit_x64_floating_point: Correct FP{Max,Min}{32,64} implementations for -0/+0
40eb9c3 A64: Implement FMAX (scalar), FMIN (scalar)
7cef39b fuzz_with_unicorn: QEMU's implementation of FCVT is incorrect
826dce2 travis: Switch unicorn repository
9605f28 a64/config: Allow NaN emulation accuracy to be set
e9435bc a64_emit_x64: Add conf to A64EmitContext
30b596d fuzz_with_unicorn: Explicitly test floating point instructions
be292a8 A64: Implement FSQRT (scalar)
3c42d48 backend_x64: Accurately handle NaNs
4aefed0 fuzz_with_unicorn: Print AArch64 disassembly
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
time: Add GetStandardLocalSystemClock, used by libnx
|
| |/ / |
|
|/ / |
|
|\ \
| | |
| | | |
Service/AOC: stub ListAddOnContent function
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Scheduler cleanup
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| | |
The values are still unknown and the function is still considered a stub.
Puyo Puyo Tetris now tries to call fsp-srv:MountSaveData.
|
|\ \
| | |
| | | |
Kernel/IPC: Add a small delay after each SyncRequest to prevent thread starvation.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Ported from citra PR #3091
The delay specified here is from a Nintendo 3DS, and should be measured in a Nintendo Switch.
This change is enough to prevent Puyo Puyo Tetris's main thread starvation.
|
|\ \ \
| |/ /
|/| | |
Make the fence handling in Vi a little less of a hack.
|
| | |
| | |
| | |
| | | |
Games like Puyo Puyo Tetris and BOTW seem to depend on the buffer always having the same handle
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
This may break libnx homebrew due to a bug in libnx but is required by official games since they always assume that the buffer will be there.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Refactor IPC buffer descriptor interface
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |/
|/| |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|
|
|
|
|
| |
* audren_u: Schedule reoccuring event.
* audren_u: Stub GetAudioRenderersProcessMasterVolume, and misc. changes.
|
|\
| |
| | |
VI cleanup and add a hack for booting games
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Service/lm: add support to multiline logs
|
| | |
|
|/ |
|
|\
| |
| | |
Stub RequestUpdateAudioRenderer, StartAudioRenderer and StopAudioRenderer
|
| | |
|
|\ \
| |/
|/| |
GPU: Added a command processor to decode the GPU pushbuffers and forward the commands to their respective engines
|
| |
| |
| |
| | |
Also moved the GPU MemoryManager class to video_core since it makes more sense for it to be there.
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- Another fix for libnx.
|
| |
|
|\
| |
| | |
Various fixes for libnx, etc.
|
| | |
|
| | |
|
| | |
|
| | |
|
|/
|
|
| |
Changes: Primarily implementing more A64 instructions
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Stubs for HID, AM, and a mutex fix
|
| | |
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
|
|\
| |
| | |
Don't call UNIMPLEMENTED for 'empty services', just return error code
|
| | |
|
|/ |
|
| |
|
|
|
|
| |
- This gets BOTW booting.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Several SVC fixes and improvements
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
controller: DuplicateSession should return a ClientSession.
|
| | |
|
|/ |
|
|
|
|
|
|
| |
* Add AppletAE, step 1: move common interfaces to am.h
* Add AppletAE, step 2
|
|\
| |
| | |
vi::CreateStrayLayer : add padding to request
|
| | |
|
|\ \
| | |
| | | |
Services/vi: add vi:s and vi:u services
|
| |/ |
|
|\ \
| |/
|/| |
shared_memory: Only mark addresses as invalid if they are within the heap
|
| | |
|
|/
|
| |
sfdnsres: Add several stubs
|
|\
| |
| | |
memory: Replace all memory hooking with Special regions
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation
* Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation
* audout:u OpenAudioOut implementation and IAudioOut cmd 1,2,3,4,5 implementation
* using an enum for audio_out_state as well as changing its initialize to member initializer list
* Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass
* Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass
* added missing Audio loggin subclass, minor fixes, clang comment breakline
* Solving backend logging conflict
* minor fix
* Fixed duplicated Service NVDRV in backend.cpp, my bad
|
| | |
|
| | |
|
|\ \
| | |
| | | |
IPC: Don't create unnecessary ports when returning sub interfaces.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
AppletOE: Stubbed CreateManagedDisplayLayer to create a new layer in the default display.
|
| | |
| | |
| | |
| | | |
This function is used by libnx to obtain a new layer.
|
| | |
| | |
| | |
| | | |
It'll be needed when we implement CreateManagedDisplayLayer.
|
| | |
| | |
| | |
| | | |
It is now created during Service initialization and passed to all the services that need it.
|
|\ \ \
| |/ /
|/| | |
Stub OpenAudioOut and fix a issue with HID IAppletResource
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| | |
* stubs for audout:u, audin:u, audrec:u, audren:u, codecctl and decoding tables with nullptr for future implementations
* fixing the changes requested (remove private, explicit)
|
|\ \
| | |
| | | |
nvmap: Make IoctlCommands an enum class
|
| | |
| | |
| | |
| | | |
This macro resolves to an empty macro in release builds.
|
| | |
| | |
| | |
| | | |
Prevents the enum values from polluting the surrounding scope
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid
* used clang-format-3.9 instead
* lowercase pid
* Moved nvmemp handlers to cpp
* Removed unnecessary logging for NvOsGetConfigU32. Cleaned up log and changed to LOG_DEBUG
* using std::arrays instead of c arrays
* nvhost get config now uses std::array completely
* added pid logging back
* updated cmakelist
* missing includes
* added array, removed memcpy
* clang-format6.0
|
|\ \ \
| | | |
| | | | |
VI: Implement the Query transaction of IHOSBinderDriver, and stubbed some results.
|
| | |/
| |/| |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
file_sys: Add factory class for RomFS file system.
|
| | | |
|
| | | |
|
| |/
|/| |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This gets gdbstub working at least to the point where clients can
communicate with it.
What works:
- Reading/writing GPRegs
- Reading/writing memory
- Interrupting the emulated program and continuing
What does NOT work:
- Breakpoints. Sizes have been updated to u64, but support will need to be
added in the interpreter for them to work.
- VRegs. Mostly because my gdb was having issues with 128-bit regs for
some reason. However, the current u128 representation is a bit
awkward to use and should probably be updated first.
|
|\
| |
| | |
Implement Pull #3275 from citra: core: Don't Shutdown before we've even Init-ed
|
| | |
|
|\ \
| | |
| | | |
Fix NRO entry point
|
| | | |
|
|\ \ \
| | | |
| | | | |
service/time: remove accidental #pragmas
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Clang format as a build target
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
memory: Return false for large VAddr in IsValidVirtualAddress
|
| |/ / / |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Port citra #3352 to yuzu
This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic
* Fixed clang-format errors
* fixes more clang-format errors
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Added svcCreateSharedMemory
* Services which are not implemented now throw UNIMPLEMENTED()
* clang-format
* changed perms to u32
* removed camelcase
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Fixes some cast warnings, partially fixes citra #3064
* Converted casts to uint32_t to u32
* Ran clang-format
|
|\ \ \
| | | |
| | | | |
ISelfController: Stub LockExit and UnlockExit
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Stubs for various acc:u0 funcs needed
* Stub for GetDesiredLanguage in IApplicationFunctions
* Add set service + stubs needed for games
* Fix formatting
* Implement IProfile, IManagerForApplication, return bool in CheckAvailability, style fixes
* Remove IProfile::Get(needs more research), fix IPC response sizes
|
|\ \ \
| | | |
| | | | |
Fix svcGetInfo for libnx
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
time: Stub out GetTotalLocationNameCount and some cleanup.
|
| | | | | |
|
| | | | | |
|
|/ / / / |
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
time: Refactor time:* to use a single shared module
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Stub PopLaunchParameter and implement Buffer C Descriptors reading
* Address PR feedback
* Ensure we push a u64 not a size_t
* Fix formatting
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* bsd: start stubbing bsd:u and sfdnsres
* bsd: stubbed RegisterClient
* bsd: attempt to get past socket()
* bsd: fix some wrong assumptions about IPC
* bsd: fix format specifiers
* bsd: stubbed Connect()
* bsd: stubbed SendTo()
* made requested changes
* sockets: respect alphabetical order at service installation
* run clang-format
* bsd: start stubbing bsd:u and sfdnsres
* bsd: stubbed RegisterClient
* bsd: attempt to get past socket()
* bsd: fix some wrong assumptions about IPC
* bsd: fix format specifiers
* bsd: stubbed Connect()
* bsd: stubbed SendTo()
* made requested changes
* sockets: respect alphabetical order at service installation
* run clang-format
* run clang-format (2)
|
|\ \ \
| |/ /
|/| | |
lm: Minor logging fix to skip a byte.
|
| | | |
|
|\ \ \
| | | |
| | | | |
CMakeLists: Derive the source directory grouping from targets themselves
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Removes the need to store to separate SRC and HEADER variables, and then
construct the target in most cases.
|
|\ \ \ \
| | | | |
| | | | | |
svc: Minor clarity changes
|
| | | | |
| | | | |
| | | | |
| | | | | |
Makes the codebase a little more consistent with regards to available documentation. Also amends the duplicate case where there was a similar entry at 0x72 named ConnectToPort.
|
| |/ / /
| | | |
| | | |
| | | | |
Makes the table match SwitchBrew for these entries
|
|\ \ \ \
| | | | |
| | | | | |
vi: Minor clean up/correctness changes
|
| | | | |
| | | | |
| | | | |
| | | | | |
Prevents implicit conversions.
|
| |/ / / |
|
|\ \ \ \
| |_|/ /
|/| | | |
vi: Copy data directly into the std::vector within Parcel's ReadBlock function
|
| |/ /
| | |
| | |
| | |
| | | |
Previously this would unnecessarily zero-initialize the vector before
copying the actual data into the vector instance.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Fix NRO loading
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Implement Pull #3093 from citra: Added missing headers to CMakeLists.txt and fixed includes.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
TIME: consolidate time:* interfaces, stub functions and structs
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
hid: Adjust timing based on actual hardware
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
nvdrv: stubbed Close(cmd 2)
|
| | | | | |
|
| |_|_|/
|/| | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Implement IPC domain command CloseVirtualHandle
|
| | | | |
|
| | | | |
|
| |/ /
|/| |
| | | |
Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
|
|\ \ \
| |/ /
|/| | |
UI: Fix frame rate perf stats
|
| | |
| | |
| | |
| | | |
Adds in a missing EndGameFrame when nvdrv swaps buffers
|
|\ \ \
| |/ /
|/| | |
hid: Write to all layouts, implement circular buffers, set up controller metadata.
|
| | | |
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
# Conflicts:
# src/core/hle/service/am/applet_oe.cpp
# src/core/hle/service/apm/apm.cpp
|
| | |
|
| |
| |
| |
| |
| | |
# Conflicts:
# src/core/hle/kernel/svc.cpp
|
| | |
|
| | |
|
|\ \
| | |
| | | |
added more svcGetInfo pairs for 3.0.0+ support, Changed HEAP_SIZE and TLS_AREA_VADDR. changed mem usage & heap usage stub added, ISelfController, IApplication function stubs. Added SetThreadCoreMask
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
nso: Modify .bss size calculation logic
|
| | |/
| |/| |
|
| |/
|/| |
|
| |
| |
| |
| |
| |
| |
| | |
On MSVC if unicorn isn't found, fallback to bundled unicorn
On everything else, fallback to building unicorn in externals
Also fixes loading unicorn in msvc
|
|/
|
|
|
|
|
| |
Adds a cmake custom target that will build unicorn on first compile and
uses this in the build scripts as well. Updates Appveyor and Travis
build scripts to work with the new unicorn build, and updates the paths
to all of the different artifacts.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
HID Sharedmem Impl Start
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
bc73004 a64_merge_interpret_blocks: Remove debug output
4e656ed tests/A64: Randomize PSTATE.<NZCV>
fd9530b A64: Optimization: Merge interpret blocks
3c9eb04 testenv: Use format constants
324f3fc tests/A64: Unicorn interface fixes
98ecbe7 tests/A64: Fuzz against unicorn
b1d38e7 tests/A64: Move TestEnvironment to own header
5218ad9 A64/data_processing_pcrel: bug: ADR{,P} instructions sign extend their immediate
b1a8c39 A64/data_processing_addsub: bug: {ADD,SUB}S (extended register) instructions write to ZR when d = 31
64827fb a64_emit_x64: bug: A64CallSupervisor trampled callee-save registers
1bfa04d emit_x64: bug: OP m/r64, imm32 form instructions sign-extend their immediate on x64
edadeea A64 inferface: Use two argument static_assert
9ab1304 A64: Add ExceptionRaised IR instruction
6843eed Update readme
7438d07 A64/translate: Add TranslateSingleInstruction function
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This prevents missing frames if the vblank fires between the DequeueBuffer and Wait(vsync) calls
|
| |
|
|
|
|
|
|
| |
NVFlinger will call into the nvdisp_disp0 device to perform screen flips, bypassing the ioctl interface.
We now have the address of the framebuffer to draw, we just need to actually put it on the screen.
|
|
|
|
|
|
| |
Don't try to draw buffers that the guest application is using, only queued buffers are eligible for drawing.
Drawing actual pixels is still not implemented.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
The homebrew display test application now properly writes graphics data to the graphics buffer but we still don't have a way to compose the display layers.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Also properly keep track of data in guest memory, this fixes managing the semaphore from userland.
It was found that Semaphores are actually Condition Variables, with Release(1) and Release(-1) being equivalent to notify_one and notify_all. We should change the name of the class to reflect this.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
* CoreTiming: New CoreTiming; Add Test for CoreTiming
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
They should have 32 bits of padding after the error code now.
|
| |
|
| |
|
|
|
|
| |
Popping objects from the buffer is still not implemented.
|
|
|
|
| |
Service code now doesn't have to deal with this.
|
|
|
|
| |
Domain object ids are always stored immediately after the raw data.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- This does not matter until we implement other kernel objects, mutexes use svcLockMutex for waiting.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This is kinda crufty, but we need it for now to update guest state variables.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
# Conflicts:
# src/core/CMakeLists.txt
# src/core/arm/dynarmic/arm_dynarmic.cpp
# src/core/arm/dyncom/arm_dyncom.cpp
# src/core/hle/kernel/process.cpp
# src/core/hle/kernel/thread.cpp
# src/core/hle/kernel/thread.h
# src/core/hle/kernel/vm_manager.cpp
# src/core/loader/3dsx.cpp
# src/core/loader/elf.cpp
# src/core/loader/ncch.cpp
# src/core/memory.cpp
# src/core/memory.h
# src/core/memory_setup.h
|
| | |
|
| |\
| | |
| | | |
Remove more usages of GetPointer.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| | | |
| | | | |
file_sys/archive_ncch: use NCCHs/.apps instead of .romfs files, NCCH section override
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
HLE/APT: Always set up the APT parameter when starting a library applet.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Only use the HLE interface if an HLE applet with the desired id was started.
This commit reorganizes the APT code surrounding parameter creation and delivery to make it easier to support LLE applets in the future.
As future work, the HLE applet interface can be reworked to utilize the same facilities as the LLE interface.
|
| |\ \ \ \
| | |_|_|/
| |/| | | |
SharedMemory: Don't take over and unmap the source memory block when creating a shared memory, just reference it
|
| | | |/
| | |/|
| | | |
| | | | |
Also reference the right offset into the backing block for the requested address.
|
| |\ \ \
| | | | |
| | | | | |
Memory: Add overloads for ReadBlock and WriteBlock that operate on a specific process.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| | |_|/ /
| |/| | | |
Services/NIM: Implement CheckForSysUpdateEvent.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Implementation verified by reverse engineering.
This lets the Home Menu boot without crashing on startup.
|
| |/ / / |
|
| | | |
| | | |
| | | | |
Services/UDS: Handle the rest of the connection sequence.
|
| |\ \ \
| | | | |
| | | | | |
Implement PrepareToStartNewestHomeMenu and fixed an APT regression.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
As per 3dbrew:
"During Home Menu start-up it uses APT:PrepareToStartNewestHomeMenu. If that doesn't return an error(normally NS returns 0xC8A0CFFC for that), Home Menu starts a hardware reboot with APT:StartNewestHomeMenu etc. "
|
| | | |/
| | |/|
| | | |
| | | |
| | | | |
We need to know what is being run so we can set the APT parameter destination AppId correctly.
Delaying the preparation of the parameter until we know which AppId is running lets us support booting both the Home Menu and normal game Applications.
|
| |\ \ \
| | |_|/
| |/| | |
Kernel/Threads: When putting a thread to wait, specify a function to execute when it is awoken
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This change makes for a clearer (less confusing) path of execution in the scheduler, now the code to execute when a thread awakes is closer to the code that puts the thread to sleep (WaitSynch1, WaitSynchN). It also allows us to implement the special wake up behavior of ReplyAndReceive without hacking up WaitObject::WakeupAllWaitingThreads.
If savestates are desired in the future, we can change this implementation to one similar to the CoreTiming event system, where we first register the callback functions at startup and assign their identifiers to the Thread callback variable instead of directly assigning a lambda to the wake up callback variable.
|
| | | | |
|
| |\ \ \
| | |/ /
| |/| | |
Loaders: Don't automatically set the current process every time we load an application.
|
| | | |
| | | |
| | | |
| | | | |
The loaders will now just create a Kernel::Process, construct it and return it to the caller, which is responsible for setting it as the current process and configuring the global page table.
|
| | | |
| | | |
| | | |
| | | | |
Don't automatically assume that Thread::Create will only be called when the parent process is currently scheduled. This assumption will be broken when applets or system modules are loaded.
|
| | | |
| | | |
| | | |
| | | | |
There is still an overload of IsValidVirtualAddress that only takes the VAddr and will default to the current process.
|
| |\ \ \
| | |/ /
| |/| | |
Memory/RasterizerCache: Ignore unmapped memory regions when caching physical regions
|
| | |/
| | |
| | |
| | |
| | |
| | | |
Not all physical regions need to be mapped into the address space of every process, for example, system modules do not have a VRAM mapping.
This fixes a crash when loading applets and system modules.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The loaders now register each loaded ROM with the SelfNCCH factory, which keeps the data around for the duration of the emulation session.
When opening the SelfNCCH archive, the factory queries the current program's programid and uses that as a key to the map that contains the NCCHData structure (RomFS, Icon, Banner, etc).
3dsx files do not have a programid and will use a default of 0 for this value, thus, only 1 3dsx file with RomFS is loadable at the same time.
|
| |\ \
| | | |
| | | | |
Switchable Page Tables
|
| | | | |
|
| | | | |
|
| | |/
| | |
| | |
| | | |
Don't expose Memory::current_page_table as a global.
|
| |\ \
| | | |
| | | | |
HLE/SRV: Implemented RegisterService.
|
| | |/
| | |
| | |
| | | |
Now system modules can do more than just crash immediately on startup.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* loader/ncch: split NCCH parsing into its own file
* loader/ncch: add support for loading update NCCHs from the SD card
* loader/ncch: fix formatting
* file_sys/ncch_container: Return a value for OpenFile
* loader/ncch: cleanup, always instantiate overlay_ncch to base_ncch
* file_sys/ncch_container: better encryption checks, allow non-app NCCHs to load properly and for the existence of NCCH structures to be checked
* file_sys/ncch_container: pass filepath as a const reference
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Services/UDS: Added a function to generate the EAPoL-Start packet body.
* Services/UDS: Added filter for beacons.
* Services/UDS: Lock a mutex when accessing connection_status from both the emulation and network thread.
* Services/UDS: Handle the Association Response frame and respond with the EAPoL-Start frame.
* fixup: make use of current_node, changed received_beacons into a list, mutex and assert corrections
* fixup: fix damn clang-format
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* WebService: Verify username and token; Log errors in PostJson
* Fixup: added docstrings to the functions
* Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits
* fixup: fmt warning
|
| |\
| | |
| | | |
Services/NS: Port ns:s to the new service framework.
|
| | | |
|
| |\ \
| | | |
| | | | |
Kernel/Memory: Give each process its own page table and allow switching the current page table upon reschedule
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
We were unnecessarily clearing the cache when going from Process A -> Idle -> Process A, this caused extreme performance regressions.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
The loader is in charge of setting the newly created process's page table as the main one during the loading process.
|
| |\ \ \
| | | | |
| | | | | |
APT: load different shared font depending on the region
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | | |
Services/UDS: Handle beacon frames and the basic AP connection sequence frames.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
There is currently no stage tracking, a client is considered "Connected" when it receives the EAPoL Logoff packet from the server, this is not yet implemented.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
| |\ \ \ \
| | | | | |
| | | | | | |
Refactor touch input into a TouchDevice
|
| | | | | | |
|
| | | | | | |
|
| |\ \ \ \ \
| | |_|_|_|/
| |/| | | | |
Use recursive_mutex instead of mutex to fix #2902
|
| | |/ / / |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* added a SidebySide Layout
* Reworked, so both screen have the same height and cleaned up screen translates.
* added the option in the UI, hope this is the right way to do it. formated framebuffer_layout.cpp
* delete the x64 files
* deleted ui_configure_graphics.h
* added Option for the Layout in the xml
* got rid of SIDE_BY_SIDE_ASPECT_RATIO because it was useless. pulled translate into variables
* changed shift variables to u32 and moved them in their respective branch. remove notr="true" for the Screen layout drop down
* reworked intends :). changed function description for SideFrameLayout
* some description reworking
|
| |\ \ \
| | | | |
| | | | | |
Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state between the cpu thread and any other possible threads that might touch the kernel (network thread, etc).
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This mutex is acquired in SVC::CallSVC, ie, as soon as the guest application enters the HLE kernel, and should be acquired by the aforementioned threads before modifying kernel structures.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Kernel/Threads: Don't immediately switch to the new main thread when loading a new process.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is necessary for loading multiple processes at the same time.
The main thread will be automatically scheduled when necessary once the scheduler runs.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes a few warnings.
|
| |/ / / / |
|
| |\ \ \ \
| | |_|_|/
| |/| | | |
Refactor MotionEmu into a InputDevice
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Network: Set and send the game information over enet
Added Callbacks for RoomMember and GetMemberList to Room in preparation for web_services.
|
| |\ \ \ \
| | | | | |
| | | | | | |
dsp_dsp: Remove size assertion in LoadComponent
|
| | | | | | |
|
| |\ \ \ \ \
| | |_|/ / /
| |/| | | | |
Services/APT: Use an array to hold data about the 4 possible concurrent applet types (Application, Library, HomeMenu, System)
|
| | | | | | |
|
| | |/ / /
| | | | |
| | | | |
| | | | | |
This gives each applet type its own set of events as per the real NS module.
|
| |\ \ \ \
| | | | | |
| | | | | | |
HID: zero unused PadState bits
|
| | |/ / / |
|
| |\ \ \ \
| | | | | |
| | | | | | |
Update CryptoPP (byte ambiguity)
|
| | |/ / / |
|
| |/ / / |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
Services/APT: Corrected the behavior of the Receive/Send/Glance/CancelParameter functions
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |/ / |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Add address conversion functions returning optional, Add function to flush virtual region from rasterizer cache
|
| | |
| | |
| | |
| | |
| | |
| | | |
This is slightly more ergonomic to use, correctly handles virtual
regions which are disjoint in physical addressing space, and checks only
regions which can be cached by the rasterizer.
|
| | | |
|
| | |
| | |
| | |
| | | |
And fix a few places in the code to take advantage of that.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
load shared font from system archive
|
| | | | |
|
| |/ / |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Service/boss:P: Add some functions to FunctionTable
|
| | |/
| |/| |
|
|\ \ \
| |/ /
|/| | |
Memory: Fix crash when unmapping a VMA covering cached surfaces
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Unmapping pages tries to flush any cached GPU surfaces touching that
region. When a cached page is invalidated, GetPointerFromVMA() is used
to restore the original pagetable pointer. However, since that VMA has
already been deleted, this hits an UNREACHABLE case in that function.
Now when this happens, just set the page type to Unmapped and continue,
which arrives at the correct end result.
|
|\ \
| | |
| | | |
Kernel/SVC: Partially implemented svcReplyAndReceive
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
It behaves mostly as WaitSynchronizationN with wait_all = false, except for IPC buffer translation.
The target thread of an IPC response will now wake up when responding.
IPC buffer translation is currently not implemented.
Error passing back to svcSendSyncRequest is currently not implemented.
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Services/UDS: Stub SendTo to generate the unencrypted data frames with the right headers
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
The responsibility of encryption and encapsulation into an 802.11 MAC frame will fall into the callers of GenerateDataPayload.
|
| | | |
| | | |
| | | |
| | | | |
It is likely that these 4 bytes are actually a different header, part of some protocol that encapsulates the SecureData protocol.
|
| | | | |
|
| |/ / |
|
| | | |
|
| | |
| | |
| | |
| | | |
The return parameters were flipped.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Kernel: Implement CreateSession SVC
|
| | |/
| |/| |
|
|/ /
| |
| |
| |
| | |
Missed this in my first implementation. Thanks to @wwylele for pointing
out that this was missing.
|
|\ \
| | |
| | | |
Trivial no-op additions
|
| | | |
|
| |/ |
|
|\ \
| | |
| | | |
Remove ResultVal::MoveFrom
|
| | |
| | |
| | |
| | |
| | | |
Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in
case you already have an rvalue.
|
| |/ |
|
|\ \
| | |
| | | |
UDS: Added a hook for updating the connection status when a client connects to the network.
|
| |/ |
|
|/ |
|
|
|
|
|
|
|
|
|
|
| |
* Services/UDS: Set the proper bit in the ConnectionStatus structure when creating a network.
This lets the application know that the host was successfully added to the session.
* Services/UDS: Reset the connection status when destroying the network
* Services/UDS: Reset the connection status's bitmask of changed nodes after reporting it to the game.
|
| |
|
|
|
|
|
| |
Reduces the necessary allocation to max(in_handles, out_handles) rather
than (in_handles + out_handles).
|
| |
|
| |
|
|
|
|
|
| |
These use the context functions to create and look-up handles for the
user.
|
| |
|
| |
|
|
|
|
|
|
| |
Copy the IPC command buffer to/from the request context before/after the
handler is invoked. This is part of a move away from using global data
for handling IPC requests.
|
|\
| |
| | |
New service framework
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The old "Interface" class had a few problems such as using free
functions (Which didn't allow you to write the service handler as if it
were a regular class.) which weren't very extensible. (Only received one
parameter with a pointer to the Interface object.)
The new ServiceFramework aims to solve these problems by working with
member functions and passing a generic context struct as parameter. This
struct can be extended in the future without having to update all
existing service implementations.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Fixes #2760
|
|\ \
| |/
|/| |
Services/UDS: Implement DecryptBeaconData.
|
| |
| |
| |
| | |
This function decrypts the encrypted data tags contained in the 802.11 beacon frames.
|
| |
| |
| |
| |
| | |
This has a huge fallout in terms of needing to fix other files because
all service implementations included that file.
|
| |
| |
| |
| | |
Also enhances the GetServiceHandle implementation to be more accurate.
|
| |
| |
| |
| |
| | |
An Event was used way back then when we didn't have proper working
semaphores. Our Semaphore implementation is good enough now.
|
| |
| |
| |
| |
| | |
This will contain the implementation of the sm (Service Manager) system
module.
|
| |
| |
| |
| |
| |
| | |
This allows attaching a HLE handle to a ServerPort at any point after it
is created, allowing port/session creation to be generic between HLE and
regular services.
|
| | |
|
| |
| |
| |
| |
| | |
Most of the code that works with this is or will be in the kernel, so
it's a more appropriate place for it to be.
|
| |
| |
| |
| |
| | |
- Deleted GetStatus() because it wasn't used anywhere outside of Core::System.
- Fixed design flaw where the message bar status could be set despite the game being stopped.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
- Made LoadKernelSystemMode return a pair consisting of a system mode and a result code (Could use review).
- Deleted ErrorOpenGL error code in favor of just having ErrorVideoCore.
- Made dialog messages more clear.
- Compared archive ID in fs_user.cpp to ArchiveIdCode::NCCH as opposed to hex magic.
- Cleaned up some other stuff.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
CAM: use IPCHelper
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Split-up kernel.h
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Now that HandleTable doesn't directly depend on WaitObject anymore, this
can be separated from the main kernel.h header.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This isn't necessary anymore since plain Get works correctly for
WaitObjects.
|
| | |/
| |/| |
|
| | |
| | |
| | |
| | | |
Dynarmic already adds the correct include paths to the library target.
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Modules didn't correctly define their dependencies before, which relied
on the frontends implicitly including every module for linking to
succeed.
Also changed every target_link_libraries call to specify visibility of
dependencies to avoid leaking definitions to dependents when not
necessary.
|
| | |
|
| |
| |
| |
| |
| | |
video_core didn't even properly use them, and they were the source of
many otherwise-unnecessary dependencies from core to video_core.
|
| | |
|
| |
| |
| |
| |
| |
| | |
This removes a dependency inversion between core and common. It's also
the proper place for the file since it makes screen layout decisions
specific to the 3DS.
|
|\ \
| | |
| | | |
Decentralize ResultCode
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
It is now known that result code description vary depending on the
module, and so they're best defined on a per-module basis. To support
this, allow passing in an arbitrary integer instead of limiting to the
ones in the ErrorDescription enum. These will be gradually migrated to
their individual users, but a few will be kept as "common" codes shared
by all modules.
|
| | | |
|
| | | |
|
| |/
|/| |
|
|\ \
| |/
|/| |
Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled.
|
| | |
|
| |
| |
| |
| | |
Inputs are still not flushed to 0 if they are denormals.
|
|\ \
| | |
| | | |
Kernel: Properly update port counters on session disconnection.
|
| | |
| | |
| | |
| | | |
It is not meant to be used by anything other than CreateSessionPair.
|
| | | |
|
| | |
| | |
| | |
| | | |
Reduce the associated port's connection count when a ServerSession is destroyed.
|
|\ \ \
| | | |
| | | | |
Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before sending it to vadd.
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previously we were letting vadd flush the value to positive 0, but there are cases where this behavior is wrong, for example,
vsub: -0 - +0 = -0
vadd: -0 + +0 = +0
Now we'll flush the value to +0 inside vsub, and then negate it.
|
|\ \ \
| | | |
| | | | |
Services/UDS: Generate 802.11 beacon frames when a network is open.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This allows the applications to retrieve 802.11 beacon frames from nearby UDS networks.
Note that the networks are still not announced anywhere.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Kernel: Map special regions according to ExHeader
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This replaces the hardcoded VRAM/DSP mappings with ones made based on
the ExHeader ARM11 Kernel caps list. While this has no visible effect
for most applications (since they use a standard set of mappings) it
does improve support for system modules and n3DS exclusives.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Also move address space mapping out of video_core.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This is 4MB of extra, separate memory that was added on the New 3DS.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
ir: implement new 3ds HID via ir:rst
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Dyncom/VFP: Revert edf30d8 and fix the FPSCR getting invalid values.
|
| | | | | | |
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This reverts commit edf30d84cc0e8299d61c98f5bb40a6428d1576bc.
Conflicts:
src/core/arm/skyeye_common/vfp/vfp_helper.h
src/core/arm/skyeye_common/vfp/vfpdouble.cpp
src/core/arm/skyeye_common/vfp/vfpsingle.cpp
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Had licensing issue around it, in addition to several bugs.
Closes #1632, #1280
|
| | | | | |
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
This was now mostly unused except by thread creation, which used a
symbol of the entrypoint, if available, to name the thread.
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Create a random console_id when config save_file is created
Added button in system config to refresh the console unique id
* Moved the connect for the button from .ui file to constructor of ConfigureSystem
* Added warning and info dialog
Fixup: Make use of qt5 style connects,
renamed the refresh button,
removed some duplicate code,
changed random device and moved all to the generate function
* Changed the random generator to reflect what a real 3DS stores as console unique id
Fixup: Changed the warning message
* Fixup: Set and Create
* Fixup: Added console id label, therfore removed second message box
* Fixup: fixed the endianess
* Fixup: more endianness fixes
* Fixup: Endianness the 3rd
|
|\ \ \
| | | |
| | | | |
ir: implement circle pad pro
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
ldr_ro: use IPC helper
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
dsp_dsp: Messages are modified by service before being sent to DSP
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Services/UDS: Initial support for hosting local-wlan networks.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
It will be needed when generating the beacon frames.
|
| | |
| | |
| | |
| | | |
Currently it will let games create a network as hosts, but will not broadcast it anywhere and will not allow clients to connect.
|
|\ \ \
| | | |
| | | | |
IpcHelper enhancement and APT refactor
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
shared_page: stub battery state
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Add custom layout settings.
|
| | | | | |
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
Refactor input emulation & add SDL gamepad support
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. removed zl, zr and c-stick from HID::PadState. They are handled by IR, not HID
2. removed button handling in EmuWindow
3. removed key_map
4. cleanup #include
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
Reduce host file name and path logging
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Refined thread launch on syscore error messages
|
| |/ / / |
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
IR: separate functions of each port to their own files
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Corrects a few issues with regards to Doxygen documentation, for example:
- Incorrect parameter referencing.
- Missing @param tags.
- Typos in @param tags.
and a few minor other issues.
|
|\ \ \ \
| |/ / /
|/| | | |
Replace built-in Profiler with indicators in status bar
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Now based on std::chrono, and also works in terms of emulated time
instead of frames, so we can in the future frame-limit even when the
display is disabled, etc.
The frame limiter can also be enabled along with v-sync now, which
should be useful for those with displays running at more than 60 Hz.
|
| | | |
| | | |
| | | |
| | | | |
More ergonomic to use and will be required for upcoming changes.
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
APT: implemented Wrap and Unwrap
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Timers: Immediately signal the timer if it was started with an initial value of 0
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
dyncom: Correct SXTAB16 and SXTB16
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Fixes #2556
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Fixes #2567
|
| | | | | |
|
| |/ / /
|/| | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
file_sys: change RomFS archive to Self NCCH archive
|
| | | | | |
|
| |/ / / |
|
| | | |
| | | |
| | | | |
Fixes #2455
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
IPC helper
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Core: update Kernel Config Memory to latest version (11.2)
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
arm_dynarmic: Coprocessor support
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
removed the possibly uneeded cast on values.gdbstub_port
|
| | | | |
| | | | |
| | | | |
| | | | | |
as far as i could tell this cast is unneeded because [GDBStub::SetServerPort](https://github.com/citra-emu/citra/blob/master/src/core/gdbstub/gdbstub.cpp#L897) takes a u16 and [values.gdbstub_port](https://github.com/citra-emu/citra/blob/master/src/core/settings.h#L116) is already a u16
|
|/ / / / |
|
|/ / /
| | |
| | |
| | | |
This allows Phoenix Wright - Dual Destinies to boot.
|
|\ \ \
| | | |
| | | | |
CAM: build the service framework with a dummy implementation
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
CFG: move language override to the boot process
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
core: inline CPU, 132 warnings fixed on GCC
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Fix OSX build warnings about unhandled enumeration values.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |_|/
| |/| | |
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Initial Commit
Added Device logic to Sinks
Started on UI for selecting devices
Removed redundant import
* Audio Core: Complete Device Switching
Complete the device switching implementation by allowing the output
device to be loaded, changed and saved through the configurations menu.
Worked with the Sink abstraction and tuned the "Device Selection"
configuration so that the Device List is automatically populated when
the Sink is changed.
This hopefully addresses the concerns and recommendations mentioned in
the comments of the PR.
* Clean original implementation.
* Refactor GetSinkDetails
|
|\ \ \
| | | |
| | | | |
Service/NFC: stub some functions
|
| | | |
| | | |
| | | |
| | | | |
Tested on: Mini-Mario & Friends - amiibo Challenge
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
As per devkitPro/3dstools@47bea18
|
| | | | |
|
|/ / / |
|
|/ / |
|
|\ \
| | |
| | | |
Implement some TODOs in the code.
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Service/AC: add ac:i service
|
| | | |
|
|\ \ \
| | | |
| | | | |
Kernel: Implemented Pulse event and timers.
|
| |/ /
| | |
| | |
| | | |
Closes #1904
|
|\ \ \
| | | |
| | | | |
config: Add option for specifying screen resolution scale factor.
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Emulate motion sensor in frontend
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Don't yield execution in SleepThread(0) if there are no available threads to run
|
| | | |
| | | |
| | | |
| | | | |
With this we avoid an useless temporary deschedule of the current thread.
|
|\ \ \ \
| | | | |
| | | | | |
Kernel/Semaphore: Fixed a regression in semaphore waits.
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
The regression was caused by a missing check in #2260.
The new behavior is consistent with the real kernel.
|
| | | |
| | | |
| | | | |
Closes #2400
|
|\ \ \ \
| | | | |
| | | | | |
Kernel: Removed the priority boost code for starved threads.
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
After hwtesting and reverse engineering the kernel, it was found that the CTROS scheduler performs no priority boosting for threads like this, although some other forms of scheduling priority-starved threads might take place.
For example, it was found that hardware interrupts might cause low-priority threads to run if the CPU is preempted in the middle of an SVC handler that deschedules the current (high priority) thread before scheduling it again.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Kernel: Mutex priority inheritance and synchronization improvements.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This fixes a potential bug where threads would not get removed from said list if they awoke after waiting with WaitSynchronizationN with wait_all = false
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit removes the overly general THREADSTATUS_WAIT_SYNCH and replaces it with two more granular statuses:
THREADSTATUS_WAIT_SYNCH_ANY when a thread waits on objects via WaitSynchronization1 or WaitSynchronizationN with wait_all = false.
THREADSTATUS_WAIT_SYNCH_ALL when a thread waits on objects via WaitSynchronizationN with wait_all = true.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The implementation is based on reverse engineering of the 3DS's kernel.
A mutex holder's priority will be temporarily boosted to the best priority among any threads that want to acquire any of its held mutexes.
When the holder releases the mutex, it's priority will be boosted to the best priority among the threads that want to acquire any of its remaining held mutexes.
|
| | | |
| | | |
| | | |
| | | | |
This will be useful when implementing mutex priority inheritance.
|
| | |/
| |/|
| | |
| | | |
Not all syscalls should cause reschedules, this commit attempts to remedy that, however, it still does not cover all cases.
|
| | | |
|
|/ /
| |
| |
| | |
Fix Fatal Error in Mini-Mario & Friends - amiibo Challenge
|
|\ \
| | |
| | | |
Config: auto-select region and language
|
| | | |
|
| | | |
|
| |/
|/| |
|
| |
| |
| |
| | |
* Removes circular dependences (common should not depend on core)
|
| | |
|
|\ \
| | |
| | | |
arm_dynarmic: Provide MemoryReadCode callback
|
| | |
| | |
| | |
| | | |
Change of interface in dynarmic 36082087ded632079b16d24137fdd0c450ce82ea
|
|\ \ \
| |/ /
|/| | |
Core: Top-level consolidate & misc cleanup
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
csnd:SND: Reformat source code
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
gdbstub: const correctness changes
|
| | | |
| | | |
| | | |
| | | | |
Also uses size_t as the length indicator type, as is common with buffers.
|
|\ \ \ \
| | | | |
| | | | | |
game_list: Add a context menu with "Open Save Location" option
|
| | | | | |
|
| | | | | |
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
Threading: Reworked the way our scheduler works.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Define a variable with the value of the sync timeout error code.
Use a boost::flat_map instead of an unordered_map to hold the equivalence of objects and wait indices in a WaitSynchN call.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Threads will now be awakened when the objects they're waiting on are signaled, instead of repeating the WaitSynchronization call every now and then.
The scheduler is now called once after every SVC call, and once after a thread is awakened from sleep by its timeout callback.
This new implementation is based off reverse-engineering of the real kernel.
See https://gist.github.com/Subv/02f29bd9f1e5deb7aceea1e8f019c8f4 for a more detailed description of how the real kernel handles rescheduling.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix debug build from #2249
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gdbstub: Remove global variable from public interface
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Currently, this is only ever queried, so adding a function to check if the
server is enabled is more sensible.
If directly modifying this externally is ever desirable, it should be done
by adding a function to the interface, rather than exposing implementation
details directly.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Service/CECD: Add cecd:ndm service
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
hid: Get rid of a double -> float truncation warning
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
float literals need to have the 'f' prefix.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core: Add missing #pragma once directives where applicable
|
| |/ / / / / / |
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
These aren't the AM services.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Service/ACT: move ACT services to folder
|
| | |_|/ / /
| |/| | | | |
|
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | | |
This prevents individual writes touching a cached page, but which don't
overlap the surface, from constantly hitting the surface cache lookup.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Further implementation will happen in a future commit.
Fixes a regression.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
The error code was taken from the 3DS kernel.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
HandleSyncRequest now takes care of calling the command buffer translate function before actually invoking the command handler for HLE services.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Sessions and Ports are now detached from each other.
HLE services are handled by means of a SessionRequestHandler class, Interface now inherits from this class.
The File and Directory classes are no longer kernel objects, but SessionRequestHandlers instead, bound to a ServerSession when requested.
File::OpenLinkFile now creates a new session pair and binds the File instance to it.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Pass the triggering ServerSession to the HLE command handler to differentiate which session caused the request.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Interface is now used by aggregation in ClientPort, to forward service commands to their HLE implementation if needed.
|
| | | | | |
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
All handles obtained via srv::GetServiceHandle or svcConnectToPort are references to ClientSessions.
Service modules will wait on the counterpart of those ClientSessions (Called ServerSessions) using svcReplyAndReceive or svcWaitSynchronization[1|N], and will be awoken when a SyncRequest is performed.
HLE Interfaces are now ClientPorts which override the HandleSyncRequest virtual member function to perform command handling immediately.
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
Support mingw cross-compilation
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously there was a split where some of the services were in the
Service namespace and others were not.
|
|\ \ \ \
| | | | |
| | | | | |
service: Add the cfg:nor service
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
ptm: Use boolean instead of integral value
|
| | | | |
| | | | |
| | | | |
| | | | | |
The third parameter of Write is actually a bool type, not an int.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service: Minor PTM changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
3dbrew documents this as being the exact same as ptm:sysm
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
3dbrew indicates that all services have access to these commands
except for ptm:sets.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Inheriting from Service::Interface makes this obvious.
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fixed the gpu command list size when creating CiTraces.
|
| | |/ / /
| |/| | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the two New3DS-only modules.
3dbrew was used for command information.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service: Add nfc services
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
3dbrew was used for the command information.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
file_sys: Make a few single-argument constructors explicit
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
Prevents implicit conversions.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service: Update function tables
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Updated based off information from 3dbrew.
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
Updated based off information from 3dbrew.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
applet: minor interface changes
|
| | | | |
| | | | |
| | | | |
| | | | | |
Gets rid of basic duplication.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Considering the class is abstract, there's no need to make the constructor
public.
|
| |/ / /
|/| | |
| | | |
| | | | |
Updated based off information from 3dbrew.
|
|\ \ \ \
| |/ / /
|/| | | |
FS: implement archives for other game save data
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | | |
* implement frame limiter
* fixes
|
| |/
|/|
| |
| |
| | |
This function doesn't need to do anything for HLE and some games call it
quite often, spamming up the logs.
|
|/ |
|
|\
| |
| | |
Kernel/Loader: Grab the system mode from the NCCH ExHeader.
|
| |
| |
| |
| |
| |
| |
| | |
3dsx and elf files default to system mode 2 (96MB allocated to the application).
This allows Home Menu to boot without modifications.
Closes #1849
|
| |
| |
| |
| |
| |
| |
| | |
3dsx and elf files default to system mode 2 (96MB allocated to the application).
This allows Home Menu to boot without modifications.
Closes #1849
|
|\ \
| | |
| | | |
Remove the broken frame_skip option
|
| | |
| | |
| | |
| | | |
Fixes #1960.
|
|\ \ \
| |/ /
|/| | |
Correct FS error codes & add path boundary checks
|
| | |
| | |
| | |
| | | |
According to the observation from game and 3dbrew "Used for accessing general NCCH data"
|
| | |
| | |
| | |
| | | |
All "subclasses" of DiskArchive are splitted out. This class is useless
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Now DiskArchive only serves for SDMC, then it should be just a "SDMCArchive"
|
| | |
| | |
| | |
| | | |
ExtSaveData is more similar to SaveData, so let it be a subclass of SaveData
|
| | |
| | |
| | |
| | | |
The error checking of SaveDataArchive is completely different from DiskArchive, so it has to be a new class instead of a subclass of DiskArchive.
|
| | |
| | |
| | |
| | | |
Same as directory, file shouldn't expose Open either.
|
| | |
| | |
| | |
| | | |
Open should not be an interface exposed by Directory because it is the Archive thats implement the methed to open the directory. The service API of 3DS also implies this - Open is not a function of directory service, but is of FS main service
|
| | | |
|
| | |
| | |
| | |
| | | |
and make the mode parameter a reference since it is a BitField union
|
|\ \ \
| | | |
| | | | |
MIC_U: Stub service funcions
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Bravely Default/Second stuck #1822
CancelLibraryApplet stub
* Log parameter.
* Taking care of comments
* Sync with 3DBrew
* White space ?
* lower case
|
|\ \ \
| | | |
| | | | |
cfg: add config block 0x00090000
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Rework the code of err:f service!
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Kernel/Events: Log an error when trying to create Pulse events and timers
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
Related to #1904
|
|/ / / /
| | | |
| | | |
| | | | |
Names now make sense and match 3dbrew.
|
|\ \ \ \
| | | | |
| | | | | |
Fix mingw compilation support
|
| | |/ /
| |/| | |
|
|/ / /
| | |
| | |
| | |
| | | |
Allows users to choose a single screen layout or a large screen layout.
Adds a configuration option to change the prominent screen.
|
| | | |
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
NWM: stub Initialize with an error
|
| |/ |
|
|\ \
| | |
| | | |
Fix build on DragonFly and FreeBSD
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
src/core/hle/service/soc_u.cpp:107:6: error: 'ENODATA' was not declared in this scope
{ENODATA, 43},
^
src/core/hle/service/soc_u.cpp:117:6: error: 'ENOSR' was not declared in this scope
{ENOSR, 53},
^
src/core/hle/service/soc_u.cpp:118:6: error: 'ENOSTR' was not declared in this scope
{ENOSTR, 54},
^
src/core/hle/service/soc_u.cpp:139:6: error: 'ETIME' was not declared in this scope
{ETIME, 75},
^
|
|/ / |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Update the stub code of BOSS
|
| | |
|
|\ \
| | |
| | | |
Debugger: implement wait tree widget
|
| | | |
|
| | | |
|
| |/ |
|
|\ \
| | |
| | | |
FS: implement DeleteDirectoryRecursively
|
| | | |
|
| |/ |
|
| |
| |
| |
| | |
the old implementation modifies the loop variable in the loop. Though it actually works, it is really confusing. Makes it morereadable now.
|
| |
| |
| |
| |
| | |
previous commits changes the behaviour of interrupt when meeting invalid params. Regresses to the same behaviour as before
needs more hwtest
|
| |
| |
| |
| |
| | |
prevent further operation with invalid values which may cause assertion failure or divided by zero.
needs more hwtest
|
| |
| |
| |
| | |
RasterizerCachedMemory doesn't has pointer but should be considered as valid
|
|/
|
|
| |
The old code indented too much to read. Split into functions and do general cleanup.
|
| |
|
| |
|
|
|
|
|
|
|
| |
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Qt graphics configure & V-Sync option
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Auto-detect original shared_font.bin memory base
|
| |
| |
| |
| |
| | |
This allows a file dumped from either an o3DS or a n3DS (and potentially
even an original unrebased file) to be used.
|
|\ \
| | |
| | | |
Implemented CRO
|
| | | |
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
fix #1942 and add a few IPC functions for descriptors
|
| | |
|
| |
| |
| |
| |
| | |
In the case when RD === RN, RD was updated before AddOverflow was called
to check for an overflow, resulting in an incorrect state of the Q flag.
|
|/ |
|
|\
| |
| | |
Correct APT::0x00550040 and APT::0x00560000 function
|
| | |
|
| | |
|
|\ \
| | |
| | | |
dyncom: Fix translation of thumb REVSH
|
| | | |
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
Implement config savegame editing & clean up
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |/ |
|
|\ \
| | |
| | | |
Fix the errorcode of archive handle
|
| | | |
|
|\ \ \
| | | |
| | | | |
HLE/FS: Document some command parameters and implemented command 0x08560240
|
| | | | |
|
| |/ /
|/| | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
Switch context to the same thread if necessary
|
| | | |
|
|\ \ \
| | | |
| | | | |
srv: Update according 3dbrew
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Thread: update timeout when reruning WaitSynch
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
Refactor arm_dyncom_interpreter into several files (take 2)
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
This allows us to get the addressing operation for STRT, LDRT, STRBT,
and LDRBT. We do this so that translation functions don't need to
see the addressing ops directly.
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Kernel: Added ClientPort and ServerPort classes, along with svcCreatePort.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This is part of an ongoing effort to implement support for multiple processes.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Refactor input mapping & implement circle pad modifier
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |_|/ /
|/| | |
| | | |
| | | |
| | | | |
To facilitate the split, some small changes were made to names of
various structures and functions.
|
| | | | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | | |
Specifically, dlp::CLNT and dlp::FKCL
Moves them to their own folder like with other services.
|
| |/
|/| |
|
|\ \
| | |
| | | |
Memory: Remove most usages of GetPointer
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Config block: clean up
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix ftoi and disable VFPv3
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix float exceptions
|
| | | | | | |
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Memory: Added necessary headers and removed unnecessary header
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Improve SMDH support in loaders and frontends
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Also rewrite Qt wrappers to use those.
|
| | | | | | |
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This allows frontends to keep a single loader and use it multiple times
e.g. for code loading and SMDH parsing.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement CheckNew3DS and CheckNew3DSApp
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Append an item[is_new3ds] to config file[System] group
Implement APT::SetNSStateField,it will update the unknown NS_state_field
|
| |/ / / /
|/| | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Update ACT_U
* Create act_a.h
* Create act_a.cpp
* Add service ACT:A
* Add ACT:A source and header
* Fix wrong header
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Set fpscr for new threads
|
| | | | | |
|
| |_|_|/
|/| | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Reserve enough space in the vector that holds the linear heap memory to prevent relocations of the backing memory when growing too much.
Closes #1790
|
|\ \ \
| | | |
| | | | |
Kernel: Implemented shared memory.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Applications can request the kernel to allocate a piece of the linear heap for them when creating a shared memory object.
Shared memory areas are now properly mapped into the target processes when calling svcMapMemoryBlock.
Removed the APT Shared Font hack as it is no longer needed.
|
| | | |
| | | |
| | | |
| | | | |
R0 is used as the last parameter instead of R4.
|
|\ \ \ \
| | | | |
| | | | | |
Kernel/Threads: Dynamically allocate the TLS region for threads.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Each thread gets a 0x200-byte area from the 0x1000-sized page, when all 8 thread slots in a single page are used up, the kernel allocates a new page to hold another 8 entries.
This is consistent with what the real kernel does.
|
| | | | | |
|
| |/ / /
|/| | |
| | | |
| | | | |
The other mode was system mode.
|
|\ \ \ \
| | | | |
| | | | | |
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
|
| |/ / /
| | | |
| | | |
| | | | |
We do not currently implement any cores other than the AppCore (Core 0).
|
|\ \ \ \
| | | | |
| | | | | |
fixup simple type conversions where possible
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
HLE/Applets: Use the correct size for the framebuffer SharedMemory
|
| | |_|/
| |/| | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
hle: Get rid of direct global access to g_reschedule
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This shouldn't be directly exposed if there's already a partial API that operates on it.
We can just provide the rest of that API.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Qt: display game icon and title in the game list
|
| | | | | | |
|
| |_|/ / /
|/| | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
add config block 0x00170000; remove duplicated content
|
| | | | | | |
|
| |/ / / / |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Audio Config: Implement null sink and implement sink configuration
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Update the stub code of NDM service!
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
ac:u: stub CloseAsync; align memory size in svc:GetProcessInfo(type=2)
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
gsp::Gpu: implement AcquireRight, ReleaseRight functions
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This has been entirely superseded by MicroProfile. The rest of the code
can go when a simpler frametime/FPS meter is added to the GUI.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
DSP Service: Cleanup
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Update the code of service y2r!
|
| | |_|/ / / /
| |/| | | | | |
|
| |/ / / / /
|/| | | | | |
|
| | | | | | |
|
| | | | | | |
|
| |/ / / /
|/| | | | |
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| |_|/ /
|/| | | |
SOC:U GetSockOpt/SetSockOpt
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Filter out and translate invalid sockopt names.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
-Implement GetSockOpt / SetSockOpt
-Fix bug in RecvFrom where sending from localhost
does not fill in src_addr/src_addr_len on Linux
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
loader: only decompress code section
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Set Kernel config "Hardware Inited" to 1 (true)
|
| | | | | |
|
|/ / / / |
|
| |_|/
|/| | |
|
|\ \ \
| | | |
| | | | |
Adopted WinterMute's gdbstub changes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This fixes the comments left on the PR (whitespace, SO_REUSEADDR,
comment changes).
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Append the missing function name"GetAppletInfo", "SetAppCpuTimeLimit" and "GetAppCpuTimeLimit" to APT:A
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
frd:u: Initial stub some functions
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Common: Remove Common::make_unique, use std::make_unique
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Dummy implementation dlp:SRVR Service.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
cecd:u: stub GetCecInfoEventHandle, GetChangeStateEventHandle
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GSP: Return proper error codes for register writes
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Prevent cache overflow when single stepping
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Add gsp functions: SetAxiConfigQoSMode, UnregisterInterruptRelayQueue
|
| | |_|/
| |/| | |
|
|/ / / |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
hid: implement accelerometer and gyroscope back-end
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
archive_extsavedata: Fix member initialization order
|
| | |/
| |/|
| | |
| | | |
shared appears in the initializer list before mount_point
|
|\ \ \
| | | |
| | | | |
armstate: Correct FIQ register banking
|
| |/ /
| | |
| | |
| | | |
FIQ has seven banked registers (R8 to R14), not two.
|
|\ \ \
| | | |
| | | | |
soc_u: Get rid of explicit delete and new
|
| |/ / |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
HLE/FS: Fixed many corner cases in our file handling
|
| | |
| | |
| | |
| | | |
This allows Fire Emblem to boot again.
|
| | | |
|
| | |
| | |
| | |
| | | |
This fixes a regression.
|
| | |
| | |
| | |
| | | |
Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
These operations are limited by the open flags specified while opening the file.
|
| | | |
|
| | | |
|
| |/ |
|
|/ |
|
|\
| |
| | |
GetArchiveResource stub
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Not to say these subscript operators aren't totally ugly as is.
|
| |
| |
| |
| |
| |
| | |
SuspendDaemons , ResumeDaemons , OverrideDefaultDaemons
The NDM file move to /core/hle/service/ndm/ now!
|
| | |
|
| | |
|
| |
| |
| |
| | |
An equivalent enum already exists within address_arbiter.h
|
|/ |
|
|\
| |
| | |
HLE/Applets: Implemented a dummy Mii Selector applet.
|
| |
| |
| |
| | |
This prevents some games (like Super Mario 3D Land) from freezing when trying to launch it, however, it's not complete and won't let you go past Mii selection as the parameter structure hasn't been reverse engineered yet.
|
|\ \
| | |
| | | |
gsp_gpu: Change 0 literal to nullptr
|
| | | |
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
renderer_base: Minor changes
|
| | |
| | |
| | |
| | |
| | | |
There's no reason to allow direct access to the unique_ptr instance. Only
its contained pointer.
|
|\ \ \
| |/ /
|/| | |
Output errors in GUI
|
| | |
| | |
| | |
| | | |
Add error popup when citra initialization failed
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Pipe 2 is a DSP pipe that is used to initialize both the DSP hardware (the
application signals to the DSP to initialize) and the application (the DSP
provides the memory location of structures in the shared memory region).
|
| | | |
|
|\ \ \
| | | |
| | | | |
core: Use unrestricted union to hold storage of ResultVal value
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | | |
This is useful for all sorts of things, but mainly to identify save
folders more easily.
|
|\ \ \
| | | |
| | | | |
ac:u IsConnected implemented
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Stub CAM:U service
|
| | | |
|
| | |
| | |
| | |
| | | |
Thanks to @mailwl for the initial version of the stubs.
|
|\ \ \
| | | |
| | | | |
Add THREADPROCESSORID_ALL on SVC::CreateThread
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
DiskDirectory: Initialize the directory member with valid info.
|
| | | | | |
|
| | | | | |
|
| |/ / /
|/| | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit:
* Adds a new subproject, audio_core.
* Defines structures that exist in DSP shared memory.
* Hooks up various other parts of the emulator into audio core.
This sets the foundation for a later HLE DSP implementation.
|
| |/ /
|/| | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Memory: Implemented MMIO
|
| |/ / |
|
| | | |
|
| | |
| | |
| | |
| | | |
This doesn't return by reference so const isn't really necessary
|
|/ / |
|
|\ \
| | |
| | | |
HLE/SVC: Implement UnmapMemoryBlock.
|
| | |
| | |
| | |
| | | |
This implementation will need to be (almost completely) changed when we implement multiprocess support.
|
|\ \ \
| | | |
| | | | |
HLE/Sockets: Fixed the buffer offset in recvfrom.
|
| | | |
| | | |
| | | |
| | | | |
Closes #1277
|
|\ \ \ \
| | | | |
| | | | | |
services: Update some function tables
|
| | |/ /
| |/| | |
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Previously, all VMLS variants would misdecode as CDP
(which isn't necessarily wrong in itself, however
VMLS has it's own label of execution)
|
|\ \ \
| | | |
| | | | |
HLE/Timers: Reset OneShot timers when they are acquired instead of when they're triggered
|
| | | |
| | | |
| | | |
| | | | |
Closes #1139
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
SVC: Fixed ArbitrateAddress to behave as it does on hardware.
|
| | | |
| | | |
| | | |
| | | | |
This was verified with hwtests that i plan to upload later on.
|
| | | | |
|
|/ / / |
|
| | |
| | |
| | |
| | | |
These instructions aren't capable of using the PC as a destination
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
LDRT/LDRBT/STRBT/STRT should simulate the load or store
as if the host CPU is in user mode.
STRT is also allowed to use the PC as an operand
|
|/ / |
|
|\ \
| | |
| | | |
VideoCore: Unify interface to OpenGL and SW rasterizers
|
| | |
| | |
| | |
| | |
| | |
| | | |
This removes explicit checks sprinkled all over the codebase to instead
just have the SW rasterizer expose an implementation with no-ops for
most operations.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| |/
|/| |
Services/Cam: Added new log type and camera enums from 3dbrew.
|
| |
| |
| |
| |
| | |
Followup to #1102
Original author @mailwl
|
| |
| |
| |
| |
| | |
This makes smealum/ctrulib@b96dd51d3349961189d4ab1bc2a5c45deff21c09 work
with Citra.
|
| |
| |
| |
| |
| | |
std::array isn't always guaranteed to explicitly zero out it's contents
without an initializer list.
|
| |
| |
| |
| | |
The VFP registers are 64 bits each, and there are 32 of them.
|
|\ \
| | |
| | | |
csnd_snd: Get rid of type punning
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Add stub functions for Initialize and GenerateRandomData in ssl:C
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Fix read and write register blocks in gdbstub
|
| | |
| | |
| | |
| | | |
Previously, the padding wasn't correctly accounted for which caused the gdbstub to read and write everything after R15 (starting with the dummy FPA registers) incorrectly, which caused CPSR to not be handled correctly. Everything appears to be working as expected with this change.
|
|/ / |
|
|\ \
| |/
|/| |
gdbstub implementation
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Added CSND_ExecuteType0Commands stub.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Implement FS_User::GetFreeBytes
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Loader: Implement NCCH encryption check
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Remove newlines in LOG_* calls
|
| | | |
| | | |
| | | |
| | | | |
The LOG_* function itself already appends one.
|
|/ / / |
|
| |/
|/| |
|
|\ \
| | |
| | | |
Initial implementation of a game list
|
| | | |
|
|\ \ \
| | | |
| | | | |
Use a constexpr function for country initialization in service/cfg
|
| | | |
| | | |
| | | |
| | | | |
This fixes a TODO left over from when we supported MSVC 2013.
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Silence some clang warnings
|
| | |/
| |/| |
|
|/ / |
|
| | |
|
| |
| |
| |
| | |
Verified against a 9.2.0-20 config save
|
| |
| |
| |
| | |
These blocks are required by various games to boot.
|
| | |
|
| | |
|
|/ |
|
|
|
|
|
|
| |
May fix additional texture caching issues. (Though mostly in homebrew, I
haven't seen any commercial software use this to flush anything but
command lists.)
|
| |
|
| |
|
|\
| |
| | |
memory: Get rid of pointer casts
|
| | |
|
| | |
|
|\ \
| | |
| | | |
y2r: Give local variables an initial value
|
| |/
| |
| |
| | |
Keeps compilers/static analyzers quiet.
|
|/ |
|
| |
|
|\
| |
| | |
Add cam:u service function names to its function table
|
| | |
|
|\ \
| |/
|/| |
SVC: Advance time when calling GetSystemTick to escape busy-wait loops
|
| |
| |
| |
| |
| |
| |
| |
| | |
Cubic Ninja waited for the frame to end by spinning on a loop calling
GetSystemTick while doing nothing else. Since GetSystemTick doesn't
cause a reschedule (which advances time), this meant that very little
emulated time would pass inside that loop, causing the game to spend
most of the frame burning away CPU.
|
|\ \
| | |
| | | |
Services/FS: Correctly tell the guest app whether a file was correctly opened or not
|
| | |
| | |
| | |
| | | |
Closes #1067
|
| | |
| | |
| | |
| | | |
Typo which sneaked in through review on #1025
|
| | | |
|
| | |
| | |
| | |
| | | |
Should fix invalid read loops in some games
|
| | | |
|
| |/
|/| |
|
| |
| |
| |
| |
| | |
This brings goodies such as a configurable user interface and
multi-threaded timeline view.
|
| | |
|
|\ \
| | |
| | | |
Kernel: Correct(er) handling of Heap and Linear Heap allocations
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This also adds some basic memory usage accounting. These two types are
used by Super Smash Bros. during startup.
|
| | |
| | |
| | |
| | |
| | |
| | | |
This adds some structures necessary to support multiple memory regions
in the future. It also adds support for different system memory types
and the new linear heap mapping at 0x30000000.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
These helpers aren't really part of the kernel, and mem_map.cpp/h is
going to be moved there next.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
GPU: Implement TextureCopy-mode display transfers
|
| |/
| |
| |
| | |
Fixes glitchy garbage in Fire Emblem 3D scenes.
|
|\ \
| | |
| | | |
Handle `FileType::CIA` in `switch` statements
|
| | |
| | |
| | |
| | |
| | | |
Make `Loader::LoadFile` return an `ErrorNotImplemented` if you call
it on a CIA file.
|
| | |
| | |
| | |
| | |
| | | |
Make `GetFileTypeString` return ‘CIA’ for CIA (CTR Importable
Archive) files.
|
|\ \ \
| |_|/
|/| | |
vfp: use std::swap where applicable
|
| |/ |
|
|/
|
|
|
| |
- Config: Add an option for selecting to use shader JIT or interpreter.
- Qt: Add a menu option for enabling/disabling the shader JIT.
|
|\
| |
| | |
debugger: Add the ability to view VFP register contents
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
SMLAD, SMUAD, SMLSD, SMUSD, SMLALD, SMLSLD,
SMMLA, SMMUL, SMMLS
USAD8, USADA8
|
| |
| |
| |
| | |
{S, U, Q, UQ, SH, UH}{ADD16, ASX, SAX, SUB16, ADD8, SUB8}
|
| |
| |
| |
| |
| | |
REV, REV16, REVSH
Only their ARM encoding, Thumb encoding is still missing.
|
| |
| |
| |
| | |
SSAT, SSAT16, USAT, USAT16
|
| |
| |
| |
| |
| |
| | |
PKH, SEL
SXTAB, SXTAB16, SXTB, SXTB16, SXTH, SXTAH
UXTAB, UXTAB16, UXTB, UXTB16, UXTH, UXTAH
|
|\ \
| |/
|/| |
arm_disasm: Remove unnecessary code
|
| |
| |
| |
| | |
This part of disassembly only determines the opcode, there's no need for offset calculation here.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM
|
| |/ |
|
|\ \
| | |
| | | |
core: Eliminate some unused variable warnings
|
| | | |
|
|\ \ \
| |/ /
|/| | |
dyncom: Remove an unused variable
|
| | |
| | |
| | |
| | | |
This was used prior to InterpreterTranslate existing.
|
|/ / |
|
|\ \
| | |
| | | |
am_net: Update function table data
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
Service/APT: Return proper parameters in GetLockHandle.
|
| | |
|
| |
| |
| |
| |
| | |
Documented some APT functions
This allows applets to boot.
|
| |
| |
| |
| |
| |
| | |
This is considered deprecated in the ARM manual (using PC as an operand),
however, this is still able to be executed on the MPCore (which I'm quite
sure would be rare to begin with).
|
|\ \
| | |
| | | |
SOC:U : Fix WinSock function deprecation
|
| | | |
|
|\ \ \
| | | |
| | | | |
dyncom: Minor cleanups.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
These are already present in arm_dyncom_dec.h.
|
|\ \ \ \
| |/ / /
|/| | | |
Move input values into an array.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Gets rid of C-like parameter passing.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Targeting ARM version variants was only a thing on armemu.
The reset routine also does basically the same thing as NewState.
|
| | | |
| | | |
| | | |
| | | | |
Both the MPCore and the ARM9 have the same data abort model (base restored), so differentiating isn't necessary.
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
armdefs: Remove unnecessary extern keywords
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Core\HLE : Fix Warning
|
| |/ /
| | |
| | |
| | | |
"signed/unsigned mismatch"
|
|\ \ \
| | | |
| | | | |
Yet More Warning Fixes
|
| | | |
| | | |
| | | |
| | | | |
and fix various warnings
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
GSP: Don't try to write memory fill registers if start address is 0
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Verified to be what GSP does via REing. Fixes invalid virt->phys
translation error spam in some games.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
* IncomingDisplayTransfer: Triggered just before a display transfer is performed.
* GSPCommandProcessed: Triggered right after a GSP command is processed.
* BufferSwapped: Triggered when the frames flip
|
|\ \ \
| | | |
| | | | |
Services/AM: Stubbed am:app::GetNumContentInfos to return 0 results.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Named the service functions in am:app as per 3dbrew.
This fixes an illegal read loop in Steel Diver
|
|\ \ \ \
| | | | |
| | | | | |
Services/Logging: Log more useful information when some operations fail.
|
| |/ / /
| | | |
| | | |
| | | | |
Namely OpenFileDirectly, OpenDirectory and OpenArchive
|
|\ \ \ \
| | | | |
| | | | | |
Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.
|
| |/ / /
| | | |
| | | |
| | | | |
They'll be reset if needed during the next svcWaitSynchronization call (if there's any pending)
|
| | | |
| | | |
| | | |
| | | | |
Previously it would just re-read the already decoded instruction and extract the immediate value.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Kernel/SVC: Implemented svcQueryProcessMemory
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
GPU/DisplayTransfer: Implemented bit 5 in the transfer flags.
|
| | | | |
| | | | |
| | | | |
| | | | | |
It tells the GPU to not swizzle/de-swizzle the input during the transfer.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add more frd:u unknown service commands from 3dbrew
|
| | |_|/ /
| |/| | | |
|
| |/ / /
|/| | | |
|
|/ / /
| | |
| | |
| | | |
Changes the log to use hex in the parameter list instead of decimal.
|
|/ / |
|
|\ \
| | |
| | | |
Kernel/SVC: Implemented svcQueryMemory.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Ensure all kernel objects are released during shutdown
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit fixes several kernel object leaks. The most severe of them
was threads not being removed from the private handle table used for
CoreTiming events. This resulted in Threads never being released, which
in turn held references to Process, causing CodeSets to never be freed
when loading other applications.
|
|/ /
| |
| |
| | |
Also a side-benefit of not having implementation-defined behavior.
|
|\ \
| | |
| | | |
Do not load entire RomFS to memory, read from the file as needed instead (rebased)
|
| | | |
|
| | |
| | |
| | |
| | | |
Buffer lengths should be size_t, and file offsets should be u64.
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Y2R: Fix narrowing warning
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
This is exposed in the GUI as a new "CiTrace Recording" widget.
Playback is implemented by a standalone 3DS homebrew application (which only runs reliably within Citra currently; on an actual 3DS it will often crash still).
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix applet includes using iwyu
|
| |/ / |
|
|/ / |
|
|\ \
| | |
| | | |
Library applet support (swkbd for now)
|
| | |
| | |
| | |
| | | |
Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
|
| | | |
|
| | |
| | |
| | |
| | | |
Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
|
| | |
| | |
| | |
| | |
| | |
| | | |
The code now properly configures the process image to match the loaded
binary segments (code, rodata, data) instead of just blindly allocating
a large chunk of dummy memory.
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Cleanup includes, mostly in common
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |/ |
|
| | |
|
|\ \
| | |
| | | |
Implement blended downscaling for display transfers
|
| | | |
|
| |/ |
|
|\ \
| | |
| | | |
Services/SOC: Added command headers to some of the soc commands.
|
| |/ |
|
| | |
|
|/
|
|
| |
Also has a side-benefit of correcting access to the FPEXC register.
|
| |
|
|\
| |
| | |
Color support for Y2R
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Services: Continue separation of services into their own folders
|
| | |
|
| | |
|
|\ \
| | |
| | | |
hw: Fix mismatched Write call
|
| |/ |
|
| |
| |
| |
| | |
These are able to be accessed in any privilege mode.
|
|/ |
|
| |
|
|
|
|
| |
Organize the ExtSaveData folders as they are stored in the console.
|
|\
| |
| | |
arm_dyncom_thumb: Implement missing instructions.
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Commonify video_core utility headers
|
| |/ |
|
|\ \
| |/
|/| |
Remove gpu_refresh_rate configuration option
|
| |
| |
| |
| |
| |
| |
| | |
Changing it makes emulation inherently inaccurate. It also had a wrong
default value (30, whereas the real system has a refresh rate of 60 Hz)
which, even if changed, would continue to be used unless people manually
removed it from their config files.
|
|\ \
| | |
| | | |
Kernel: Add VMManager to manage process address spaces
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This enables more dynamic management of the process address space,
compared to just directly configuring the page table for major areas.
This will serve as the foundation upon which the rest of the Kernel
memory management functions will be built.
|
| |/
|/| |
|
|/
|
|
| |
Modifying a variable twice across a sequence point.
|
|\
| |
| | |
arm_dyncom_thumb: Merge STR/LDR table subsets.
|
| | |
|
|\ \
| | |
| | | |
dyncom: Minor cleanup.
|
| | |
| | |
| | |
| | | |
Thum decoding directly checks if the thumb bit is set instead of using a temporary.
|
| |/ |
|
|\ \
| | |
| | | |
Service/GSP: Implemented ImportDisplayCaptureInfo.
|
| |/ |
|
|/
|
|
| |
This SharedMemory can be passed to service functions (Which should map the memory into their own address space).
|
| |
|
| |
|
| |
|
|
|
|
| |
It's entirely unused. Also allows getting rid of more clunky macros.
|
| |
|
|\
| |
| | |
HID: Stub DisableAccelerometer and DisableGyroscopeLow
|
| | |
|
|\ \
| | |
| | | |
VFP: Log as trace to get rid of spamming.
|
| |/ |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Service::Y2R: Support for grayscale decoding of specific formats
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Implements unrotated planar YUV 4:2:0 -> RGB24 conversions in Y2R.
Currently only the Y (luma) channel is used, so the results don't
contain color. This will be added in a later PR at some point.
This is enough to get all currently know Moflex videos to decode. (Some
don't display on-screen due to seemingly unrelated reasons.)
Thanks to @archshift for doing the initial implementation which I
cleaned up and then fixed the 8x8 block mode.
|
|/
|
|
| |
Gets rid of a whole load of missing brace initialization warnings.
|
| |
|
| |
|
| |
|
|\
| |
| | |
CFG: Update the cfg service to be like other integrated services
|
| | |
|
|\ \
| | |
| | | |
core/video_core: Fix a few warnings when compiling on MSVC.
|
| | |
| | |
| | |
| | |
| | | |
- Unary minus operator applied to unsigned type.
- Unsafe use of bool.
|
| | |
| | |
| | |
| | | |
Sign mismatches and "forcing value to bool" warnings.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Delete unused hle/coprocessor.cpp
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
dyncom: Add ARMv6K NOP and hint instructions to the interpreter.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This is necessary, as hint instructions will be recognized as MSR, which is pretty bad.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
dyncom: Minor cleanup.
|
| | | |
| | | |
| | | |
| | | | |
These are already defined in arm_dyncom_interpreter_dec.cpp.
|
| | | |
| | | |
| | | |
| | | | |
These can simply be const vars.
|
| | | | |
|
| | | | |
|
| |/ / |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Implemented svcs GetResourceLimit, GetResourceLimitCurrentValues and GetResourceLimitLimitValues.
Note that the resource limits do not currently keep track of used objects, since we have no way to distinguish between an object created by the application, and an object created by some HLE module once we're inside Kernel::T::Create.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
memory.cpp/h contains definitions related to acessing memory and
configuring the address space
mem_map.cpp/h contains higher-level definitions related to configuring
the address space accoording to the kernel and allocating memory.
|
| | | |
|
|/ / |
|
| | |
|
|/
|
|
| |
A shift here is intended since the representation is imm12:imm4
|
|\
| |
| | |
PTM: Changed the ptm services to be like the IR, HID, and APT services.
|
| |
| |
| |
| | |
IR, HID, and APT services.
|
|\ \
| | |
| | | |
Core/Memory: Add TLS support for creating up to 300 threads
|
| | | |
|
|\ \ \
| | | |
| | | | |
Thread: Remove the idle thread
|
| | | |
| | | |
| | | |
| | | | |
Instead just use nullptr to represent no thread is active.
|
|\ \ \ \
| | | | |
| | | | | |
Core/Scheduling: Prepare the new priority in the thread queue when svcSetPriority is called
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
vfp: Handle flush-to-zero mode.
|
| |/ / / |
|
|\ \ \ \
| |_|/ /
|/| | | |
dyncom: Stub MCRR and MRRC
|
| |/ /
| | |
| | |
| | |
| | | |
There's no other coprocessor outside the VFP (which has its own VMOV variants) in which the MPCore can send/retrieve data from.
Stubbed so citra won't crash and burn on the odd chance someone actually tries to use these.
|
|\ \ \
| |_|/
|/| | |
Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread
|
| | | |
|
| | | |
|
| |/
|/| |
|
|/ |
|
|\
| |
| | |
Fix crashes due to un-initialized GSP shared memory
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This works around crashes related to GSP/HID/etc. shared memory blocks
having garbage values. The proper fix requires proper management of
mapped memory blocks in the process.
|
| | |
|
| | |
|
|/
|
|
|
| |
The TLS area for thread T with id Ti is located at TLS_AREA_VADDR + (Ti - 1) * 0x200.
This allows some games like Mario Kart 7 to continue further.
|
|
|
|
|
|
|
| |
When the macro was introduced in 326ec51261299e48de97592631c02523da9c8118
it wasn't noticed that it conflicted in name with a heavily used macro
inside of dyncom. This causes some compiler warnings. Since it's only
lightly used, it was opted to simply remove the new macro.
|
|\
| |
| | |
Small memory map definitions cleanup
|
| | |
|
| |
| |
| |
| |
| | |
Also adds better documentation and removes the one-off reimplementation
of the function in pica.h.
|
| | |
|
| | |
|
|/ |
|
|
|
|
|
| |
It is of very limited practical utility currently, and will soon be
impossible to support due to more accurate memory map emulation.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This has been obsoleted by the field in Process.
|
| |
|
| |
|
|\
| |
| | |
dyncom: Remove an unnecessary variable in the interpreter
|
| |
| |
| |
| | |
All this was doing was needlessly aliasing a variable.
|
|/ |
|
|
|
|
|
|
| |
It is superfluous for Citra. (It's only really necessary if you're doing
JIT. We were using it but not taking any advantage from it.) This should
make 32-bit builds work again.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Services/Loader: Use more sensible log formats for certain functions along with more info being logged.
|
| |
| |
| |
| | |
along with more info being logged.
|
| | |
|
| |
| |
| |
| | |
Gets rid of a sizeable amount of stuff in armdefs.
|
| | |
|
|\ \
| | |
| | | |
De-inline functions from Interface, removing them from service.h
|
| | |
| | |
| | |
| | | |
This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
|
| | | |
|
| | | |
|
|/ / |
|
| | |
|
| |
| |
| |
| | |
- CreateMutex/ReleaseMutex/ReleaseSemaphore/SetTimer/CancelTimer/ArbitrateAddress
|
| | |
|
| |
| |
| |
| |
| |
| | |
SVC: Return correct error code on invalid CreateThread processor ID.
SVC: Assert when creating a thread with an invalid userland priority.
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
gpu: Fix a missing format specifier
|
| | |
|
|\ \
| | |
| | | |
dyncom: Remove unnecessary enum and typedef
|
| |/
| |
| |
| | |
Also fixes descriptions in the process.
|
|\ \
| |/
|/| |
IR: Move The IR services to their own folder and implement "GetHandles"
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
dyncom: Set the MPCore CP15 register reset values on initialization.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Also gets rid of preprocessor mumbo-jumbo
|
| | | |
|
| | | |
|
|/ /
| |
| |
| | |
The switch cases will always be hit, but this makes compilers stop complaining.
|
| | |
|
|\ \
| |/
|/| |
Allow the user to set the background clear color during emulation
|
| |
| |
| |
| | |
The background color can be seen at the sides of the bottom screen or when the window is wider than normal.
|
|\ \
| |/
|/| |
Services: Stubs and minor changes
|
| | |
|