summaryrefslogtreecommitdiff
path: root/src/core/loader (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-02-19scope_exit: Make constexprGravatar FearlessTobi1-1/+3
Allows the use of the macro in constexpr-contexts. Also avoids some potential problems when nesting braces inside it.
2024-01-25vfs: Move vfs files to their own directoryGravatar FearlessTobi2-2/+2
2024-01-23loader: also register fs process for raw exefs partitionGravatar Liam1-0/+8
2024-01-15core: Support multiple modules per patcherGravatar GPUCode3-39/+80
2024-01-13loader: fix homebrew nro registrationGravatar Liam1-6/+6
2024-01-11fsp-srv: use program registry for SetCurrentProcessGravatar Liam5-20/+12
2023-12-22kernel: restrict nce to applicationsGravatar Liam1-3/+4
2023-12-01file_sys: handle null romfsGravatar Liam1-4/+2
2023-11-29core: Rename patcher fileGravatar GPUCode3-3/+3
2023-11-26loader: fix gcc compileGravatar Liam1-1/+1
2023-11-25loader: apply nso patch to offset program imageGravatar Liam1-4/+6
2023-11-25core: Define HAS_NCE macroGravatar GPUCode3-9/+9
2023-11-25Address some review commentsGravatar GPUCode2-10/+11
2023-11-25android: Add cpu bakend gui toggleGravatar GPUCode2-3/+5
2023-11-25arm: Implement native code execution backendGravatar Liam5-26/+162
2023-11-25kernel: Manually specify aslr region startGravatar Liam3-3/+5
2023-09-30loader: don't reassign program ID on npdm reparseGravatar Liam1-1/+1
2023-09-14core: improve debug workflowGravatar Liam6-10/+16
2023-09-06core: implement basic integrity verificationGravatar Liam8-1/+165
2023-08-25kernel: offset code entry point for 39-bit address space type (#11326)Gravatar liamwhite4-4/+4
2023-08-15vfs: expand support for NCA readingGravatar Liam10-40/+20
2023-07-14k_process: PageTable -> GetPageTableGravatar Liam4-4/+4
2023-07-12file_sys/content_archive: Detect compressed NCAs (#11047)Gravatar Tobias1-0/+2
2023-06-09android: Add proper homebrew checkGravatar Charles Lombardo2-1/+14
2023-03-22kernel: use KTypedAddress for addressesGravatar Liam3-3/+3
2023-02-13general: rename CurrentProcess to ApplicationProcessGravatar Liam1-1/+1
2022-09-25core/loader: Return nullptr if file is nullptrGravatar Merry1-0/+4
2022-08-19code: dodge PAGE_SIZE #defineGravatar Kyle Kienapfel3-3/+3
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
2022-08-01core/loader: remove ELF loaderGravatar Liam4-311/+0
2022-06-13general: fix compilation on MinGW GCC 12Gravatar Liam1-5/+4
2022-06-05common: consolidate ELF structure definitionsGravatar Liam1-167/+16
2022-04-28chore: add missing SPDX tagsGravatar Andrea Pappacoda2-6/+6
Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
2022-04-23general: Convert source file copyright comments over to SPDXGravatar Morph18-54/+36
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.
2022-03-03loader: log the type of mismatching file-extensionGravatar BytesGalore1-1/+2
2022-02-02general: Replace NonCopyable struct with equivalentsGravatar Lioncash1-1/+5
2021-12-17core: loader: kip: Minimal changes to fix KIP loading.Gravatar bunnei1-1/+7
- Allows us to boot KIP (kernal apps), useful for testing the kernel.
2021-12-05loader: Support loading subsdk{8,9}Gravatar jam1garner1-2/+3
2021-11-03core: Remove unused includesGravatar ameerj10-13/+0
2021-07-20file_sys: Support load game collection (#6582)Gravatar Feng Chen6-29/+52
Adds support for loading games with multiple programs embedded within such as the Dragon Quest 1+2+3 Collection
2021-06-28general: Make most settings a BasicSettingGravatar lat9nq2-4/+4
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.
2021-05-25common: fs: Rework the Common Filesystem interface to make use of ↵Gravatar Morph6-6/+1
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
2021-05-16core: Make variable shadowing a compile-time errorGravatar Lioncash4-16/+15
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2021-05-05hle: kernel: Rename Process to KProcess.Gravatar bunnei20-37/+37
2021-05-03core: Resolve misc cases of variable shadowingGravatar Lioncash2-6/+9
Resolves shadowing warnings that aren't in a particularly large subsection of core. Brings us closer to turning -Wshadow into an error. All that remains now is for cases in the kernel (left untouched for now since a big change by bunnei is pending), and a few left over in the service code (will be tackled next).
2021-04-27loader: Resolve instances of variable shadowingGravatar Lioncash19-169/+257
Eliminates variable shadowing cases across all the loaders to bring us closer to enabling variable shadowing as an error in core.
2021-04-23program_metadata: Set a default resource size when a NPDM is not presentGravatar Morph1-1/+2
Sets a default size of 0x1FE00000 bytes (510 MiB) for the system_resource_size when a NPDM is not present.
2021-04-14common: Move settings to common from core.Gravatar bunnei2-2/+2
- Removes a dependency on core and input_common from common.
2021-02-18hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.Gravatar bunnei5-5/+5
2021-01-28hle: kernel: KThread: Reorganize thread priority defaults.Gravatar bunnei2-4/+4
2021-01-28core: hle: kernel: Rename Thread to KThread.Gravatar bunnei2-2/+2