summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2020-08-10 12:04:30 -0400
committerGravatar GitHub2020-08-10 12:04:30 -0400
commitacfd771e79bee090c89b20361d25de4921d990e3 (patch)
tree8b3ced41f058ceb8f0a1d9c90cc4cc86940e25b8 /src
parentMerge pull request #4488 from lioncash/file (diff)
parentkernel: Remove unused variables (diff)
downloadyuzu-acfd771e79bee090c89b20361d25de4921d990e3.tar.gz
yuzu-acfd771e79bee090c89b20361d25de4921d990e3.tar.xz
yuzu-acfd771e79bee090c89b20361d25de4921d990e3.zip
Merge pull request #4491 from lioncash/unused-vars
kernel: Remove unused variables
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/memory/page_table.cpp1
-rw-r--r--src/core/hle/kernel/scheduler.cpp28
2 files changed, 11 insertions, 18 deletions
diff --git a/src/core/hle/kernel/memory/page_table.cpp b/src/core/hle/kernel/memory/page_table.cpp
index 5d6aac00f..e22e07206 100644
--- a/src/core/hle/kernel/memory/page_table.cpp
+++ b/src/core/hle/kernel/memory/page_table.cpp
@@ -604,7 +604,6 @@ ResultCode PageTable::MapPages(VAddr addr, const PageLinkedList& page_linked_lis
604 if (const auto result{ 604 if (const auto result{
605 Operate(cur_addr, node.GetNumPages(), perm, OperationType::Map, node.GetAddress())}; 605 Operate(cur_addr, node.GetNumPages(), perm, OperationType::Map, node.GetAddress())};
606 result.IsError()) { 606 result.IsError()) {
607 const MemoryInfo info{block_manager->FindBlock(cur_addr).GetMemoryInfo()};
608 const std::size_t num_pages{(addr - cur_addr) / PageSize}; 607 const std::size_t num_pages{(addr - cur_addr) / PageSize};
609 608
610 ASSERT( 609 ASSERT(
diff --git a/src/core/hle/kernel/scheduler.cpp b/src/core/hle/kernel/scheduler.cpp
index fc656d613..a4b234424 100644
--- a/src/core/hle/kernel/scheduler.cpp
+++ b/src/core/hle/kernel/scheduler.cpp
@@ -664,32 +664,26 @@ void Scheduler::Reload() {
664} 664}
665 665
666void Scheduler::SwitchContextStep2() { 666void Scheduler::SwitchContextStep2() {
667 Thread* previous_thread = current_thread_prev.get();
668 Thread* new_thread = selected_thread.get();
669
670 // Load context of new thread 667 // Load context of new thread
671 Process* const previous_process = 668 if (selected_thread) {
672 previous_thread != nullptr ? previous_thread->GetOwnerProcess() : nullptr; 669 ASSERT_MSG(selected_thread->GetSchedulingStatus() == ThreadSchedStatus::Runnable,
673
674 if (new_thread) {
675 ASSERT_MSG(new_thread->GetSchedulingStatus() == ThreadSchedStatus::Runnable,
676 "Thread must be runnable."); 670 "Thread must be runnable.");
677 671
678 // Cancel any outstanding wakeup events for this thread 672 // Cancel any outstanding wakeup events for this thread
679 new_thread->SetIsRunning(true); 673 selected_thread->SetIsRunning(true);
680 new_thread->last_running_ticks = system.CoreTiming().GetCPUTicks(); 674 selected_thread->last_running_ticks = system.CoreTiming().GetCPUTicks();
681 new_thread->SetWasRunning(false); 675 selected_thread->SetWasRunning(false);
682 676
683 auto* const thread_owner_process = current_thread->GetOwnerProcess(); 677 auto* const thread_owner_process = current_thread->GetOwnerProcess();
684 if (thread_owner_process != nullptr) { 678 if (thread_owner_process != nullptr) {
685 system.Kernel().MakeCurrentProcess(thread_owner_process); 679 system.Kernel().MakeCurrentProcess(thread_owner_process);
686 } 680 }
687 if (!new_thread->IsHLEThread()) { 681 if (!selected_thread->IsHLEThread()) {
688 Core::ARM_Interface& cpu_core = new_thread->ArmInterface(); 682 Core::ARM_Interface& cpu_core = selected_thread->ArmInterface();
689 cpu_core.LoadContext(new_thread->GetContext32()); 683 cpu_core.LoadContext(selected_thread->GetContext32());
690 cpu_core.LoadContext(new_thread->GetContext64()); 684 cpu_core.LoadContext(selected_thread->GetContext64());
691 cpu_core.SetTlsAddress(new_thread->GetTLSAddress()); 685 cpu_core.SetTlsAddress(selected_thread->GetTLSAddress());
692 cpu_core.SetTPIDR_EL0(new_thread->GetTPIDR_EL0()); 686 cpu_core.SetTPIDR_EL0(selected_thread->GetTPIDR_EL0());
693 cpu_core.ChangeProcessorID(this->core_id); 687 cpu_core.ChangeProcessorID(this->core_id);
694 cpu_core.ClearExclusiveState(); 688 cpu_core.ClearExclusiveState();
695 } 689 }