| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |\
| |
| | |
arm_dynarmic: Fix nullptr fastmem arenas
|
| | |
| |
| |
| | |
Unable to enable fastmem of exclusive access without a valid fastmem arena.
|
| |\ \
| |/
|/| |
arm_dynarmic_cp15: Implement CP15DMB/CP15DSB/CP15ISB
|
| | | |
|
| | | |
|
| |\ \
| | |
| | | |
kernel: unlayer CPU interrupt handling
|
| | | | |
|
| |\ \ \
| |_|/
|/| | |
core/arm: re-enable cycle counting
|
| | | | |
|
| | | | |
|
| | |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
|
| |\ \
| | |
| | | |
kernel: use KScheduler from Mesosphere
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
dynarmic: Abort watchpoints ASAP
|
| | |/ / |
|
| |/ / |
|
| |\ \
| | |
| | | |
core/arm: better support for backtrace generation
|
| | |/ |
|
| |\ \
| | |
| | | |
dynarmic: Stop ReadCode callbacks to unmapped addresses
|
| | |/ |
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
| |
Ensures that we're using the fmt version of format_to.
These are also the only three outliers. All of the other formatters we
have are properly qualified.
|
| | |
|
| |
|
|
|
| |
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.
|
| | |
|
| |\
| |
| | |
dynarmic: Fix race when switching page tables
|
| | | |
|
| | |
| |
| |
| | |
Regression introduced in a5d040df3d. Closes #8201.
|
| |/ |
|
| |\
| |
| | |
dynarmic: Better interrupts
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| |/
|/| |
configuration: Add Paranoid CPU accuracy level
|
| | |
| |
| |
| | |
Disables most optimizations for the paranoid.
|
| |/ |
|
| | |
|