index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merge pull request #6099 from bunnei/derive-mem
bunnei
2021-04-10
23
-172
/
+2087
|
\
|
*
hle: kernel: Breakup InitializeMemoryLayout.
bunnei
2021-03-23
1
-3
/
+7
|
*
hle: kernel: k_memory_region_type: Minor code cleanup.
bunnei
2021-03-23
1
-13
/
+12
|
*
hle: kernel: k_memory_region: Minor code cleanup.
bunnei
2021-03-23
1
-7
/
+5
|
*
hle: kernel: k_memory_layout: Use pair instead of tuple.
bunnei
2021-03-23
1
-2
/
+4
|
*
hle: kernel: k_system_control: Remove unnecessary inline.
bunnei
2021-03-23
1
-4
/
+4
|
*
common: common_sizes: Move sizes to the Common namespace.
bunnei
2021-03-23
4
-45
/
+46
|
*
hle: kernel: Merge KMemoryRegionAttr and KMemoryRegionType.
bunnei
2021-03-21
2
-11
/
+9
|
*
hle: kernel: Remove unused variable.
bunnei
2021-03-21
1
-1
/
+0
|
*
hle: kernel: k_memory_region_type: Remove extra ".
bunnei
2021-03-21
1
-1
/
+1
|
*
hle: kernel: k_memory_layout: Move KMemoryRegionAllocator out of global.
bunnei
2021-03-21
3
-35
/
+47
|
*
hle: kernel: k_memory_layout: Derive memory regions based on board layout.
bunnei
2021-03-21
5
-56
/
+1031
|
*
common: common_sizes: Move Invalid to Size_* prefix and add missing values.
bunnei
2021-03-21
1
-14
/
+14
|
*
hle: kernel: k_memory_region: Refactor to simplify code.
bunnei
2021-03-21
2
-83
/
+89
|
*
hle: kernel: board: k_system_control: Extend to include memory region sizes.
bunnei
2021-03-21
2
-1
/
+125
|
*
hle: kernel: board: Add secure_monitor module.
bunnei
2021-03-21
1
-0
/
+26
|
*
common: Move common sizes to their own header for code reuse.
bunnei
2021-03-21
1
-13
/
+1
|
*
hle: kernel: k_address_space_info: Cleanup.
bunnei
2021-03-21
1
-9
/
+9
|
*
hle: kernel: Add k_trace module.
bunnei
2021-03-21
1
-0
/
+12
|
*
hle: kernel: KSystemControl: Update to reflect board-specific behavior.
bunnei
2021-03-21
3
-9
/
+39
|
*
hle: kernel: KMemoryManager: Add CalculateManagementOverheadSize.
bunnei
2021-03-21
2
-0
/
+26
|
*
hle: kernel: KMemoryManager: Add aliases.
bunnei
2021-03-21
1
-0
/
+4
|
*
hle: kernel: Add architecture and board specific memory regions.
bunnei
2021-03-21
2
-0
/
+72
|
*
hle: kernel: KMemoryRegion: Derive region values.
bunnei
2021-03-21
1
-0
/
+327
|
*
hle: kernel: Migrate some code from Common::SpinLock to KSpinLock.
bunnei
2021-03-21
5
-25
/
+25
|
*
hle: kernel: Add initial KMemoryRegionType module.
bunnei
2021-03-21
2
-18
/
+40
|
*
hle: kernel: Move KMemoryRegion to its own module and update.
bunnei
2021-03-21
3
-31
/
+321
*
|
Merge pull request #6156 from lioncash/lock-discard
bunnei
2021-04-09
3
-9
/
+12
|
\
\
|
*
|
Amend bizarre clang-format suggestions
Lioncash
2021-04-07
3
-5
/
+5
|
*
|
k_scoped_scheduler_lock_and_sleep: Mark class as [[nodiscard]]
Lioncash
2021-04-07
1
-1
/
+1
|
*
|
k_scoped_lock: delete copy and move assignment operators
Lioncash
2021-04-07
1
-2
/
+5
|
*
|
k_scoped_lock: Mark class as [[nodiscard]]
Lioncash
2021-04-07
1
-1
/
+1
|
*
|
k_scheduler: Mark KScopedSchedulerLock as [[nodiscard]]
Lioncash
2021-04-07
1
-1
/
+1
*
|
|
Merge pull request #6155 from ameerj/kernel-12-rescnt
bunnei
2021-04-08
1
-2
/
+2
|
\
\
\
|
*
|
|
kernel: Increase event and session counts
ameerj
2021-04-07
1
-2
/
+2
|
|
/
/
*
|
|
Merge pull request #6154 from lioncash/svcrange2
bunnei
2021-04-08
1
-0
/
+132
|
\
\
\
|
*
|
|
svc: Expand SVC tables
Lioncash
2021-04-07
1
-0
/
+132
|
|
/
/
*
/
/
process_capability: Handle extended SVC range
Lioncash
2021-04-07
2
-6
/
+1
|
/
/
*
/
hle: kernel: Initialize preemption task after schedulers.
bunnei
2021-03-27
1
-1
/
+1
|
/
*
common: Fiber: use a reference for YieldTo.
bunnei
2021-03-07
1
-8
/
+3
*
hle: kernel: KThread: Rework dummy threads & fix memory leak.
bunnei
2021-03-05
6
-36
/
+65
*
Revert "core: Switch to unique_ptr for usage of Common::Fiber."
bunnei
2021-03-05
5
-24
/
+23
*
core: Switch to unique_ptr for usage of Common::Fiber.
bunnei
2021-02-27
5
-23
/
+24
*
Merge pull request #5953 from bunnei/memory-refactor-1
bunnei
2021-02-27
34
-1156
/
+1367
|
\
|
*
hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.
bunnei
2021-02-18
13
-130
/
+115
|
*
hle: kernel: Migrate MemoryManager to KMemoryManager.
bunnei
2021-02-18
7
-45
/
+46
|
*
hle: kernel: Migrate PageLinkedList to KPageLinkedList.
bunnei
2021-02-18
7
-37
/
+40
|
*
hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.
bunnei
2021-02-18
16
-461
/
+465
|
*
hle: kernel: Migrate SlabHeap to KSlabHeap.
bunnei
2021-02-18
3
-21
/
+20
|
*
hle: kernel: Migrate MemoryLayout to KMemoryLayout.
bunnei
2021-02-18
4
-30
/
+29
[next]