summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/jit/jit.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-04-07 03:34:45 +0200
committerGitHub <noreply@github.com>2022-04-07 03:34:45 +0200
commit172137f1a08cf5a702ca6da6ecba0329b10e0ed7 (patch)
treedd5f1a3ffbc709e9fa2fd5ad53c24146fc318486 /src/core/hle/service/jit/jit.cpp
parentMerge pull request #8122 from bunnei/improve-thread-usage (diff)
parentservice: jit: stub JIT service (diff)
downloadyuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar
yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.gz
yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.bz2
yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.lz
yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.xz
yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.zst
yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.zip
Diffstat (limited to 'src/core/hle/service/jit/jit.cpp')
-rw-r--r--src/core/hle/service/jit/jit.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/core/hle/service/jit/jit.cpp b/src/core/hle/service/jit/jit.cpp
new file mode 100644
index 000000000..c8ebd2e3f
--- /dev/null
+++ b/src/core/hle/service/jit/jit.cpp
@@ -0,0 +1,53 @@
+// Copyright 2022 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/ipc_helpers.h"
+#include "core/hle/result.h"
+#include "core/hle/service/jit/jit.h"
+#include "core/hle/service/service.h"
+
+namespace Service::JIT {
+
+class IJitEnvironment final : public ServiceFramework<IJitEnvironment> {
+public:
+ explicit IJitEnvironment(Core::System& system_) : ServiceFramework{system_, "IJitEnvironment"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "GenerateCode"},
+ {1, nullptr, "Control"},
+ {1000, nullptr, "LoadPlugin"},
+ {1001, nullptr, "GetCodeAddress"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+class JITU final : public ServiceFramework<JITU> {
+public:
+ explicit JITU(Core::System& system_) : ServiceFramework{system_, "jit:u"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, &JITU::CreateJitEnvironment, "CreateJitEnvironment"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+
+ void CreateJitEnvironment(Kernel::HLERequestContext& ctx) {
+ LOG_DEBUG(Service_JIT, "called");
+
+ IPC::ResponseBuilder rb{ctx, 2, 0, 1};
+ rb.Push(ResultSuccess);
+ rb.PushIpcInterface<IJitEnvironment>(system);
+ }
+};
+
+void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
+ std::make_shared<JITU>(system)->InstallAsService(sm);
+}
+
+} // namespace Service::JIT