summaryrefslogtreecommitdiffstats
path: root/src/core/loader/kip.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-11-25kernel: Manually specify aslr region startLiam1-1/+2
2023-09-14core: improve debug workflowLiam1-1/+2
2023-08-25kernel: offset code entry point for 39-bit address space type (#11326)liamwhite1-1/+1
2023-07-15k_process: PageTable -> GetPageTableLiam1-1/+1
2023-03-22kernel: use KTypedAddress for addressesLiam1-1/+1
2022-08-20code: dodge PAGE_SIZE #defineKyle Kienapfel1-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
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-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.
2021-12-18core: loader: kip: Minimal changes to fix KIP loading.bunnei1-1/+7
- Allows us to boot KIP (kernal apps), useful for testing the kernel.
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-2/+2
2021-04-27loader: Resolve instances of variable shadowingLioncash1-6/+6
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 presentMorph1-1/+2
Sets a default size of 0x1FE00000 bytes (510 MiB) for the system_resource_size when a NPDM is not present.
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-1/+1
2020-11-27core: Eliminate remaining usages of the global system instanceLioncash1-3/+0
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.
2020-10-13core/CMakeLists: Make some warnings errorsLioncash1-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.
2020-09-16core/loader: Remove dependencies on the global system instanceLioncash1-1/+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.
2020-04-17loader: elf/kip/nro: Updates for new VMM.bunnei1-1/+3
2020-04-17core: memory: Move to Core::Memory namespace.bunnei1-1/+1
- helpful to disambiguate Kernel::Memory namespace.
2020-01-18core/loaders: Simplify PhysicalMemory usage.Markus Wick1-2/+3
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.
2019-07-19VM_Manager: Align allocated memory to 256bytesFernando Sahmkow1-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.
2019-06-07kernel_executable: Optimize BLZ decompressionZach Hilman1-4/+8
2019-06-05loader: Add AppLoader_KIP for KIP filesZach Hilman1-0/+98