aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Lioncash <mathew1800@gmail.com>2015-07-10 20:09:38 -0400
committerGravatar Lioncash <mathew1800@gmail.com>2015-07-10 20:09:41 -0400
commite5d90b57971201addae226610e659df0189991d1 (patch)
tree7dd4a273b134d123ecd344d7dfde16e168445fff /src/common
parent867c28ae03b3b2883713896765f3ff76eaf90a19 (diff)
Common: Remove thunk.h
This isn't used, and there's no implementations of the member functions.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/CMakeLists.txt1
-rw-r--r--src/common/thunk.h42
2 files changed, 0 insertions, 43 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index f025e118..4c086cd2 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -52,7 +52,6 @@ set(HEADERS
synchronized_wrapper.h
thread.h
thread_queue_list.h
- thunk.h
timer.h
vector_math.h
)
diff --git a/src/common/thunk.h b/src/common/thunk.h
deleted file mode 100644
index 53348005..00000000
--- a/src/common/thunk.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include <map>
-
-#include "common/common_types.h"
-
-// This simple class creates a wrapper around a C/C++ function that saves all fp state
-// before entering it, and restores it upon exit. This is required to be able to selectively
-// call functions from generated code, without inflicting the performance hit and increase
-// of complexity that it means to protect the generated code from this problem.
-
-// This process is called thunking.
-
-// There will only ever be one level of thunking on the stack, plus,
-// we don't want to pollute the stack, so we store away regs somewhere global.
-// NOT THREAD SAFE. This may only be used from the CPU thread.
-// Any other thread using this stuff will be FATAL.
-
-class ThunkManager : public Gen::XCodeBlock
-{
- std::map<void *, const u8 *> thunks;
-
- const u8 *save_regs;
- const u8 *load_regs;
-
-public:
- ThunkManager() {
- Init();
- }
- ~ThunkManager() {
- Shutdown();
- }
- void *ProtectFunction(void *function, int num_params);
-private:
- void Init();
- void Shutdown();
- void Reset();
-};