summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/jit
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-25 01:20:43 +0100
committerLiam <byteslice@airmail.cc>2023-12-25 01:20:43 +0100
commit5165ed9efd6e6593b969ce560c952e074f4d9e06 (patch)
tree59966aa2ac0bd9186f7358af41f3888cbf89ec16 /src/core/hle/service/jit
parentMerge pull request #12394 from liamwhite/per-process-memory (diff)
downloadyuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.tar
yuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.tar.gz
yuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.tar.bz2
yuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.tar.lz
yuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.tar.xz
yuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.tar.zst
yuzu-5165ed9efd6e6593b969ce560c952e074f4d9e06.zip
Diffstat (limited to 'src/core/hle/service/jit')
-rw-r--r--src/core/hle/service/jit/jit.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/hle/service/jit/jit.cpp b/src/core/hle/service/jit/jit.cpp
index 65851fc05..8648c76fa 100644
--- a/src/core/hle/service/jit/jit.cpp
+++ b/src/core/hle/service/jit/jit.cpp
@@ -188,7 +188,7 @@ public:
return;
}
- auto tmem{process->GetHandleTable().GetObject<Kernel::KTransferMemory>(tmem_handle)};
+ auto tmem{ctx.GetObjectFromHandle<Kernel::KTransferMemory>(tmem_handle)};
if (tmem.IsNull()) {
LOG_ERROR(Service_JIT, "attempted to load plugin with invalid transfer memory handle");
IPC::ResponseBuilder rb{ctx, 2};
@@ -356,11 +356,7 @@ public:
return;
}
- // Fetch using the handle table for the application process here,
- // since we are not multiprocess yet.
- const auto& handle_table{system.ApplicationProcess()->GetHandleTable()};
-
- auto process{handle_table.GetObject<Kernel::KProcess>(process_handle)};
+ auto process{ctx.GetObjectFromHandle<Kernel::KProcess>(process_handle)};
if (process.IsNull()) {
LOG_ERROR(Service_JIT, "process is null for handle=0x{:08X}", process_handle);
IPC::ResponseBuilder rb{ctx, 2};
@@ -368,7 +364,7 @@ public:
return;
}
- auto rx_mem{handle_table.GetObject<Kernel::KCodeMemory>(rx_mem_handle)};
+ auto rx_mem{ctx.GetObjectFromHandle<Kernel::KCodeMemory>(rx_mem_handle)};
if (rx_mem.IsNull()) {
LOG_ERROR(Service_JIT, "rx_mem is null for handle=0x{:08X}", rx_mem_handle);
IPC::ResponseBuilder rb{ctx, 2};
@@ -376,7 +372,7 @@ public:
return;
}
- auto ro_mem{handle_table.GetObject<Kernel::KCodeMemory>(ro_mem_handle)};
+ auto ro_mem{ctx.GetObjectFromHandle<Kernel::KCodeMemory>(ro_mem_handle)};
if (ro_mem.IsNull()) {
LOG_ERROR(Service_JIT, "ro_mem is null for handle=0x{:08X}", ro_mem_handle);
IPC::ResponseBuilder rb{ctx, 2};