summaryrefslogtreecommitdiff
path: root/src/core/loader (follow)
Commit message (Collapse)AuthorAgeFilesLines
* VM_Manager: Align allocated memory to 256bytesGravatar Fernando Sahmkow2019-07-194-4/+4
| | | | | | 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.
* file_sys: Rename other ContentRecordType membersGravatar Bakugo2019-07-022-2/+3
|
* Merge pull request #2546 from DarkLordZach/kipsGravatar bunnei2019-06-214-1/+157
|\ | | | | loader, file_sys: Add support for parsing and loading KIP (Kernel Internal Process) files
| * kernel_executable: Optimize BLZ decompressionGravatar Zach Hilman2019-06-061-4/+8
| |
| * loader: Add recognition for KIP file typeGravatar Zach Hilman2019-06-052-0/+11
| |
| * loader: Add KIP and INI file parser-specific errorsGravatar Zach Hilman2019-06-052-1/+9
| |
| * loader: Add AppLoader_KIP for KIP filesGravatar Zach Hilman2019-06-052-0/+133
| |
* | Merge pull request #2482 from DarkLordZach/prepoGravatar bunnei2019-06-2113-0/+64
|\ \ | | | | | | core: Add detailed local reporting feature for development
| * | loader: Move NSO module tracking to AppLoaderGravatar Zach Hilman2019-05-2613-3/+64
| | | | | | | | | Also cleanup of general stuff
| * | core: Track load offsets of NSO modulesGravatar Zach Hilman2019-05-251-0/+3
| | | | | | | | | | | | Needed for backtrace decomposition
* | | common/hex_util: Combine HexVectorToString() and HexArrayToString()Gravatar Lioncash2019-06-121-2/+2
| | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #2526 from lioncash/globalGravatar Zach Hilman2019-06-051-11/+0
|\ \ \ | |_|/ |/| | core/telemetry_session: Remove usages of the global system accessor
| * | core/loader: Remove LoadKernelSystemModeGravatar Lioncash2019-05-281-11/+0
| |/ | | | | | | This is a hold-over from Citra and doesn't apply to yuzu.
* / loader/nso: Silence sign-comparison warningGravatar Lioncash2019-05-251-1/+1
|/ | | | | This was previously performing a size_t == int comparison. Silences a -Wsign-compare warning.
* loader/nso: Remove left-in debug pragmaGravatar Lioncash2019-04-301-2/+0
| | | | Unintentionally introduced in 552d5071fa171165e4054392d8bb6bf2ecc924e2
* core/core: Move process execution start to System's Load()Gravatar Lioncash2019-04-1117-98/+128
| | | | | | | | | 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.
* Merge pull request #1957 from DarkLordZach/title-providerGravatar bunnei2019-04-091-2/+4
|\ | | | | file_sys: Provide generic interface for accessing game data
| * patch_manager: Dump NSO name with build IDGravatar Zach Hilman2019-03-271-2/+4
| |
* | core: Add missing override specifiers where applicableGravatar Lioncash2019-04-041-1/+1
| | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #2093 from FreddyFunk/disk-cache-better-compressionGravatar bunnei2019-04-031-10/+7
|\ \ | | | | | | Better LZ4 compression utilization for the disk based shader cache and the yuzu build system
| * | Addressed feedbackGravatar unknown2019-03-291-4/+4
| | |
| * | core: Do not link LZ4 to core. Use common/data_compression for nso segment ↵Gravatar unknown2019-03-291-10/+7
| |/ | | | | | | decompression instead.
* | Merge pull request #2281 from lioncash/memoryGravatar bunnei2019-04-013-3/+3
|\ \ | |/ |/| kernel/codeset: Make CodeSet's memory data member a regular std::vector
| * kernel/codeset: Make CodeSet's memory data member a regular std::vectorGravatar Lioncash2019-03-223-3/+3
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #2280 from lioncash/nsoGravatar bunnei2019-03-232-59/+81
|\ \ | | | | | | loader/nso: Minor refactoring
| * | loader/nso: Place translation unit specific functions into an anonymous ↵Gravatar Lioncash2019-03-221-20/+21
| | | | | | | | | | | | | | | | | | | | | namespace Makes it impossible to indirectly violate the ODR in some other translation unit due to these existing.
| * | loader/nso: Clean up use of magic constantsGravatar Lioncash2019-03-221-4/+6
| | | | | | | | | | | | | | | Now that the NSO header has the proper size, we can just use sizeof on it instead of having magic constants.
| * | file_sys/patch_manager: Deduplicate NSO headerGravatar Lioncash2019-03-222-50/+57
| | | | | | | | | | | | | | | | | | 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
| * | loader/nso: Fix definition of the NSO header structGravatar Lioncash2019-03-221-3/+15
| |/ | | | | | | | | | | | | | | 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.
* / file_sys/cheat_engine: Remove use of global system accessorsGravatar Lioncash2019-03-221-4/+4
|/ | | | | Instead, pass in the core timing instance and make the dependency explicit in the interface.
* Merge pull request #1933 from DarkLordZach/cheat-engineGravatar bunnei2019-03-211-0/+12
|\ | | | | file_sys: Implement parser and interpreter for game memory cheats
| * vm_manager: Remove cheat-specific ranges from VMManagerGravatar Zach Hilman2019-03-053-11/+4
| |
| * loader/nso: Set main code region in VMManagerGravatar Zach Hilman2019-03-043-2/+21
| | | | | | | | 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.
* | kernel: Move CodeSet structure to its own source filesGravatar Lioncash2019-03-203-0/+3
| | | | | | | | | | | | | | | | 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: Remove Linker classGravatar Lioncash2019-03-192-183/+0
| | | | | | | | Given the class is now currently unused, it can be removed.
* | loader: Remove Linker inheritance from NRO and NSO loadersGravatar Lioncash2019-03-192-4/+4
|/ | | | | | 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.
* loader: Propagate NCA logo section to ReadBanner and ReadLogoGravatar Zach Hilman2019-01-159-0/+61
|
* web_browser: Add bounds checking to applet interfaceGravatar Zach Hilman2018-12-282-2/+0
|
* loader: Add accessor for Manual RomFSGravatar Zach Hilman2018-12-285-0/+30
|
* Merge pull request #1928 from lioncash/capsGravatar bunnei2018-12-273-2/+9
|\ | | | | kernel: Handle kernel capability descriptors
| * kernel/process: Hook up the process capability parser to the process itselfGravatar Lioncash2018-12-213-2/+9
| | | | | | | | | | While we're at it, we can also toss out the leftover capability parsing from Citra.
* | loader: Add accessor for game control dataGravatar Zach Hilman2018-12-275-9/+14
|/
* Merge pull request #1819 from DarkLordZach/disable-addonsGravatar bunnei2018-12-105-0/+26
|\ | | | | patch_manager: Add support for disabling patches
| * loader: Add support for reading the name of game's developerGravatar Zach Hilman2018-12-035-0/+26
| |
* | loaders: Make GetFileType() a const qualified member functionGravatar Lioncash2018-12-0510-10/+10
| | | | | | | | | | | | 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.
* | loader/nso: Remove dependency on the System classGravatar Lioncash2018-12-023-8/+11
| | | | | | | | | | Similar to the NRO changes, we can also pass the process explicitly as a parameter from Load instead of indirecting through the System class.
* | loader/nro: Make the static LoadNro function internally linkedGravatar Lioncash2018-12-022-7/+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-022-10/+13
|/ | | | | | 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()
* Merge pull request #1620 from DarkLordZach/ldr-roGravatar bunnei2018-11-181-2/+5
|\ | | | | ldr_ro: Complete LDR:RO implementation
| * process: Make MirrorMemory take state to map new memory asGravatar Zach Hilman2018-11-151-2/+5
| | | | | | | | Credits to Subv