summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nso.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2021-06-28general: Make most settings a BasicSettinglat9nq1-2/+2
2021-05-26common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph1-1/+0
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-3/+3
2021-04-27loader: Resolve instances of variable shadowingLioncash1-11/+11
2021-04-15common: Move settings to common from core.bunnei1-1/+1
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-1/+1
2021-01-29hle: kernel: KThread: Reorganize thread priority defaults.bunnei1-2/+2
2021-01-29core: hle: kernel: Rename Thread to KThread.bunnei1-1/+1
2020-11-27core: Eliminate remaining usages of the global system instanceLioncash1-4/+1
2020-11-18patch_manager: Remove usages of the global system instanceLioncash1-1/+1
2020-10-13core/CMakeLists: Make some warnings errorsLioncash1-1/+1
2020-09-22General: Make use of std::nullopt where applicableLioncash1-3/+3
2020-09-17loader/nso: Remove unnecessary [[maybe_unused]]Lioncash1-2/+1
2020-09-16core/loader: Remove dependencies on the global system instanceLioncash1-4/+4
2020-04-18loader/nso: Resolve moves not occurring in DecompressSegmentLioncash1-1/+1
2020-04-17loader: nso: Fix loader size and arguments.bunnei1-10/+12
2020-04-17core: memory: Move to Core::Memory namespace.bunnei1-2/+2
2020-04-17loader: nso: Fix loading of static objects to be properly sized and aligned.bunnei1-19/+9
2020-01-23loader: provide default arguments (zero byte) to NSOsMichael Scire1-3/+8
2020-01-18core/loaders: Simplify PhysicalMemory usage.Markus Wick1-5/+7
2019-09-30core/loader: Track the NSO build ID of the current processZach Hilman1-0/+1
2019-09-22nso: Pass build ID directlyZach Hilman1-2/+1
2019-07-19VM_Manager: Align allocated memory to 256bytesFernando Sahmkow1-1/+1
2019-06-12common/hex_util: Combine HexVectorToString() and HexArrayToString()Lioncash1-2/+2
2019-05-26loader: Move NSO module tracking to AppLoaderZach Hilman1-3/+9
2019-05-25loader/nso: Silence sign-comparison warningLioncash1-1/+1
2019-05-25core: Track load offsets of NSO modulesZach Hilman1-0/+3
2019-05-01loader/nso: Remove left-in debug pragmaLioncash1-2/+0
2019-04-12core/core: Move process execution start to System's Load()Lioncash1-6/+5
2019-03-29Addressed feedbackunknown1-1/+0
2019-03-29core: Do not link LZ4 to core. Use common/data_compression for nso segment decompression instead.unknown1-0/+1
2019-03-29Addressed feedbackunknown1-4/+4
2019-03-29core: Do not link LZ4 to core. Use common/data_compression for nso segment decompression instead.unknown1-10/+7
2019-03-28patch_manager: Dump NSO name with build IDZach Hilman1-2/+4
2019-03-22kernel/codeset: Make CodeSet's memory data member a regular std::vectorLioncash1-1/+1
2019-03-22loader/nso: Place translation unit specific functions into an anonymous namespaceLioncash1-20/+21
2019-03-22file_sys/cheat_engine: Remove use of global system accessorsLioncash1-4/+4
2019-03-22loader/nso: Clean up use of magic constantsLioncash1-4/+6
2019-03-22file_sys/patch_manager: Deduplicate NSO headerLioncash1-50/+18
2019-03-22loader/nso: Fix definition of the NSO header structLioncash1-3/+15
2019-03-20kernel: Move CodeSet structure to its own source filesLioncash1-0/+1
2019-03-05vm_manager: Remove cheat-specific ranges from VMManagerZach Hilman1-7/+3
2019-03-05loader/nso: Set main code region in VMManagerZach Hilman1-1/+17
2018-12-03loader/nso: Remove dependency on the System classLioncash1-4/+4
2018-10-29patch_manager: Add support for dumping decompressed NSOsZach Hilman1-1/+1
2018-10-15nso: Return an optional address from LoadModuleLioncash1-5/+7
2018-10-15nso: Make LoadModule take a VfsFile by const referenceLioncash1-9/+6
2018-10-12kernel/process: Make CodeSet a regular non-inherited objectLioncash1-12/+9
2018-10-07nso/nro: Use default allocation size for arg_dataZach Hilman1-6/+8
2018-10-07cmd: Support passing game arguments from command lineZach Hilman1-1/+1
2018-10-07nso/nro: Add NSO arguments structure to data sectionZach Hilman1-1/+14
2018-10-02nso: Optimize loading of IPS patchesZach Hilman1-2/+2
2018-10-01nso: Add framework to support patching of uncompressed NSOsZach Hilman1-1/+14
2018-10-01nso: Replace NSOHeader padding bytes with build IDZach Hilman1-2/+1
2018-09-30kernel/process: Make data member variables privateLioncash1-1/+1
2018-09-29loader: Make the Load() function take a process as a regular reference, not a SharedPtrLioncash1-3/+3
2018-09-25memory: Dehardcode the use of fixed memory range constantsLioncash1-4/+5
2018-09-24process/vm_manager: Amend API to allow reading parameters from NPDM metadataLioncash1-5/+0
2018-09-21Added support for uncompressed NSOs (#1374)David1-3/+12
2018-09-13kernel/thread: Include thread-related enums within the kernel namespaceLioncash1-1/+2
2018-08-31core/core: Replace includes with forward declarations where applicableLioncash1-0/+1
2018-08-29kernel: Eliminate kernel global stateLioncash1-2/+4
2018-08-15loader: Remove address mapping remnants from citraLioncash1-1/+0
2018-08-03kernel/process: Use accessors instead of class members for referencing segment arrayLioncash1-1/+1
2018-07-20nso: Silence implicit sign conversion warningsLioncash1-4/+6
2018-07-20nso: Remove unused function ReadSegment()Lioncash1-13/+0
2018-07-19loader/nso: Check if read succeeded in IdentifyFile() before checking magic valueLioncash1-4/+6
2018-07-19loader/nso: Remove unnecessary vector resizesLioncash1-4/+2
2018-07-19loader/nso: Resolve sign mismatch warningsLioncash1-1/+1
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-76/+17
2018-07-17General Filesystem and Save Data Fixes (#670)Zach Hilman1-1/+1
2018-07-13More improvements to GDBStub (#653)Hedges1-0/+4
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-16/+75
2018-07-06Virtual Filesystem (#597)Zach Hilman1-75/+16
2018-07-03Rename logging macro back to LOG_*James Rowe1-2/+2
2018-06-21Add support for decrypted NCA files (#567)Zach Hilman1-11/+68
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-1/+1
2018-04-27general: Convert assertion macros over to be fmt-compatibleLioncash1-1/+1
2018-04-25loader: Move old logging macros over to new fmt-capable onesLioncash1-3/+2
2018-04-21Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOsSubv1-1/+1
2018-03-31memory: Fix stack region.bunnei1-1/+1
2018-03-16kernel: Move stack region outside of application heap.bunnei1-1/+1
2018-03-14core: Move process creation out of global state.bunnei1-3/+2
2018-03-02Kernel: Store the program id in the Process class instead of the CodeSet class.Subv1-4/+4
2018-02-25loader: Check error on NPDM load, use TID for CodeSetshinyquagsire231-3/+3
2018-02-14nso: Silence formatting specifier warningsLioncash1-2/+4
2018-01-20loader: Clean up ctors and includes.bunnei1-0/+4
2018-01-20loader: Refactor to also pass filepath into IdentifyType.bunnei1-2/+1
2018-01-20nso: Remove code specific to directory loading.bunnei1-16/+4
2018-01-17Remove relocation on NSO/NROgdkchan1-9/+1
2018-01-16clang-formatMerryMage1-1/+2
2018-01-16nso: Modify .bss size calculation logicRozlette1-3/+7
2018-01-15nso: Load subsdk4 if available.bunnei1-1/+1
2018-01-13yuzu: Update license text to be consistent across project.bunnei1-1/+1
2018-01-07nso: Always load the filepath specified by the user.bunnei1-1/+3
2017-10-23nso: Load more common submodules.bunnei1-15/+11
2017-10-23memory: Support 32-bit paging, move heap address space up.bunnei1-1/+1
2017-10-15core: Refactor MakeMagic usage and remove dead code.bunnei1-3/+4
2017-10-14nso: Add a log for loading submodules.bunnei1-0/+1
2017-10-10loader: Various improvements for NSO/NRO loaders.bunnei1-26/+24
2017-10-06loader: Add support for NRO, as well as various fixes and shared linker.bunnei1-128/+15
2017-10-04nso: Fixes to support homebrew NSOs without a MOD header.bunnei1-16/+22
2017-09-30nso: Refactor and allocate .bss section.bunnei1-112/+111
2017-09-30loader: Add support for loading an NSO.bunnei1-0/+295