1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-07-30 13:37:05 +01:00

math compiler supports function calls + standard C math library wrapper

This commit is contained in:
2014-01-30 19:28:30 +00:00
parent fa5ca7273c
commit 36bc0bc9b0
11 changed files with 426 additions and 31 deletions

81
latan/Function.cpp Normal file
View File

@@ -0,0 +1,81 @@
#include <latan/Function.hpp>
#include <latan/includes.hpp>
#define DEF_STD_FUNC_1ARG(name, funcName) \
name##Function::name##Function(void): DoubleFunction(1) {}\
name##Function::~name##Function(void) {}\
double name##Function::operator()(std::vector<double> &arg)\
{\
return funcName(arg[0]);\
}\
name##Function STDMATH_NAMESPACE::funcName;
#define DEF_STD_FUNC_2ARG(name, funcName) \
name##Function::name##Function(void): DoubleFunction(2) {}\
name##Function::~name##Function(void) {}\
double name##Function::operator()(std::vector<double> &arg)\
{\
return funcName(arg[0], arg[1]);\
}\
name##Function STDMATH_NAMESPACE::funcName;
using namespace std;
using namespace Latan;
/******************************************************************************
* Function implementation *
******************************************************************************/
// constructor/destructor //////////////////////////////////////////////////////
Function::Function(const unsigned nArg)
: nArg_(nArg)
{}
Function::~Function(void)
{}
// access //////////////////////////////////////////////////////////////////////
unsigned int Function::getNArg(void)
{
return nArg_;
}
/******************************************************************************
* DoubleFunction implementation *
******************************************************************************/
DoubleFunction::DoubleFunction(const unsigned nArg)
: Function(nArg), buffer_(nArg)
{}
DoubleFunction::~DoubleFunction(void)
{}
double DoubleFunction::operator()(std::stack<double> &arg)
{
for (unsigned int i = 0; i < getNArg(); ++i)
{
buffer_[getNArg() - i - 1] = arg.top();
arg.pop();
}
return (*this)(buffer_);
}
double DoubleFunction::operator()(const double x0, ...)
{
buffer_[0] = x0;
if (getNArg() > 1)
{
va_list va;
va_start(va, x0);
for (unsigned int i = 1; i < getNArg(); ++i)
{
buffer_[i] = va_arg(va, double);
}
va_end(va);
}
return (*this)(buffer_);
}