Commit Graph

69 Commits (9f91ba1f7357c61dd2c7c3b437ea203d467fd400)

Author SHA1 Message Date
Liam 9f91ba1f73 arm: Implement native code execution backend 2 years ago
Liam f2a8409083 kernel: Manually specify aslr region start 2 years ago
Liam 2a255b2d61 kernel: add KPageTableBase
Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
2 years ago
Liam 8c59543ee3 kernel: update KProcess 3 years ago
Liam 249db0a59b kernel: fix incorrect calculation of used non system memory value 3 years ago
Liam 3ef9673360 core: improve debug workflow 3 years ago
liamwhite 18ad55be0b
kernel: offset code entry point for 39-bit address space type (#11326) 3 years ago
liamwhite fca7d975fd
Merge pull request #10839 from lat9nq/pgc-plus
general: Reimplement per-game configurations
3 years ago
lat9nq 4133165607 settings,core,config_sys: Remove optional type from custom_rtc, rng_seed
core: Fix MSVC errors
3 years ago
Liam a85ce8ea56 k_process: PageTable -> GetPageTable 3 years ago
Liam 41d99aa89d memory: rename global memory references to application memory 3 years ago
Liam fb49ec19c1 kernel: use KTypedAddress for addresses 3 years ago
Liam c352381ce9 kernel: additional style fixes to KThread, KProcess 3 years ago
Liam 9863db9db4 kernel: convert KProcess to new style 3 years ago
Liam 6bfb4c8f71 kernel: convert KThread to new style 3 years ago
Liam ac6cbb7134 kernel: prefer std::addressof 3 years ago
Liam c0b9e93b77 kernel: remove kernel_ 3 years ago
Liam 600f325d87 general: fix spelling mistakes 3 years ago
Liam 97f7f7bad5 kernel: be more careful about kernel address keys 3 years ago
Liam c4ba088a5d kernel: refactor priority inheritance to represent locks as C++ objects 3 years ago
Liam a936972614 service: refactor server architecture
Converts services to have their own processes
3 years ago
bunnei e79270507b core: kernel: k_process: Use application system resource. 3 years ago
Liam 31e54c4573 kernel: KPageTable: update 3 years ago
Narr the Reg dca4f0687a kernel: process: Implement GetFreeThreadCount
Used by Just Dance® 2023 Edition
3 years ago
Kyle Kienapfel 6fa3faec65 Add break for default cases
Visual Studio has an option to search all files in a solution, so I
did a search in there for "default:" looking for any missing break
statements.

I've left out default statements that return something, and that throw
something, even if via ThrowInvalidType. UNREACHABLE leads towards throw

R_THROW macro leads towards a return
3 years ago
Liam 4eece4d35d kernel/svc_types: refresh 3 years ago
bunnei 32d7faafa8 core: hle: kernel: Integrate system KSystemResource. 4 years ago
bunnei 829e82e264 core: hle: kernel: Use result macros for new/changed code. 4 years ago
bunnei abcc009dff core: hle: kernel: k_process: Improve management of page table & cleanup. 4 years ago
bunnei 1baedfa12c core: hle: kernel: Integration application memory block slab manager. 4 years ago
bunnei 25dcaf1eca core: hle: kernel: k_process: Change Status -> State. 4 years ago
Andrea Pappacoda cdb240f3d4
chore: make yuzu REUSE compliant
[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 01cf05bc75
4 years ago
liamwhite 7e75593c20
Merge pull request #8502 from liamwhite/end-wait
kernel: clean up waiting implementation
4 years ago
german77 a7d9be1384 core: Replace all instances of ResultCode with Result 4 years ago
Liam 075155022e kernel: clean up waiting implementation 4 years ago
Liam 2c56e94702 kernel: make current thread pointer thread local 4 years ago
bunnei 737c446fc1
Merge pull request #8432 from liamwhite/watchpoint
core/debugger: memory breakpoint support
4 years ago
Liam 208ed712f4 core/debugger: memory breakpoint support 4 years ago
Liam 744a208763 kernel: fix some uses of disable_count 4 years ago
Liam 888f499188 kernel: implement KProcess suspension 4 years ago
Liam 084d7d6b01 common: Change semantics of UNREACHABLE to unconditionally crash 4 years ago
Liam fb4b3c127f core/debugger: Implement new GDB stub debugger 4 years ago
ameerj ade596121b core: Reduce unused includes 4 years ago
bunnei 0defac2f2a core: hle: kernel: k_process: Remove handle table finalize, reset page table. 4 years ago
bunnei 813b2ef253 core: hle: kernel: k_process: Implement thread local storage accurately. 4 years ago
bunnei a74fddc98f core: hle: kernel: KProcess: Pass in KResourceLimit on process creation.
- This allows us to have a resource limit per process, rather than use the global system resource limit.
4 years ago
bunnei 59add00d4a hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount.
- Previously implementation was incorrect, and would occasionally underflow.
4 years ago
bunnei d8b3f665db core: hle: kernel: KProcess: Integrate with KWorkerTask and add unimplemented DoWorkerTaskImpl. 4 years ago
bunnei 49a0e4330e hle: kernel: k_page_table: Update SetProcessMemoryPermission. 4 years ago
bunnei 6123b6ea45 hle: kernel: k_page_table: ReadAndWrite -> UserReadWrite. 4 years ago