ppsspp/Core/HLE/FunctionWrappers.h

153 lines
3.8 KiB
C
Raw Normal View History

2012-11-01 15:19:01 +00:00
// Copyright (c) 2012- PPSSPP Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.
2012-11-01 15:19:01 +00:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include "../../Globals.h"
// For easy parameter parsing and return value processing.
template<void func()> void WrapV_V() {
2012-11-01 15:19:01 +00:00
func();
}
template<u32 func()> void WrapU_V() {
2012-11-01 15:19:01 +00:00
RETURN(func());
}
template<float func()> void WrapF_V() {
2012-11-01 15:19:01 +00:00
RETURNF(func());
}
template<u32 func(u32)> void WrapU_U() {
2012-11-01 15:19:01 +00:00
u32 retval = func(PARAM(0));
RETURN(retval);
}
2012-11-08 13:24:51 +00:00
template<int func(u32)> void WrapI_U() {
int retval = func(PARAM(0));
RETURN(retval);
}
template<int func()> void WrapI_V() {
int retval = func();
RETURN(retval);
}
2012-11-08 13:24:51 +00:00
template<int func(int)> void WrapI_I() {
int retval = func(PARAM(0));
RETURN(retval);
}
template<void func(u32)> void WrapV_U() {
2012-11-01 15:19:01 +00:00
func(PARAM(0));
}
template<void func(int)> void WrapV_I() {
func(PARAM(0));
}
template<void func(u32, u32)> void WrapV_UU() {
2012-11-01 15:19:01 +00:00
func(PARAM(0), PARAM(1));
}
template<void func(int, int)> void WrapV_II() {
func(PARAM(0), PARAM(1));
}
template<u32 func(u32, u32)> void WrapU_UU() {
2012-11-01 15:19:01 +00:00
u32 retval = func(PARAM(0), PARAM(1));
RETURN(retval);
}
2012-11-08 13:24:51 +00:00
template<int func(int, u32)> void WrapI_IU() {
int retval = func(PARAM(0), PARAM(1));
RETURN(retval);
}
template<int func(int, int)> void WrapI_II() {
int retval = func(PARAM(0), PARAM(1));
RETURN(retval);
}
template<int func(int, int, int)> void WrapI_III() {
int retval = func(PARAM(0), PARAM(1), PARAM(2));
RETURN(retval);
}
2012-11-08 15:24:06 +00:00
template<void func(int, u32)> void WrapV_IU() {
func(PARAM(0), PARAM(1));
}
template<int func(const char *, u32)> void WrapI_CU() {
2012-11-01 15:19:01 +00:00
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1));
RETURN(retval);
}
2012-11-01 15:19:01 +00:00
template<u32 func(const char *, u32)> void WrapU_CU() {
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1));
RETURN((u32)retval);
}
template<u32 func(u32, const char *)> void WrapU_UC() {
int retval = func(PARAM(0), Memory::GetCharPointer(PARAM(1)));
RETURN(retval);
}
template<u32 func(const char *, u32, u32)> void WrapU_CUU() {
2012-11-01 15:19:01 +00:00
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1), PARAM(2));
RETURN((u32)retval);
}
template<u32 func(u32, u32, u32)> void WrapU_UUU() {
2012-11-01 15:19:01 +00:00
u32 retval = func(PARAM(0), PARAM(1), PARAM(2));
RETURN(retval);
}
2012-11-08 15:24:06 +00:00
template<void func(int, u32, u32)> void WrapV_IUU() {
func(PARAM(0), PARAM(1), PARAM(2));
2012-11-08 13:24:51 +00:00
}
template<void func(u32, u32, u32)> void WrapV_UUU() {
2012-11-01 15:19:01 +00:00
func(PARAM(0), PARAM(1), PARAM(2));
}
template<void func(u32, u32, u32, u32)> void WrapV_UUUU() {
func(PARAM(0), PARAM(1), PARAM(2), PARAM(3));
}
template<u32 func(u32, u32, u32, u32)> void WrapU_UUUU() {
2012-11-01 15:19:01 +00:00
u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3));
RETURN(retval);
}
template<u32 func(u32, u32, u32, u32, u32)> void WrapU_UUUUU() {
2012-11-01 15:19:01 +00:00
u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4));
RETURN(retval);
}
2012-11-08 13:24:51 +00:00
template<int func(const char *, int, u32, int, u32)> void WrapU_CIUIU() {
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4));
RETURN(retval);
}
template<u32 func(u32, u32, u32, u32, u32, u32)> void WrapU_UUUUUU() {
2012-11-01 15:19:01 +00:00
u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5));
RETURN(retval);
}