2013-09-05 00:17:46 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#ifndef _THUNK_H_
|
|
|
|
#define _THUNK_H_
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "x64Emitter.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
|
|
|
|
{
|
2014-04-01 22:20:08 +00:00
|
|
|
std::map<void *, const u8 *> thunks;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2014-04-01 22:20:08 +00:00
|
|
|
const u8 *save_regs;
|
|
|
|
const u8 *load_regs;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
public:
|
2014-04-01 22:20:08 +00:00
|
|
|
ThunkManager() {
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
~ThunkManager() {
|
|
|
|
Shutdown();
|
|
|
|
}
|
|
|
|
void *ProtectFunction(void *function, int num_params);
|
2013-09-05 00:17:46 +00:00
|
|
|
private:
|
2014-04-01 22:20:08 +00:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
void Reset();
|
2013-09-05 00:17:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _THUNK_H_
|