summaryrefslogtreecommitdiff
path: root/src/core/loader/nro.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vfs: Move vfs files to their own directoryGravatar FearlessTobi2024-01-251-1/+1
|
* loader: fix homebrew nro registrationGravatar Liam2024-01-131-6/+6
|
* fsp-srv: use program registry for SetCurrentProcessGravatar Liam2024-01-111-2/+4
|
* core: Rename patcher fileGravatar GPUCode2023-11-291-1/+1
|
* core: Define HAS_NCE macroGravatar GPUCode2023-11-251-3/+3
|
* Address some review commentsGravatar GPUCode2023-11-251-3/+3
|
* android: Add cpu bakend gui toggleGravatar GPUCode2023-11-251-1/+1
|
* arm: Implement native code execution backendGravatar Liam2023-11-251-5/+57
|
* kernel: Manually specify aslr region startGravatar Liam2023-11-251-1/+2
|
* core: improve debug workflowGravatar Liam2023-09-141-1/+2
|
* kernel: offset code entry point for 39-bit address space type (#11326)Gravatar liamwhite2023-08-251-1/+1
|
* k_process: PageTable -> GetPageTableGravatar Liam2023-07-141-1/+1
|
* android: Add proper homebrew checkGravatar Charles Lombardo2023-06-091-1/+12
|
* code: dodge PAGE_SIZE #defineGravatar Kyle Kienapfel2022-08-191-1/+1
| | | | | | | | | | | | | | | | | | | | | Some header files, specifically for OSX and Musl libc define PAGE_SIZE to be a number This is great except in yuzu we're using PAGE_SIZE as a variable Specific example `static constexpr u64 PAGE_SIZE = u64(1) << PAGE_BITS;` PAGE_SIZE PAGE_BITS PAGE_MASK are all similar variables. Simply deleted the underscores, and then added YUZU_ prefix Might be worth noting that there are multiple uses in different classes/namespaces This list may not be exhaustive Core::Memory 12 bits (4096) QueryCacheBase 12 bits ShaderCache 14 bits (16384) TextureCache 20 bits (1048576, or 1MB) Fixes #8779
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* general: Make most settings a BasicSettingGravatar lat9nq2021-06-281-2/+2
| | | | | | | | | | | Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
* common: fs: Rework the Common Filesystem interface to make use of ↵Gravatar Morph2021-05-251-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | std::filesystem (#6270) * common: fs: fs_types: Create filesystem types Contains various filesystem types used by the Common::FS library * common: fs: fs_util: Add std::string to std::u8string conversion utility * common: fs: path_util: Add utlity functions for paths Contains various utility functions for getting or manipulating filesystem paths used by the Common::FS library * common: fs: file: Rewrite the IOFile implementation * common: fs: Reimplement Common::FS library using std::filesystem * common: fs: fs_paths: Add fs_paths to replace common_paths * common: fs: path_util: Add the rest of the path functions * common: Remove the previous Common::FS implementation * general: Remove unused fs includes * string_util: Remove unused function and include * nvidia_flags: Migrate to the new Common::FS library * settings: Migrate to the new Common::FS library * logging: backend: Migrate to the new Common::FS library * core: Migrate to the new Common::FS library * perf_stats: Migrate to the new Common::FS library * reporter: Migrate to the new Common::FS library * telemetry_session: Migrate to the new Common::FS library * key_manager: Migrate to the new Common::FS library * bis_factory: Migrate to the new Common::FS library * registered_cache: Migrate to the new Common::FS library * xts_archive: Migrate to the new Common::FS library * service: acc: Migrate to the new Common::FS library * applets/profile: Migrate to the new Common::FS library * applets/web: Migrate to the new Common::FS library * service: filesystem: Migrate to the new Common::FS library * loader: Migrate to the new Common::FS library * gl_shader_disk_cache: Migrate to the new Common::FS library * nsight_aftermath_tracker: Migrate to the new Common::FS library * vulkan_library: Migrate to the new Common::FS library * configure_debug: Migrate to the new Common::FS library * game_list_worker: Migrate to the new Common::FS library * config: Migrate to the new Common::FS library * configure_filesystem: Migrate to the new Common::FS library * configure_per_game_addons: Migrate to the new Common::FS library * configure_profile_manager: Migrate to the new Common::FS library * configure_ui: Migrate to the new Common::FS library * input_profiles: Migrate to the new Common::FS library * yuzu_cmd: config: Migrate to the new Common::FS library * yuzu_cmd: Migrate to the new Common::FS library * vfs_real: Migrate to the new Common::FS library * vfs: Migrate to the new Common::FS library * vfs_libzip: Migrate to the new Common::FS library * service: bcat: Migrate to the new Common::FS library * yuzu: main: Migrate to the new Common::FS library * vfs_real: Delete the contents of an existing file in CreateFile Current usages of CreateFile expect to delete the contents of an existing file, retain this behavior for now. * input_profiles: Don't iterate the input profile dir if it does not exist Silences an error produced in the log if the directory does not exist. * game_list_worker: Skip parsing file if the returned VfsFile is nullptr Prevents crashes in GetLoader when the virtual file is nullptr * common: fs: Validate paths for path length * service: filesystem: Open the mod load directory as read only
* hle: kernel: Rename Process to KProcess.Gravatar bunnei2021-05-051-4/+4
|
* loader: Resolve instances of variable shadowingGravatar Lioncash2021-04-271-7/+6
| | | | | Eliminates variable shadowing cases across all the loaders to bring us closer to enabling variable shadowing as an error in core.
* common: Move settings to common from core.Gravatar bunnei2021-04-141-1/+1
| | | | - Removes a dependency on core and input_common from common.
* hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.Gravatar bunnei2021-02-181-1/+1
|
* hle: kernel: KThread: Reorganize thread priority defaults.Gravatar bunnei2021-01-281-2/+2
|
* core: hle: kernel: Rename Thread to KThread.Gravatar bunnei2021-01-281-1/+1
|
* core: Eliminate remaining usages of the global system instanceGravatar Lioncash2020-11-271-5/+1
| | | | | | Removes all remaining usages of the global system instance. After this, migration can begin to migrate to being constructed and managed entirely by the various frontends.
* core/CMakeLists: Make some warnings errorsGravatar Lioncash2020-10-131-1/+1
| | | | | | | | | Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
* file_sys/romfs_factory: Eliminate usage of the global system accessorGravatar Lioncash2020-09-161-2/+2
|
* core/loader: Remove dependencies on the global system instanceGravatar Lioncash2020-09-161-2/+2
| | | | | | | | | Now all that remains is: 18 instances in file_sys code 14 instances in GDB stub code (this can be tossed wholesale) 4 instances in HLE code 2 instances in settings code.
* loader: nro: Fix process initialization using ProgramMetadata default.Gravatar bunnei2020-04-201-10/+13
|
* loader: elf/kip/nro: Updates for new VMM.Gravatar bunnei2020-04-171-2/+2
|
* core: memory: Move to Core::Memory namespace.Gravatar bunnei2020-04-171-2/+2
| | | | - helpful to disambiguate Kernel::Memory namespace.
* yuzu: Port old usages of Filesystem namespace to FilesystemControllerGravatar Zach Hilman2019-09-211-1/+3
|
* nro: Implement ReadControlDataGravatar Nick Renieris2019-09-081-0/+9
| | | | | | With this, the "Developer" field in the Properties for homebrew is now populated. Signed-off-by: Nick Renieris <velocityra@gmail.com>
* VM_Manager: Align allocated memory to 256bytesGravatar Fernando Sahmkow2019-07-191-1/+1
| | | | | | 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.
* core/core: Move process execution start to System's Load()Gravatar Lioncash2019-04-111-7/+7
| | | | | | | | | 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.
* kernel/codeset: Make CodeSet's memory data member a regular std::vectorGravatar Lioncash2019-03-221-1/+1
| | | | | | | | | | | 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.
* kernel: Move CodeSet structure to its own source filesGravatar Lioncash2019-03-201-0/+1
| | | | | | | | 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.
* loader/nro: Make the static LoadNro function internally linkedGravatar Lioncash2018-12-021-4/+5
| | | | | This simply acts as a forwarding function for the Load() function, so this doesn't need to be directly exposed.
* loader/nro: Remove dependency on the System classGravatar Lioncash2018-12-021-8/+6
| | | | | | 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()
* process: Make MirrorMemory take state to map new memory asGravatar Zach Hilman2018-11-151-2/+5
| | | | Credits to Subv
* loader/nro: Call RegisterRomFS from LoadGravatar Zach Hilman2018-10-291-0/+5
| | | | Allows NRO homebrew to use the RomFS in the ASET section.
* nro: Make LoadNro method accessible outside of apploader code.Gravatar bunnei2018-10-251-6/+15
|
* nro: Make LoadNro take a VfsFile by const referenceGravatar Lioncash2018-10-141-5/+5
| | | | | | 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.
* kernel/process: Make CodeSet a regular non-inherited objectGravatar Lioncash2018-10-121-12/+9
| | | | | | | | 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.
* nso/nro: Use default allocation size for arg_dataGravatar Zach Hilman2018-10-071-6/+8
|
* cmd: Support passing game arguments from command lineGravatar Zach Hilman2018-10-071-1/+1
| | | | Uses -p (--program) and following string as args.
* nso/nro: Add NSO arguments structure to data sectionGravatar Zach Hilman2018-10-071-0/+13
| | | | Only added if arguments string is non-empty and a pass is requested by loader.
* kernel/process: Make data member variables privateGravatar Lioncash2018-09-301-1/+1
| | | | | | | 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.
* loader: Make the Load() function take a process as a regular reference, not ↵Gravatar Lioncash2018-09-291-3/+3
| | | | | | | | | | a SharedPtr 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.
* memory: Dehardcode the use of fixed memory range constantsGravatar Lioncash2018-09-241-3/+4
| | | | | | | | 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.
* process/vm_manager: Amend API to allow reading parameters from NPDM metadataGravatar Lioncash2018-09-241-5/+0
| | | | | | | | | 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.