You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.4 KiB
C++
94 lines
2.4 KiB
C++
#ifndef INTERPRETER_GENERICOPCODES_H_INCLUDED
|
|
#define INTERPRETER_GENERICOPCODES_H_INCLUDED
|
|
|
|
#include "opcodes.hpp"
|
|
#include "runtime.hpp"
|
|
|
|
namespace Interpreter
|
|
{
|
|
class OpPushInt : public Opcode1
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime, unsigned int arg0)
|
|
{
|
|
runtime.push (static_cast<Type_Integer> (arg0));
|
|
}
|
|
};
|
|
|
|
class OpIntToFloat : public Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime)
|
|
{
|
|
Type_Integer data = runtime[0].mInteger;
|
|
Type_Float floatValue = static_cast<Type_Float> (data);
|
|
runtime[0].mFloat = floatValue;
|
|
}
|
|
};
|
|
|
|
class OpFloatToInt : public Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime)
|
|
{
|
|
Type_Float data = runtime[0].mFloat;
|
|
Type_Integer integerValue = static_cast<Type_Integer> (data);
|
|
runtime[0].mInteger = integerValue;
|
|
}
|
|
};
|
|
|
|
class OpNegateInt : public Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime)
|
|
{
|
|
Type_Integer data = runtime[0].mInteger;
|
|
data = -data;
|
|
runtime[0].mInteger = data;
|
|
}
|
|
};
|
|
|
|
class OpNegateFloat : public Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime)
|
|
{
|
|
Type_Float data = runtime[0].mFloat;
|
|
data = -data;
|
|
runtime[0].mFloat = data;
|
|
}
|
|
};
|
|
|
|
class OpIntToFloat1 : public Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime)
|
|
{
|
|
Type_Integer data = runtime[1].mInteger;
|
|
Type_Float floatValue = static_cast<Type_Float> (data);
|
|
runtime[1].mFloat = floatValue;
|
|
}
|
|
};
|
|
|
|
class OpFloatToInt1 : public Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime)
|
|
{
|
|
Type_Float data = runtime[1].mFloat;
|
|
Type_Integer integerValue = static_cast<Type_Integer> (data);
|
|
runtime[1].mInteger = integerValue;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|